Ejemplo n.º 1
0
def test_get_dssId():
    ipm = IPM()
    res = ipm.get_dssId(DSSId='no.nibio.vips')
    assert type(res) is dict
    assert keys_exists(res.keys(), ('models', 'id', 'version', 'name', 'url',
                                    'languages', 'organization'))
    assert res['id'] == 'no.nibio.vips'
Ejemplo n.º 2
0
def test_get_pestCode():
    ipm = IPM()
    res = ipm.get_pestCode(pestCode='PSILRO')
    assert type(res) is list
    assert keys_exists(res[0], ('models', 'id', 'version', 'name', 'url',
                                'languages', 'organization'))
    assert res[0]['models'][0]['pests'] == ['PSILRO']
Ejemplo n.º 3
0
def test_get_cropCode():
    ipm = IPM()
    res = ipm.get_cropCode(cropCode="DAUCS")
    assert type(res) is list
    assert keys_exists(res[0], ('models', 'id', 'version', 'name', 'url',
                                'languages', 'organization'))
    assert res[0]['models'][0]['crops'] == ['DAUCS']
Ejemplo n.º 4
0
def test_get_dss_location():
    ipm = IPM()
    res = ipm.get_dss_location_point(latitude=59.67883523696076,
                                     longitude=12.01629638671875)
    assert type(res) is list
    assert keys_exists(res[0], ('models', 'id', 'version', 'name', 'url',
                                'languages', 'organization'))
Ejemplo n.º 5
0
def test_get_weatherdatasource():
    ipm = IPM()
    res = ipm.get_weatherdatasource()
    assert type(res) is list
    assert keys_exists(
        res[0],
        ('name', 'description', 'public_URL', 'endpoint', 'needs_data_control',
         'access_type', 'temporal', 'parameters', 'spatial'))
Ejemplo n.º 6
0
def test_post_weatherdatasource_location():
    ipm = IPM()
    res = ipm.post_weatherdatasource_location(tolerance=0,
                                              geoJsonfile="GeoJson.json")
    assert type(res) is list
    assert keys_exists(
        res[0].keys(),
        ('name', 'description', 'public_URL', 'endpoint',
         'authentication_required', 'needs_data_control', 'access_type',
         'temporal', 'parameters', 'spatial', 'organization'))
Ejemplo n.º 7
0
def test_get_weatherdatasource_location_point():
    ipm = IPM()
    res = ipm.get_weatherdatasource_location_point(latitude=59.678835236960765,
                                                   longitude=12.01629638671875,
                                                   tolerance=0)
    assert type(res) is list
    assert keys_exists(
        res[0], ('access_type', 'authentication_required', 'description',
                 'endpoint', 'name', 'needs_data_control', 'organization',
                 'parameters', 'public_URL', 'spatial', 'temporal'))
Ejemplo n.º 8
0
def test_get_model():
    ipm = IPM()
    res = ipm.get_model(DSSId='no.nibio.vips', ModelId='PSILARTEMP')
    assert type(res) is dict
    assert keys_exists(
        res.keys(),
        ('name', 'id', 'version', 'type_of_decision', 'type_of_output',
         'description_URL', 'description', 'citation', 'keywords', 'pests',
         'crops', 'authors', 'execution', 'input', 'valid_spatial', 'output'))
    assert res['id'] == 'PSILARTEMP'
Ejemplo n.º 9
0
def test_get_weatheradapter_yr():
    ipm = IPM()
    res = ipm.get_weatheradapter_forecast(endpoint='/weatheradapter/yr/',
                                          altitude=70,
                                          longitude=14.3711,
                                          latitude=67.2828)
    assert type(res) is dict
    assert keys_exists(res.keys(),
                       ('timeStart', 'timeEnd', 'interval',
                        'weatherParameters', 'locationWeatherData'))
    assert res['locationWeatherData'][0]['altitude'] == 70
    assert res['locationWeatherData'][0]['longitude'] == 14.3711
    assert res['locationWeatherData'][0]['latitude'] == 67.2828
    assert res['weatherParameters'] == [1001, 3001, 2001, 4002]
Ejemplo n.º 10
0
def test_weatheradapter_Fruitdevis():
    ipm = IPM()
    res = ipm.get_weatheradapter(endpoint='/weatheradapter/davisfruitweb/',
                                 weatherStationId=18150029,
                                 ignoreErrors=True,
                                 timeStart='2021-02-01',
                                 timeEnd='2021-03-01',
                                 parameters=[1001],
                                 credentials={
                                     "username": "******",
                                     "password": "******"
                                 })

    assert type(res) is dict, res
    assert keys_exists(res.keys(),
                       ('timeStart', 'timeEnd', 'interval',
                        'weatherParameters', 'locationWeatherData'))
Ejemplo n.º 11
0
def test_weatheradapter_service():
    ipm = IPM()

    ws = ipm.weatheradapter_service(forecast=None)
    assert type(ws) is dict
    assert len(ws) == 7
    assert keys_exists(ws.keys(),
                       ('Met Norway Locationforecast', 'FMI weather forecasts',
                        'Finnish Meteorological Institute measured data',
                        'Landbruksmeteorologisk tjeneste', 'MeteoBot API',
                        'Fruitweb', 'Metos'))

    ws_forcast = ipm.weatheradapter_service(forecast=True)
    assert type(ws_forcast) is dict
    assert len(ws_forcast) == 2
    assert keys_exists(
        ws_forcast, ('Met Norway Locationforecast', 'FMI weather forecasts'))
Ejemplo n.º 12
0
def test_get_weatheradapter_fmi():
    ipm = IPM()
    res = ipm.get_weatheradapter(endpoint='/weatheradapter/fmi/',
                                 ignoreErrors=True,
                                 credentials=None,
                                 interval=3600,
                                 parameters=[1002, 3002],
                                 timeStart='2020-06-12T00:00:00+03:00',
                                 timeEnd='2020-07-03T00:00:00+03:00',
                                 weatherStationId=101104)
    assert type(res) is dict
    assert keys_exists(res.keys(),
                       ('timeStart', 'timeEnd', 'interval',
                        'weatherParameters', 'locationWeatherData'))
    assert res['weatherParameters'] == [1002, 3002]
    assert res['timeStart'] == "2020-06-11T21:00:00Z"
    assert res['timeEnd'] == "2020-07-02T21:00:00Z"
    assert res['locationWeatherData'][0]['length'] == 505
Ejemplo n.º 13
0
def test_url():
    ipm = IPM()
    assert ipm.url is not None
    try:
        urlopen(ipm.url)
    except Exception as err:
        assert False, err
    else:
        assert True
Ejemplo n.º 14
0
def test_weatheradapter_metos():
    ipm = IPM()
    res = ipm.get_weatheradapter(endpoint='/weatheradapter/metos/',
                                 weatherStationId=732,
                                 ignoreErrors=True,
                                 interval=3600,
                                 timeStart='2020-06-12',
                                 timeEnd='2020-07-03',
                                 parameters=[1001],
                                 credentials={
                                     "username": "******",
                                     "password": "******"
                                 })

    assert type(res) is dict, res
    assert keys_exists(res.keys(),
                       ('timeStart', 'timeEnd', 'interval',
                        'weatherParameters', 'locationWeatherData'))
Ejemplo n.º 15
0
def test_post_schema_modeloutput_validate():
    ipm = IPM()
    res = ipm.post_schema_modeloutput_validate(jsonfile='modeloutput.json')
    assert type(res) is dict
    assert res['isValid'] == True
Ejemplo n.º 16
0
def test_get_schema_modeloutput():
    ipm = IPM()
    res = ipm.get_schema_modeloutput()
    assert res is not None
    assert type(res) is dict
Ejemplo n.º 17
0
def test_get_schema_fieldobservation():
    ipm = IPM()
    res = ipm.get_schema_fieldobservation()
    assert type(res) is dict
Ejemplo n.º 18
0
def test_post_schema_weatherdata_validate():
    ipm = IPM()
    res = ipm.post_schema_weatherdata_validate(jsonfile='weather_data.json')
    assert type(res) is dict
    assert res["isValid"] == True
Ejemplo n.º 19
0
def test_get_schema_weatherdata():
    ipm = IPM()
    res = ipm.get_schema_weatherdata()
    assert type(res) is dict
Ejemplo n.º 20
0
def test_post_dss_location():
    ipm = IPM()
    res = ipm.post_dss_location(geoJsonfile="GeoJson.json")
    assert type(res) is list
    assert keys_exists(res[0].keys(), ('models', 'id', 'version', 'name',
                                       'url', 'languages', 'organization'))
Ejemplo n.º 21
0
def test_get_pest():
    ipm = IPM()
    res = ipm.get_pest()
    assert type(res) is list
Ejemplo n.º 22
0
def test_get_qc():
    ipm = IPM()
    res = ipm.get_qc()
    assert type(res) is list
    assert keys_exists(res[0], ('id', 'name', 'description'))
Ejemplo n.º 23
0
def test_get_dss():
    ipm = IPM()
    res = ipm.get_dss()
    assert type(res) is list
    assert keys_exists(res[0], ('models', 'id', 'version', 'name', 'url',
                                'languages', 'organization'))