-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathoperator_clinical_test.go
372 lines (363 loc) · 12.3 KB
/
operator_clinical_test.go
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
// Copyright 2024 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.
package enginetests
import (
"context"
"fmt"
"testing"
"github.com/google/cql/interpreter"
"github.com/google/cql/model"
"github.com/google/cql/parser"
"github.com/google/cql/result"
"github.com/google/cql/types"
"github.com/google/go-cmp/cmp"
"github.com/lithammer/dedent"
"google.golang.org/protobuf/testing/protocmp"
)
func TestCalculateAgeAt(t *testing.T) {
tests := []struct {
name string
cql string
wantModel model.IExpression
wantResult result.Value
}{
// AgeAt()
// The test patient's birthday is 1950-01-01. Note AgeAt is translated into CalculateAgeAt
// by the parser, so although the syntax is different much of the interpreter logic is shared.
{
name: "AgeAt Date",
cql: "AgeInYearsAt(@2023-06-14)",
wantModel: &model.CalculateAgeAt{
Precision: model.YEAR,
BinaryExpression: &model.BinaryExpression{
Expression: model.ResultType(types.Integer),
Operands: []model.IExpression{
&model.Property{
Expression: model.ResultType(types.Date),
Source: &model.Property{
Expression: model.ResultType(&types.Named{TypeName: "FHIR.date"}),
Source: &model.ExpressionRef{
Expression: model.ResultType(&types.Named{TypeName: "FHIR.Patient"}),
Name: "Patient",
},
Path: "birthDate",
},
Path: "value",
},
model.NewLiteral("@2023-06-14", types.Date),
},
},
},
wantResult: newOrFatal(t, 73),
},
{
name: "AgeAt DateTime",
cql: "AgeInYearsAt(@2023-06-15T10:01:01.000Z)",
wantResult: newOrFatal(t, 73),
},
// CalculateAgeAt()
{
name: "Left Null",
cql: "CalculateAgeInYearsAt(null, @2023-06-14)",
wantModel: &model.CalculateAgeAt{
Precision: model.YEAR,
BinaryExpression: &model.BinaryExpression{
Expression: model.ResultType(types.Integer),
Operands: []model.IExpression{
&model.As{
UnaryExpression: &model.UnaryExpression{
Expression: model.ResultType(types.Date),
Operand: model.NewLiteral("null", types.Any),
},
AsTypeSpecifier: types.Date,
},
model.NewLiteral("@2023-06-14", types.Date),
},
},
},
wantResult: newOrFatal(t, nil),
},
{
name: "Right Null",
cql: "CalculateAgeInYearsAt(@1981-06-15, null)",
wantResult: newOrFatal(t, nil),
},
{
name: "Years precision Dates",
cql: "CalculateAgeInYearsAt(@1981-06-15, @2023-06-14)",
wantResult: newOrFatal(t, 41),
},
{
name: "Years precision DateTimes",
cql: "CalculateAgeInYearsAt(@1981-06-15, @2023-06-15T10:01:01.000Z)",
wantResult: newOrFatal(t, 42),
},
{
name: "Years precision day short",
cql: "CalculateAgeInYearsAt(@1981-06-15, @2023-06-14)",
wantResult: newOrFatal(t, 41),
},
{
name: "Months precision",
cql: "CalculateAgeInMonthsAt(@2022-06-15, @2023-06-14)",
wantResult: newOrFatal(t, 11),
},
{
name: "Months precision day short",
cql: "CalculateAgeInMonthsAt(@2022-06-15, @2023-06-14)",
wantResult: newOrFatal(t, 11),
},
{
name: "Weeks precision",
cql: "CalculateAgeInWeeksAt(@2023-06-01, @2023-06-14)",
wantResult: newOrFatal(t, 1),
},
{
name: "Days precision",
cql: "CalculateAgeInDaysAt(@2023-06-01, @2023-06-15)",
wantResult: newOrFatal(t, 14),
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
p := newFHIRParser(t)
parsedLibs, err := p.Libraries(context.Background(), wrapInLib(t, tc.cql), parser.Config{})
if err != nil {
t.Fatalf("Parse returned unexpected error: %v", err)
}
if diff := cmp.Diff(tc.wantModel, getTESTRESULTModel(t, parsedLibs)); tc.wantModel != nil && diff != "" {
t.Errorf("Parse diff (-want +got):\n%s", diff)
}
results, err := interpreter.Eval(context.Background(), parsedLibs, defaultInterpreterConfig(t, p))
if err != nil {
t.Fatalf("Eval returned unexpected error: %v", err)
}
if diff := cmp.Diff(tc.wantResult, getTESTRESULT(t, results), protocmp.Transform()); diff != "" {
t.Errorf("Eval diff (-want +got)\n%v", diff)
}
})
}
}
func TestInValueSetAndCodeSystem(t *testing.T) {
tests := []struct {
name string
cql string
wantModel model.IExpression
wantResult result.Value
}{
// ValueSet tests
{
name: "Code In ValueSet",
cql: dedent.Dedent(`
valueset VS: 'https://example.com/vs/glucose' version '1.0.0'
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code C: 'gluc' from CS
define TESTRESULT: C in VS`),
wantResult: newOrFatal(t, true),
},
{
name: "Code In unversioned ValueSet",
cql: dedent.Dedent(`
valueset VS: 'https://example.com/vs/glucose'
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code C: 'gluc' from CS
define TESTRESULT: C in VS`),
wantResult: newOrFatal(t, true),
},
{
name: "Code Not In ValueSet",
cql: dedent.Dedent(`
valueset VS: 'https://example.com/vs/glucose' version '1.0.0'
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code C: 'NotInValueSet' from CS
define TESTRESULT: C in VS`),
wantResult: newOrFatal(t, false),
},
{
name: "One Code from List<Code> In unversioned ValueSet",
cql: dedent.Dedent(`
valueset VS: 'https://example.com/vs/glucose'
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code ExistsCode: 'gluc' from CS
code NonexistantCode: 'NotInValueSet' from CS
define TESTRESULT: { NonexistantCode, ExistsCode } in VS`),
wantResult: newOrFatal(t, true),
},
{
name: "List<Code> Not In unversioned ValueSet",
cql: dedent.Dedent(`
valueset VS: 'https://example.com/vs/glucose'
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code NonexistantCode: 'NotInValueSet' from CS
code NonexistantCode2: 'NotInValueSet2' from CS
define TESTRESULT: { NonexistantCode, NonexistantCode2 } in VS`),
wantResult: newOrFatal(t, false),
},
{
name: "One Code from Concept In unversioned ValueSet",
cql: dedent.Dedent(`
valueset VS: 'https://example.com/vs/glucose'
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code ExistsCode: 'gluc' from CS
code NonexistantCode: 'NotInValueSet' from CS
concept Con: { NonexistantCode, ExistsCode }
define TESTRESULT: Con in VS`),
wantResult: newOrFatal(t, true),
},
{
name: "Concept Not In unversioned ValueSet",
cql: dedent.Dedent(`
valueset VS: 'https://example.com/vs/glucose'
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code NonexistantCode: 'NotInValueSet' from CS
code NonexistantCode2: 'NotInValueSet2' from CS
concept Con: { NonexistantCode, NonexistantCode2 }
define TESTRESULT: Con in VS`),
wantResult: newOrFatal(t, false),
},
{
name: "One Code from List<Concept> In unversioned ValueSet",
cql: dedent.Dedent(`
valueset VS: 'https://example.com/vs/glucose'
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code ExistsCode: 'gluc' from CS
code NonexistantCode: 'NotInValueSet' from CS
concept ConWithValidCode: { ExistsCode }
concept ConNoValidCode: { NonexistantCode }
define TESTRESULT: { ConNoValidCode, ConWithValidCode } in VS`),
wantResult: newOrFatal(t, true),
},
{
name: "List<Concept> Not In unversioned ValueSet",
cql: dedent.Dedent(`
valueset VS: 'https://example.com/vs/glucose'
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code NonexistantCode: 'NotInValueSet' from CS
code NonexistantCode2: 'NotInValueSet2' from CS
concept ConNoValidCode: { NonexistantCode }
concept ConNoValidCode2: { NonexistantCode2 }
define TESTRESULT: { ConNoValidCode, ConNoValidCode2 } in VS`),
wantResult: newOrFatal(t, false),
},
// CodeSystem tests
{
name: "Code In Code System",
cql: dedent.Dedent(`
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code C: 'snfl' from CS
define TESTRESULT: C in CS`),
wantResult: newOrFatal(t, true),
},
{
name: "Code Not In Code System",
cql: dedent.Dedent(`
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code C: 'NotInCodeSystem' from CS
define TESTRESULT: C in CS`),
wantResult: newOrFatal(t, false),
},
{
name: "One Code from List<Code> In Code System",
cql: dedent.Dedent(`
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code ExistsCode: 'snfl' from CS
code NonexistantCode: 'NotInCodeSystem' from CS
define TESTRESULT: { NonexistantCode, ExistsCode } in CS`),
wantResult: newOrFatal(t, true),
},
{
name: "List<Code> Not In Code System",
cql: dedent.Dedent(`
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code NonexistantCode: 'NotInCodeSystem' from CS
code NonexistantCode2: 'NotInCodeSystem2' from CS
define TESTRESULT: { NonexistantCode, NonexistantCode2 } in CS`),
wantResult: newOrFatal(t, false),
},
{
name: "One Code from Concept In Code System",
cql: dedent.Dedent(`
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code ExistsCode: 'snfl' from CS
code NonexistantCode: 'NotInCodeSystem' from CS
concept Con: { NonexistantCode, ExistsCode }
define TESTRESULT: Con in CS`),
wantResult: newOrFatal(t, true),
},
{
name: "Concept Not In Code System",
cql: dedent.Dedent(`
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code NonexistantCode: 'NotInCodeSystem' from CS
code NonexistantCode2: 'NotInCodeSystem2' from CS
concept Con: { NonexistantCode, NonexistantCode2 }
define TESTRESULT: Con in CS`),
wantResult: newOrFatal(t, false),
},
{
name: "One Code from List<Concept> In Code System",
cql: dedent.Dedent(`
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code ExistsCode: 'snfl' from CS
code NonexistantCode: 'NotInCodeSystem' from CS
concept ConWithValidCode: { ExistsCode }
concept ConNoValidCode: { NonexistantCode }
define TESTRESULT: { ConNoValidCode, ConWithValidCode } in CS`),
wantResult: newOrFatal(t, true),
},
{
name: "Concept Not In Code System",
cql: dedent.Dedent(`
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code NonexistantCode: 'NotInCodeSystem' from CS
code NonexistantCode2: 'NotInCodeSystem2' from CS
concept ConNoValidCode: { NonexistantCode }
concept ConNoValidCode2: { NonexistantCode2 }
define TESTRESULT: { ConNoValidCode, ConNoValidCode2 } in CS`),
wantResult: newOrFatal(t, false),
},
{
name: "One Code from Concept that contains nulls In Code System",
cql: dedent.Dedent(`
codesystem CS: 'https://example.com/cs/diagnosis' version '1.0.0'
code ExistsCode: 'snfl' from CS
define Con: Concept{ codes: { null as Code, ExistsCode, null as Code } }
define TESTRESULT: Con in CS`),
wantResult: newOrFatal(t, true),
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
testCQL := dedent.Dedent(fmt.Sprintf(`
library TESTLIB version '1.0.0'
using FHIR version '4.0.1'
%v`, tc.cql))
p := newFHIRParser(t)
parsedLibs, err := p.Libraries(context.Background(), addFHIRHelpersLib(t, testCQL), parser.Config{})
if err != nil {
t.Fatalf("Parse returned unexpected error: %v", err)
}
if diff := cmp.Diff(tc.wantModel, getTESTRESULTModel(t, parsedLibs)); tc.wantModel != nil && diff != "" {
t.Errorf("Parse diff (-want +got):\n%s", diff)
}
results, err := interpreter.Eval(context.Background(), parsedLibs, defaultInterpreterConfig(t, p))
if err != nil {
t.Fatalf("Eval returned unexpected error: %v", err)
}
if diff := cmp.Diff(tc.wantResult, getTESTRESULT(t, results), protocmp.Transform()); diff != "" {
t.Errorf("Eval diff (-want +got)\n%v", diff)
}
})
}
}