-
Notifications
You must be signed in to change notification settings - Fork 89
/
query_lib_spark_test.py
108 lines (99 loc) · 4.9 KB
/
query_lib_spark_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import unittest
import query_lib_spark
class SparkPatientQueryTest(unittest.TestCase):
def test_single_code_with_values(self):
patient_query = query_lib_spark.SparkPatientQuery("", "")
patient_query.include_obs_values_in_time_range(
'TEST_CODE', ['VAL1', 'VAL2'], '2021-06-01', '2021-07-10')
sql_constraint = patient_query._all_constraints_sql()
self.assertEqual(sql_constraint, (
'((dateTime >= "2021-06-01" AND dateTime <= "2021-07-10" AND '
'coding.code="TEST_CODE" AND '
'valueCoding.code IN ("VAL1","VAL2") AND '
'valueCoding.system IS NULL))'
' AND TRUE AND TRUE AND TRUE'
))
def test_single_code_with_values_and_encounter(self):
patient_query = query_lib_spark.SparkPatientQuery("", "")
patient_query.include_obs_values_in_time_range(
'TEST_CODE', ['VAL1', 'VAL2'], '2021-06-01', '2021-07-10')
patient_query.encounter_constraints(
locationId=['L1', 'L2'], typeCode=['TC1', 'TC2'], typeSystem='TS')
sql_constraint = patient_query._all_constraints_sql().strip()
self.assertEqual(sql_constraint, (
'((dateTime >= "2021-06-01" AND dateTime <= "2021-07-10" AND '
'coding.code="TEST_CODE" AND '
'valueCoding.code IN ("VAL1","VAL2") AND '
'valueCoding.system IS NULL)) '
'AND locationId IN ("L1","L2") AND '
'arrays_overlap(encTypeCode, array("TC1","TC2")) AND '
'array_contains(encTypeSystem, "TS")'
))
def test_two_codes_with_values_and_range(self):
patient_query = query_lib_spark.SparkPatientQuery("", "")
patient_query.include_obs_values_in_time_range(
'TEST_CODE1', ['VAL1', 'VAL2'], '2021-06-01', '2021-07-10')
patient_query.include_obs_in_value_and_time_range(
'TEST_CODE2', 0.1, None, '2021-07-09', '2021-07-10')
sql_constraint = patient_query._all_constraints_sql()
self.assertEqual(sql_constraint, (
'((dateTime >= "2021-06-01" AND dateTime <= "2021-07-10" AND '
'coding.code="TEST_CODE1" AND '
'valueCoding.code IN ("VAL1","VAL2") AND '
'valueCoding.system IS NULL) '
'OR (dateTime >= "2021-07-09" AND dateTime <= "2021-07-10" AND '
'coding.code="TEST_CODE2" AND value.quantity.value >= 0.1 ))'
' AND TRUE AND TRUE AND TRUE'
))
def test_two_codes_with_values_and_range_and_other_codes(self):
patient_query = query_lib_spark.SparkPatientQuery("", "")
patient_query.include_obs_values_in_time_range(
'TEST_CODE1', ['VAL1', 'VAL2'], '2021-06-01', '2021-07-10')
patient_query.include_obs_in_value_and_time_range(
'TEST_CODE2', 0.1, None, '2021-07-09', '2021-07-10')
patient_query.include_all_other_codes()
sql_constraint = patient_query._all_constraints_sql()
self.assertEqual(sql_constraint, (
'((dateTime >= "2021-06-01" AND dateTime <= "2021-07-10" AND '
'coding.code="TEST_CODE1" AND '
'valueCoding.code IN ("VAL1","VAL2") AND '
'valueCoding.system IS NULL) '
'OR (dateTime >= "2021-07-09" AND dateTime <= "2021-07-10" AND '
'coding.code="TEST_CODE2" AND value.quantity.value >= 0.1 ) '
'OR (coding.code!="TEST_CODE1" AND coding.code!="TEST_CODE2" AND TRUE))'
' AND TRUE AND TRUE AND TRUE'
))
def test_two_codes_with_values_and_range_and_other_codes_with_date(self):
patient_query = query_lib_spark.SparkPatientQuery("", "")
patient_query.include_obs_values_in_time_range(
'TEST_CODE1', ['VAL1', 'VAL2'], '2021-06-01', '2021-07-10')
patient_query.include_obs_in_value_and_time_range(
'TEST_CODE2', 0.1, None, '2021-07-09', '2021-07-10')
patient_query.include_all_other_codes(
min_time='2020-05-01', max_time='2020-07-10')
sql_constraint = patient_query._all_constraints_sql()
self.assertEqual(sql_constraint, (
'((dateTime >= "2021-06-01" AND dateTime <= "2021-07-10" AND '
'coding.code="TEST_CODE1" AND '
'valueCoding.code IN ("VAL1","VAL2") AND '
'valueCoding.system IS NULL) '
'OR (dateTime >= "2021-07-09" AND dateTime <= "2021-07-10" AND '
'coding.code="TEST_CODE2" AND value.quantity.value >= 0.1 ) '
'OR (coding.code!="TEST_CODE1" AND coding.code!="TEST_CODE2" AND '
'dateTime >= "2020-05-01" AND dateTime <= "2020-07-10"))'
' AND TRUE AND TRUE AND TRUE'
))
# TODO add tests with code and value systems.