import pytest
import json
# Required imports 'create_test_database'
from toardb.test_base import (
    client,
    get_test_db,
    create_test_database,
    url,
    get_test_engine,
    test_db_session as db,
)

class TestApps:
    def setup(self):
        self.application_url = "/controlled_vocabulary"

    def test_get_controlled_vocabulary(self, client, db):
        response = client.get("/controlled_vocabulary")
        expected_status_code = 200
        assert response.status_code == expected_status_code
        expected_resp = {"RC_vocabulary":[[0,"PointOfContact","point of contact"],
                                          [1,"PrincipalInvestigator","principal investigator"],
                                          [2,"Originator","originator"],
                                          [3,"Contributor","contributor"],
                                          [4,"Collaborator","collaborator"],
                                          [5,"ResourceProvider","resource provider"]],
                         "RS_vocabulary":[[0,"active","active"],
                                          [1,"inactive","inactive"],
                                          [2,"unknown","unknown"]],
                         "OK_vocabulary":[[1,"Government","government"],
                                          [2,"Research","research"],
                                          [3,"International","international"],
                                          [4,"NonProfit","non-profit"],
                                          [5,"Commercial","commercial"],
                                          [6,"Individual","individual"],
                                          [7,"Other","other"]],
                         "DA_vocabulary":[[0,"ByAttribution","by attribution"],
                                          [1,"ShareAlike","share alike"],
                                          [2,"Restricted","restricted"]],
                         "SF_vocabulary":[[0,"Hourly","hourly"],
                                          [1,"ThreeHourly","3-hourly"],
                                          [2,"SixHourly","6-hourly"],
                                          [3,"Daily","daily"],
                                          [4,"Weekly","weekly"],
                                          [5,"Monthly","monthly"],
                                          [6,"Yearly","yearly"],
                                          [7,"Irregular","irregular data samples of constant length"],
                                          [8,"Irregular2","irregular data samples of varying length"]],
                         "AT_vocabulary":[[0,"Mean","mean"],
                                          [1,"Mean1Of2","mean of two values"],
                                          [2,"Mean1OfWeek","weekly mean"],
                                          [3,"Mean4Samples","mean out of 4 samples"],
                                          [4,"MeanMonth","monthly mean"],
                                          [5,"None","none"],
                                          [6,"Unknown","unknown"]],
                         "DS_vocabulary":[[0,"Model","model"],
                                          [1,"Measurement","measurement"]],
                         "MM_vocabulary":[[0,"UVAbsorption","UV absorption"],
                                          [1,"UnknownInstrument","unknown instrument"]],
                         "CZ_vocabulary":[[-1,"Undefined","undefined"],
                                          [0,"Unclassified","unclassified"],
                                          [1,"WarmTemperateMoist","warm temperate moist"],
                                          [2,"WarmTemperateDry","warm temperate dry"],
                                          [3,"CoolTemperateMoist","cool temperate moist"],
                                          [4,"CoolTemperateDry","cool temperate dry"],
                                          [5,"PolarMoist","polar moist"],
                                          [6,"PolarDry","polar dry"],
                                          [7,"BorealMoist","boreal moist"],
                                          [8,"BorealDry","boreal dry"],
                                          [9,"TropicalMontane","tropical montane"],
                                          [10,"TropicalWet","tropical wet"],
                                          [11,"TropicalMoist","tropical moist"],
                                          [12,"TropicalDry","tropical dry"]],
                         "CV_vocabulary":[[0,"NotChecked","not checked"],
                                          [1,"Verified","verified"],
                                          [2,"Plausible","plausible"],
                                          [3,"Doubtful","doubtful"],
                                          [4,"Unverifyable","not verifyable"]],
                         "ST_vocabulary":[[0,"Unknown","unknown"],
                                          [1,"Background","background"],
                                          [2,"Traffic","traffic"],
                                          [3,"Industrial","industrial"],
                                          [4,"Other","other"]],
                         "TA_vocabulary":[[0,"Unknown","unknown"],
                                          [1,"Urban","urban"],
                                          [2,"Suburban","suburban"],
                                          [3,"Rural","rural"],
                                          [4,"Remote","remote"]],
                         "TC_vocabulary":[[-1,"Unknown","unknown"],
                                          [0,"Unclassified","unclassified"],
                                          [1,"RuralLowElevation","rural low elevation"],
                                          [2,"RuralHighElevation","rural high elevation"],
                                          [3,"Urban","urban"]],
                         "TR_vocabulary":[[-1,"HTAPTier1Undefined","-1 (undefined)"],
                                          [1,"HTAPTier1World","1 (World)"],
                                          [2,"HTAPTier1OCN","2 (OCN Non-arctic/Antarctic Ocean)"],
                                          [3,"HTAPTier1NAM","3 (NAM US+Canada (upto 66 N; polar circle))"],
                                          [4,"HTAPTier1EUR","4 (EUR Western + Eastern EU+Turkey (upto 66 N polar circle))"],
                                          [5,"HTAPTier1SAS","5 (SAS South Asia: India, Nepal, Pakistan, Afghanistan, Bangadesh, Sri Lanka)"],
                                          [6,"HTAPTier1EAS","6 (EAS East Asia: China, Korea, Japan)"],
                                          [7,"HTAPTier1SEA","7 (SEA South East Asia)"],
                                          [8,"HTAPTier1PAN","8 (PAN Pacific, Australia+ New Zealand)"],
                                          [9,"HTAPTier1NAF","9 (NAF Northern Africa+Sahara+Sahel)"],
                                          [10,"HTAPTier1SAF","10 (SAF Sub Saharan/sub Sahel Africa)"],
                                          [11,"HTAPTier1MDE","11 (MDE Middle East: S. Arabia, Oman, etc, Iran, Iraq)"],
                                          [12,"HTAPTier1MCA","12 (MCA Mexico, Central America, Caribbean, Guyanas, Venezuela, Columbia)"],
                                          [13,"HTAPTier1SAM","13 (SAM S. America)"],
                                          [14,"HTAPTier1RBU","14 (RBU Russia, Belarussia, Ukraine)"],
                                          [15,"HTAPTier1CAS","15 (CAS Central Asia)"],
                                          [16,"HTAPTier1NPO","16 (NPO Arctic Circle (North of 66 N) + Greenland)"],
                                          [17,"HTAPTier1SPO","17 (SPO Antarctic)"]],
                         "DL_vocabulary":[[-1,"Undefined","-1 (undefined)"],
                                          [0,"Water","0 (Water)"],
                                          [1,"EGNeedleleaf","1  (Evergreen Needleleaf forest)"],
                                          [2,"EGBroadleaf","2  (Evergreen Broadleaf forest)"],
                                          [3,"DCNeedleleaf","3  (Deciduous Needleleaf forest)"],
                                          [4,"DCBroadleaf","4  (Deciduous Broadleaf forest)"],
                                          [5,"MixedForest","5  (Mixed forest)"],
                                          [6,"ClosedShrublands","6  (Closed shrublands)"],
                                          [7,"OpenShrublands","7  (Open shrublands)"],
                                          [8,"WoodySavannas","8  (Woody savannas)"],
                                          [9,"Savannas","9  (Savannas)"],
                                          [10,"Grasslands","10  (Grasslands)"],
                                          [11,"Wetlands","11  (Permanent wetlands)"],
                                          [12,"Croplands","12  (Croplands)"],
                                          [13,"Urban","13  (Urban and built-up)"],
                                          [14,"Mosaic","14  (Cropland/Natural vegetation mosaic)"],
                                          [15,"Snow","15  (Snow and ice)"],
                                          [16,"Barren","16  (Barren or sparsely vegetated)"],
                                          [255,"Fill","255 (Fill Value/Unclassified)"]],
                         "RT_vocabulary":[[0,"String","str"],
                                          [1,"Integer","int"],
                                          [2,"Float","float"]],
                         "DF_vocabulary":[[0,"OK","OK"],
                                          [1,"OKPreliminary","OK preliminary"],
                                          [2,"OKModified","OK modified"],
                                          [3,"OKPreliminaryModified","OK preliminary modified"],
                                          [4,"Inconsistent","inconsistent"],
                                          [5,"InconsistentPreliminary","inconsistent preliminary"],
                                          [6,"Doubtful","doubtful"],
                                          [7,"DoubtfulPreliminary","doubtful preliminary"],
                                          [8,"DoubtfulModified","doubtful modified"],
                                          [9,"DoubtfulPreliminaryModified","doubtful preliminary modified"],
                                          [10,"Wrong","wrong"],
                                          [11,"WrongPreliminary","wrong preliminary"],
                                          [12,"NotCheckedPreliminary","not checked preliminary"],
                                          [13,"Changed","changed"],
                                          [14,"Estimated","estimated"],
                                          [15,"MissingValue","missing value"]],
                         "CL_vocabulary":[[0,"Created","created"],
                                          [1,"SingleValue","single value correction in metadata"],
                                          [2,"Comprehensive","comprehensive metadata revision"],
                                          [3,"Typo","typographic correction of metadata"],
                                          [4,"UnspecifiedData","unspecified data value corrections"],
                                          [5,"Replaced","replaced data with a new version"],
                                          [6,"Flagging", "data value flagging"]]}
        assert response.json() == expected_resp