-
Notifications
You must be signed in to change notification settings - Fork 8
/
cql_test.go
408 lines (384 loc) · 13.7 KB
/
cql_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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
// 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 cql_test
import (
"context"
"errors"
"testing"
"time"
"github.com/google/cql"
"github.com/google/cql/model"
"github.com/google/cql/parser"
"github.com/google/cql/result"
"github.com/google/cql/retriever"
"github.com/google/cql/tests/enginetests"
"github.com/google/cql/types"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"github.com/lithammer/dedent"
"google.golang.org/protobuf/testing/protocmp"
)
// CQL Engine tests are for testing the top level CQL Engine API. For detailed testing see the tests
// folder.
func TestCQL(t *testing.T) {
tests := []struct {
name string
cql []string
retriever retriever.Retriever
parserConfig cql.ParseConfig
evalConfig cql.EvalConfig
wantResult result.Value
wantSourceExpression model.IExpression
wantSourceValues []result.Value
}{
{
name: "Simple Query with Retriever",
cql: []string{dedent.Dedent(`
library TESTLIB version '1.0.0'
using FHIR version '4.0.1'
include FHIRHelpers version '4.0.1'
context Patient
define TESTRESULT: [Encounter] E`),
fhirHelpers(t),
},
parserConfig: cql.ParseConfig{
DataModels: [][]byte{fhirDataModel(t)},
},
retriever: enginetests.BuildRetriever(t),
wantResult: newOrFatal(t, result.List{Value: []result.Value{
newOrFatal(t, result.Named{Value: enginetests.RetrieveFHIRResource(t, "Encounter", "1"), RuntimeType: &types.Named{TypeName: "FHIR.Encounter"}}),
newOrFatal(t, result.Named{Value: enginetests.RetrieveFHIRResource(t, "Encounter", "2"), RuntimeType: &types.Named{TypeName: "FHIR.Encounter"}}),
},
StaticType: &types.List{ElementType: &types.Named{TypeName: "FHIR.Encounter"}},
}),
wantSourceExpression: &model.Query{
Expression: model.ResultType(&types.List{ElementType: &types.Named{TypeName: "FHIR.Encounter"}}),
Source: []*model.AliasedSource{
&model.AliasedSource{
Alias: "E",
Expression: model.ResultType(&types.List{ElementType: &types.Named{TypeName: "FHIR.Encounter"}}),
Source: &model.Retrieve{
DataType: "{http://hl7.org/fhir}Encounter",
TemplateID: "http://hl7.org/fhir/StructureDefinition/Encounter",
CodeProperty: "type",
Expression: model.ResultType(&types.List{ElementType: &types.Named{TypeName: "FHIR.Encounter"}}),
},
},
},
},
wantSourceValues: []result.Value{
newOrFatal(t, result.List{Value: []result.Value{
newOrFatal(t, result.Named{Value: enginetests.RetrieveFHIRResource(t, "Encounter", "1"), RuntimeType: &types.Named{TypeName: "FHIR.Encounter"}}),
newOrFatal(t, result.Named{Value: enginetests.RetrieveFHIRResource(t, "Encounter", "2"), RuntimeType: &types.Named{TypeName: "FHIR.Encounter"}}),
},
StaticType: &types.List{ElementType: &types.Named{TypeName: "FHIR.Encounter"}},
}),
},
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
elm, err := cql.Parse(context.Background(), tc.cql, tc.parserConfig)
if err != nil {
t.Fatalf("Parse returned unexpected error: %v", err)
}
results, err := elm.Eval(context.Background(), tc.retriever, tc.evalConfig)
if err != nil {
t.Fatalf("Eval returned unexpected error: %v", err)
}
gotResult := getTESTRESULTWithSources(t, results)
if diff := cmp.Diff(tc.wantResult, gotResult, protocmp.Transform()); diff != "" {
t.Errorf("Eval diff (-want +got)\n%v", diff)
}
if diff := cmp.Diff(tc.wantSourceExpression, gotResult.SourceExpression(), protocmp.Transform()); tc.wantSourceExpression != nil && diff != "" {
t.Errorf("Eval SourceExpression diff (-want +got)\n%v", diff)
}
if diff := cmp.Diff(tc.wantSourceValues, gotResult.SourceValues(), protocmp.Transform()); tc.wantSourceValues != nil && diff != "" {
t.Errorf("Eval SourceValues diff (-want +got)\n%v", diff)
}
})
}
}
func TestCQL_EvalEmptyTimestamp(t *testing.T) {
// This test checks that an empty EvalConfig.EvaluationTimestamp is set to time.Now() at the start
// of the eval request. We do this by sanity checking the result of Now() is within 2 mins of the
// test assertion time.
cqlSources := []string{dedent.Dedent(`
library TESTLIB version '1.0.0'
define TESTRESULT: Now()`)}
parserConfig := cql.ParseConfig{}
evalConfig := cql.EvalConfig{}
elm, err := cql.Parse(context.Background(), cqlSources, parserConfig)
if err != nil {
t.Fatalf("Parse returned unexpected error: %v", err)
}
results, err := elm.Eval(context.Background(), nil, evalConfig)
if err != nil {
t.Fatalf("Eval returned unexpected error: %v", err)
}
gotResult := getTESTRESULTWithSources(t, results)
dt, err := result.ToDateTime(gotResult)
if err != nil {
t.Errorf("returned result is not a DateTime, err: %v", err)
}
// Check that the dt is within [time.Now()-2min, time.Now()]
end := time.Now()
start := end.Add(-2 * time.Minute)
if dt.Date.Before(start) || dt.Date.After(end) {
t.Errorf("returned CQL Now() result is not within 2 mins of time.Now()")
}
}
func TestCQL_ParseErrors(t *testing.T) {
tests := []struct {
name string
cql []string
retriever retriever.Retriever
parserConfig cql.ParseConfig
wantErr error
}{
{
name: "Invalid named library",
cql: []string{dedent.Dedent(`
library TESTLIB version '1.0.0'
using FHIR version '4.0.1'
context Patient
define TESTRESULT: [Encounter] E`)},
retriever: enginetests.BuildRetriever(t),
wantErr: &parser.LibraryErrors{
LibKey: result.LibKey{Name: "TESTLIB", IsUnnamed: false /* Version is ignored*/},
Errors: []*parser.ParsingError{
{Message: "FHIR 4.0.1 data model not found", Line: 3, Column: 0},
{Message: "using declaration has not been set", Line: 4, Column: 0},
{Message: "using declaration has not been set", Line: 5, Column: 20},
{Message: "retrieves cannot be performed on type System.Any", Line: 5, Column: 19},
},
},
},
{
name: "Invalid unnamed library",
cql: []string{"define Foo: 1 + 'a'"},
retriever: enginetests.BuildRetriever(t),
wantErr: &parser.LibraryErrors{
LibKey: result.LibKey{Name: "Unnamed Library", IsUnnamed: true /* Version is ignored*/},
Errors: []*parser.ParsingError{
{
Message: "could not resolve Add(System.Integer, System.String): no matching overloads",
Line: 1,
Column: 12,
},
},
},
},
{
name: "Invalid parameter",
cql: []string{dedent.Dedent(`
library TESTLIB version '1.0.0'
using FHIR version '4.0.1'
context Patient
define TESTRESULT: [Encounter] E`),
fhirHelpers(t),
},
retriever: enginetests.BuildRetriever(t),
parserConfig: cql.ParseConfig{
Parameters: map[result.DefKey]string{
result.DefKey{Name: "param name", Library: result.LibKey{Name: "TESTLIB", Version: "1.0.0"}}: "invalid value",
},
DataModels: [][]byte{fhirDataModel(t)},
},
wantErr: &parser.ParameterErrors{
DefKey: result.DefKey{
Name: "param name",
Library: result.LibKey{Name: "TESTLIB", Version: "1.0.0"},
},
Errors: []*parser.ParsingError{{Message: "must be a single literal"}},
},
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
_, err := cql.Parse(context.Background(), tc.cql, tc.parserConfig)
if err == nil {
t.Fatalf("Parse succeeded, expected error")
}
if diff := cmp.Diff(tc.wantErr, err, cmpopts.IgnoreFields(parser.LibraryErrors{}, "LibKey.Version")); diff != "" {
t.Errorf("Parse returned err: %v, want %v (-want, +got): %v", err, tc.wantErr, diff)
}
})
}
}
func TestCQL_EvalErrors(t *testing.T) {
tests := []struct {
name string
cql []string
retriever retriever.Retriever
parserConfig cql.ParseConfig
evalConfig cql.EvalConfig
}{
{
name: "Retriever nil error",
cql: []string{dedent.Dedent(`
library TESTLIB version '1.0.0'
using FHIR version '4.0.1'
include FHIRHelpers version '4.0.1'
context Patient
define TESTRESULT: [Encounter] E`),
fhirHelpers(t),
},
parserConfig: cql.ParseConfig{
DataModels: [][]byte{fhirDataModel(t)},
},
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
elm, err := cql.Parse(context.Background(), tc.cql, tc.parserConfig)
if err != nil {
t.Fatalf("Parse returned unexpected error: %v", err)
}
_, err = elm.Eval(context.Background(), tc.retriever, tc.evalConfig)
if err == nil {
t.Fatalf("Eval succeeded, expected error")
}
engErr, ok := err.(result.EngineError)
if !ok {
t.Fatalf("Returned error (%s) was not a result.EngineError", err)
}
if !errors.Is(engErr.ErrType, result.ErrEvaluationError) {
t.Errorf("Returned error (%s) was not a result.ErrEvaluationError error", err)
}
})
}
}
func TestCQL_MultipleEvals(t *testing.T) {
tests := []struct {
name string
cql []string
retriever retriever.Retriever
parserConfig cql.ParseConfig
evalConfig cql.EvalConfig
wantResult result.Value
wantSourceExpression model.IExpression
wantSourceValues []result.Value
}{
{
name: "Simple Query with Retriever",
cql: []string{dedent.Dedent(`
library TESTLIB version '1.0.0'
using FHIR version '4.0.1'
include FHIRHelpers version '4.0.1'
context Patient
define TESTRESULT: [Encounter] E`),
fhirHelpers(t),
},
parserConfig: cql.ParseConfig{
DataModels: [][]byte{fhirDataModel(t)},
},
retriever: enginetests.BuildRetriever(t),
wantResult: newOrFatal(t, result.List{
Value: []result.Value{
newOrFatal(t, result.Named{Value: enginetests.RetrieveFHIRResource(t, "Encounter", "1"), RuntimeType: &types.Named{TypeName: "FHIR.Encounter"}}),
newOrFatal(t, result.Named{Value: enginetests.RetrieveFHIRResource(t, "Encounter", "2"), RuntimeType: &types.Named{TypeName: "FHIR.Encounter"}}),
},
StaticType: &types.List{ElementType: &types.Named{TypeName: "FHIR.Encounter"}},
}),
wantSourceExpression: &model.Query{
Expression: model.ResultType(&types.List{ElementType: &types.Named{TypeName: "FHIR.Encounter"}}),
Source: []*model.AliasedSource{
&model.AliasedSource{
Alias: "E",
Expression: model.ResultType(&types.List{ElementType: &types.Named{TypeName: "FHIR.Encounter"}}),
Source: &model.Retrieve{
DataType: "{http://hl7.org/fhir}Encounter",
TemplateID: "http://hl7.org/fhir/StructureDefinition/Encounter",
CodeProperty: "type",
Expression: model.ResultType(&types.List{ElementType: &types.Named{TypeName: "FHIR.Encounter"}}),
},
},
},
},
wantSourceValues: []result.Value{
newOrFatal(t, result.List{
Value: []result.Value{
newOrFatal(t, result.Named{Value: enginetests.RetrieveFHIRResource(t, "Encounter", "1"), RuntimeType: &types.Named{TypeName: "FHIR.Encounter"}}),
newOrFatal(t, result.Named{Value: enginetests.RetrieveFHIRResource(t, "Encounter", "2"), RuntimeType: &types.Named{TypeName: "FHIR.Encounter"}}),
},
StaticType: &types.List{ElementType: &types.Named{TypeName: "FHIR.Encounter"}},
}),
},
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
elm, err := cql.Parse(context.Background(), tc.cql, tc.parserConfig)
if err != nil {
t.Fatalf("Parse returned unexpected error: %v", err)
}
for i := 0; i < 3; i++ {
results, err := elm.Eval(context.Background(), tc.retriever, tc.evalConfig)
if err != nil {
t.Fatalf("Eval returned unexpected error: %v", err)
}
gotResult := getTESTRESULTWithSources(t, results)
if diff := cmp.Diff(tc.wantResult, gotResult, protocmp.Transform()); diff != "" {
t.Errorf("Eval diff (-want +got)\n%v", diff)
}
if diff := cmp.Diff(tc.wantSourceExpression, gotResult.SourceExpression(), protocmp.Transform()); tc.wantSourceExpression != nil && diff != "" {
t.Errorf("Eval SourceExpression diff (-want +got)\n%v", diff)
}
if diff := cmp.Diff(tc.wantSourceValues, gotResult.SourceValues(), protocmp.Transform()); tc.wantSourceValues != nil && diff != "" {
t.Errorf("Eval SourceValues diff (-want +got)\n%v", diff)
}
}
})
}
}
func fhirDataModel(t testing.TB) []byte {
t.Helper()
fdm, err := cql.FHIRDataModel("4.0.1")
if err != nil {
t.Fatalf("FHIRDataModel returned unexpected error: %v", err)
}
return fdm
}
func fhirHelpers(t testing.TB) string {
t.Helper()
fh, err := cql.FHIRHelpersLib("4.0.1")
if err != nil {
t.Fatalf("FHIRHelepersLib returned unexpected error: %v", err)
}
return fh
}
// getTESTRESULTWithSources finds the first TESTRESULT definition in any library and returns the
// result with sources.
func getTESTRESULTWithSources(t testing.TB, resultLibs result.Libraries) result.Value {
t.Helper()
for _, resultLib := range resultLibs {
for name, res := range resultLib {
if name == "TESTRESULT" {
return res
}
}
}
t.Fatalf("Could not find TESTRESULT expression definition")
return result.Value{}
}
// newOrFatal returns a new result.Value or calls fatal on error.
func newOrFatal(t testing.TB, a any) result.Value {
t.Helper()
o, err := result.New(a)
if err != nil {
t.Fatalf("New(%v) returned unexpected error: %v", a, err)
}
return o
}