mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-24 14:57:57 -05:00
170 lines
6.7 KiB
Python
170 lines
6.7 KiB
Python
|
##
|
||
|
##
|
||
|
|
||
|
from __future__ import print_function
|
||
|
from awips.dataaccess import DataAccessLayer as DAL
|
||
|
from dynamicserialize.dstypes.com.raytheon.uf.common.dataquery.requests import RequestConstraint
|
||
|
|
||
|
import baseDafTestCase
|
||
|
import params
|
||
|
import unittest
|
||
|
|
||
|
#
|
||
|
# Test DAF support for obs data
|
||
|
#
|
||
|
# SOFTWARE HISTORY
|
||
|
#
|
||
|
# Date Ticket# Engineer Description
|
||
|
# ------------ ---------- ----------- --------------------------
|
||
|
# 01/19/16 4795 mapeters Initial Creation.
|
||
|
# 04/11/16 5548 tgurney Cleanup
|
||
|
# 04/18/16 5548 tgurney More cleanup
|
||
|
# 06/09/16 5587 bsteffen Add getIdentifierValues tests
|
||
|
# 06/13/16 5574 tgurney Add advanced query tests
|
||
|
# 06/30/16 5725 tgurney Add test for NOT IN
|
||
|
# 12/07/16 5981 tgurney Parameterize
|
||
|
# 12/20/16 5981 tgurney Add envelope test
|
||
|
#
|
||
|
#
|
||
|
|
||
|
|
||
|
class ObsTestCase(baseDafTestCase.DafTestCase):
|
||
|
"""Test DAF support for obs data"""
|
||
|
|
||
|
datatype = "obs"
|
||
|
|
||
|
def testGetAvailableParameters(self):
|
||
|
req = DAL.newDataRequest(self.datatype)
|
||
|
self.runParametersTest(req)
|
||
|
|
||
|
def testGetAvailableLocations(self):
|
||
|
req = DAL.newDataRequest(self.datatype)
|
||
|
self.runLocationsTest(req)
|
||
|
|
||
|
def testGetAvailableTimes(self):
|
||
|
req = DAL.newDataRequest(self.datatype)
|
||
|
req.setLocationNames(params.OBS_STATION)
|
||
|
self.runTimesTest(req)
|
||
|
|
||
|
def testGetGeometryData(self):
|
||
|
req = DAL.newDataRequest(self.datatype)
|
||
|
req.setLocationNames(params.OBS_STATION)
|
||
|
req.setParameters("temperature", "seaLevelPress", "dewpoint")
|
||
|
data = self.runGeometryDataTest(req)
|
||
|
|
||
|
def testGetGeometryDataWithEnvelope(self):
|
||
|
req = DAL.newDataRequest(self.datatype)
|
||
|
req.setEnvelope(params.ENVELOPE)
|
||
|
req.setParameters("temperature", "seaLevelPress", "dewpoint")
|
||
|
data = self.runGeometryDataTest(req)
|
||
|
for item in data:
|
||
|
self.assertTrue(params.ENVELOPE.contains(item.getGeometry()))
|
||
|
|
||
|
def testGetIdentifierValues(self):
|
||
|
req = DAL.newDataRequest(self.datatype)
|
||
|
optionalIds = set(DAL.getOptionalIdentifiers(req))
|
||
|
self.runGetIdValuesTest(optionalIds)
|
||
|
|
||
|
def testGetInvalidIdentifierValuesThrowsException(self):
|
||
|
self.runInvalidIdValuesTest()
|
||
|
|
||
|
def testGetNonexistentIdentifierValuesThrowsException(self):
|
||
|
self.runNonexistentIdValuesTest()
|
||
|
|
||
|
def _runConstraintTest(self, key, operator, value):
|
||
|
req = DAL.newDataRequest(self.datatype)
|
||
|
constraint = RequestConstraint.new(operator, value)
|
||
|
req.setParameters("temperature", "reportType")
|
||
|
req.setLocationNames(params.OBS_STATION)
|
||
|
req.addIdentifier(key, constraint)
|
||
|
return self.runGeometryDataTest(req)
|
||
|
|
||
|
def testGetDataWithEqualsString(self):
|
||
|
geometryData = self._runConstraintTest('reportType', '=', 'METAR')
|
||
|
for record in geometryData:
|
||
|
self.assertEqual(record.getString('reportType'), 'METAR')
|
||
|
|
||
|
def testGetDataWithEqualsUnicode(self):
|
||
|
geometryData = self._runConstraintTest('reportType', '=', u'METAR')
|
||
|
for record in geometryData:
|
||
|
self.assertEqual(record.getString('reportType'), 'METAR')
|
||
|
|
||
|
# No numeric tests since no numeric identifiers are available.
|
||
|
|
||
|
def testGetDataWithEqualsNone(self):
|
||
|
geometryData = self._runConstraintTest('reportType', '=', None)
|
||
|
for record in geometryData:
|
||
|
self.assertEqual(record.getType('reportType'), 'NULL')
|
||
|
|
||
|
def testGetDataWithNotEquals(self):
|
||
|
geometryData = self._runConstraintTest('reportType', '!=', 'METAR')
|
||
|
for record in geometryData:
|
||
|
self.assertNotEqual(record.getString('reportType'), 'METAR')
|
||
|
|
||
|
def testGetDataWithNotEqualsNone(self):
|
||
|
geometryData = self._runConstraintTest('reportType', '!=', None)
|
||
|
for record in geometryData:
|
||
|
self.assertNotEqual(record.getType('reportType'), 'NULL')
|
||
|
|
||
|
def testGetDataWithGreaterThan(self):
|
||
|
geometryData = self._runConstraintTest('reportType', '>', 'METAR')
|
||
|
for record in geometryData:
|
||
|
self.assertGreater(record.getString('reportType'), 'METAR')
|
||
|
|
||
|
def testGetDataWithLessThan(self):
|
||
|
geometryData = self._runConstraintTest('reportType', '<', 'METAR')
|
||
|
for record in geometryData:
|
||
|
self.assertLess(record.getString('reportType'), 'METAR')
|
||
|
|
||
|
def testGetDataWithGreaterThanEquals(self):
|
||
|
geometryData = self._runConstraintTest('reportType', '>=', 'METAR')
|
||
|
for record in geometryData:
|
||
|
self.assertGreaterEqual(record.getString('reportType'), 'METAR')
|
||
|
|
||
|
def testGetDataWithLessThanEquals(self):
|
||
|
geometryData = self._runConstraintTest('reportType', '<=', 'METAR')
|
||
|
for record in geometryData:
|
||
|
self.assertLessEqual(record.getString('reportType'), 'METAR')
|
||
|
|
||
|
def testGetDataWithInTuple(self):
|
||
|
collection = ('METAR', 'SPECI')
|
||
|
geometryData = self._runConstraintTest('reportType', 'in', collection)
|
||
|
for record in geometryData:
|
||
|
self.assertIn(record.getString('reportType'), collection)
|
||
|
|
||
|
def testGetDataWithInList(self):
|
||
|
collection = ['METAR', 'SPECI']
|
||
|
geometryData = self._runConstraintTest('reportType', 'in', collection)
|
||
|
for record in geometryData:
|
||
|
self.assertIn(record.getString('reportType'), collection)
|
||
|
|
||
|
def testGetDataWithInGenerator(self):
|
||
|
collection = ('METAR', 'SPECI')
|
||
|
generator = (item for item in collection)
|
||
|
geometryData = self._runConstraintTest('reportType', 'in', generator)
|
||
|
for record in geometryData:
|
||
|
self.assertIn(record.getString('reportType'), collection)
|
||
|
|
||
|
def testGetDataWithNotInList(self):
|
||
|
collection = ['METAR', 'SPECI']
|
||
|
geometryData = self._runConstraintTest('reportType', 'not in', collection)
|
||
|
for record in geometryData:
|
||
|
self.assertNotIn(record.getString('reportType'), collection)
|
||
|
|
||
|
def testGetDataWithInvalidConstraintTypeThrowsException(self):
|
||
|
with self.assertRaises(ValueError):
|
||
|
self._runConstraintTest('reportType', 'junk', 'METAR')
|
||
|
|
||
|
def testGetDataWithInvalidConstraintValueThrowsException(self):
|
||
|
with self.assertRaises(TypeError):
|
||
|
self._runConstraintTest('reportType', '=', {})
|
||
|
|
||
|
def testGetDataWithEmptyInConstraintThrowsException(self):
|
||
|
with self.assertRaises(ValueError):
|
||
|
self._runConstraintTest('reportType', 'in', [])
|
||
|
|
||
|
def testGetDataWithNestedInConstraintThrowsException(self):
|
||
|
collection = ('METAR', 'SPECI', ())
|
||
|
with self.assertRaises(TypeError):
|
||
|
self._runConstraintTest('reportType', 'in', collection)
|