-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathlocal_test.go
More file actions
1018 lines (968 loc) · 27.1 KB
/
local_test.go
File metadata and controls
1018 lines (968 loc) · 27.1 KB
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// 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 terminology_test
import (
"errors"
"os"
"path/filepath"
"testing"
"github.com/google/cql/internal/testhelpers"
"github.com/google/cql/terminology"
"github.com/google/go-cmp/cmp"
)
var testJSONResources = []string{`
{
"resourceType": "ValueSet",
"id": "https://test/file1",
"url": "https://test/file1",
"version": "1.0.0",
"expansion": {
"contains": [
{ "system": "system1", "code": "1" },
{ "system": "system1", "code": "2" },
{ "system": "system2", "code": "3" }
]
}
}
`,
`
{
"resourceType": "ValueSet",
"id": "https://test/file2",
"url": "https://test/file2",
"version": "2.0.0",
"expansion": {
"contains": [
{ "system": "system3", "code": "4", "display": "four" },
{ "system": "system3", "code": "5" },
{ "system": "system4", "code": "6" }
]
}
}
`,
// Should override version 1.0.0
`
{
"resourceType": "ValueSet",
"id": "https://test/file1",
"url": "https://test/file1",
"version": "2.0.0",
"expansion": {
"contains": [
{ "system": "system1", "code": "1v2" },
{ "system": "system1", "code": "2v2" },
{ "system": "system2", "code": "3v2" }
]
}
}
`,
`
{
"resourceType": "CodeSystem",
"id": "https://test/file3",
"url": "https://test/file3",
"version": "1.0.0",
"concept": [
{
"code": "sn",
"definition": "The sniffles"
},
{
"code": "sr",
"display": "SRT",
"definition": "A sore throat"
}
]
}
`,
// Should override version 1.0.0
`
{
"resourceType": "CodeSystem",
"id": "https://test/file3",
"url": "https://test/file3",
"version": "3.0.0",
"concept": [
{
"code": "snfl",
"definition": "The sniffles"
},
{
"code": "sre-thrt",
"display": "SRT",
"definition": "A sore throat"
}
]
}
`,
// The following ValueSet and CodeSystem have the same URL and version.
`
{
"resourceType": "ValueSet",
"id": "https://test/file4",
"url": "https://test/file4",
"version": "4.0.0",
"expansion": {
"contains": [
{ "system": "system1", "code": "1" },
{ "system": "system1", "code": "2" },
{ "system": "system2", "code": "3" }
]
}
}
`,
`
{
"resourceType": "CodeSystem",
"id": "https://test/file4",
"url": "https://test/file4",
"version": "4.0.0",
"concept": [
{
"code": "snfl",
"definition": "The sniffles"
},
{ "code": "1" },
{ "code": "2" },
{ "code": "3" }
]
}
`,
// empty valueset
`
{
"resourceType": "ValueSet",
"id": "https://test/emptyVS",
"url": "https://test/emptyVS",
"version": "1.0.0"
}
`,
// empty codesystem
`
{
"resourceType": "CodeSystem",
"id": "https://test/emptyCS",
"url": "https://test/emptyCS",
"version": "1.0.0"
}
`,
// Compose ValueSet test data - parent ValueSet that includes other ValueSets
`
{
"resourceType": "ValueSet",
"id": "https://test/compose-parent",
"url": "https://test/compose-parent",
"version": "1.0.0",
"name": "CompositeParent",
"compose": {
"include": [
{
"valueSet": ["https://test/file1"]
},
{
"valueSet": ["https://test/file2"]
}
]
}
}
`,
// Compose ValueSet with mixed includes (both concepts and valueSets)
`
{
"resourceType": "ValueSet",
"id": "https://test/compose-mixed",
"url": "https://test/compose-mixed",
"version": "1.0.0",
"name": "CompositeMixed",
"compose": {
"include": [
{
"system": "http://snomed.info/sct",
"concept": [
{
"code": "12345",
"display": "Direct concept"
}
]
},
{
"valueSet": ["https://test/file1"]
}
]
}
}
`,
// Nested compose ValueSet (includes compose-parent)
`
{
"resourceType": "ValueSet",
"id": "https://test/compose-nested",
"url": "https://test/compose-nested",
"version": "1.0.0",
"name": "CompositeNested",
"compose": {
"include": [
{
"valueSet": ["https://test/compose-parent"]
},
{
"system": "http://loinc.org",
"concept": [
{
"code": "LA123",
"display": "Nested direct concept"
}
]
}
]
}
}
`,
// Compose ValueSet with missing reference (for error testing)
`
{
"resourceType": "ValueSet",
"id": "https://test/compose-missing-ref",
"url": "https://test/compose-missing-ref",
"version": "1.0.0",
"name": "CompositeMissingRef",
"compose": {
"include": [
{
"valueSet": ["https://test/nonexistent-valueset"]
}
]
}
}
`,
// Empty compose ValueSet
`
{
"resourceType": "ValueSet",
"id": "https://test/compose-empty",
"url": "https://test/compose-empty",
"version": "1.0.0",
"name": "CompositeEmpty",
"compose": {
"include": []
}
}
`,
}
// writeTestResources writes the standard test FHIR resources to disk, and returns the temporary dir
// where they've been written.
func writeTestResources(t *testing.T) string {
dir := testhelpers.WriteJSONs(t, testJSONResources)
// Write additional file to ensure the local provider skips it.
readme := []byte("This directory contains ValueSet JSON files.\n")
if err := os.WriteFile(filepath.Join(dir, "README.md"), readme, 0644); err != nil {
t.Fatalf("Unable to write test README: %v", err)
}
return dir
}
func testExpandValueSet(t *testing.T, lf *terminology.LocalFHIRProvider) {
cases := []struct {
name string
valueSetURL string
valueSetVersion string
wantCodes []*terminology.Code
wantErr error
}{
{
name: "ValueSet https://test/file2",
valueSetURL: "https://test/file2",
valueSetVersion: "2.0.0",
wantCodes: []*terminology.Code{
{System: "system3", Code: "4", Display: "four"},
{System: "system3", Code: "5"},
{System: "system4", Code: "6"},
},
},
{
name: "ValueSet https://test/file1",
valueSetURL: "https://test/file1",
valueSetVersion: "1.0.0",
wantCodes: []*terminology.Code{
{System: "system1", Code: "1"},
{System: "system1", Code: "2"},
{System: "system2", Code: "3"},
},
},
{
name: "ValueSet https://test/file1",
valueSetURL: "https://test/file1",
valueSetVersion: "2.0.0",
wantCodes: []*terminology.Code{
{System: "system1", Code: "1v2"},
{System: "system1", Code: "2v2"},
{System: "system2", Code: "3v2"},
},
},
{
// Valueset no version specified
name: "ValueSet https://test/file1",
valueSetURL: "https://test/file1",
wantCodes: []*terminology.Code{
{System: "system1", Code: "1v2"},
{System: "system1", Code: "2v2"},
{System: "system2", Code: "3v2"},
},
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
codes, err := lf.ExpandValueSet(tc.valueSetURL, tc.valueSetVersion)
if !errors.Is(err, tc.wantErr) {
t.Errorf("Expand(%v, %v) unexpected error. got: %v, want: %v", tc.valueSetURL, tc.valueSetVersion, err, tc.wantErr)
}
if diff := cmp.Diff(tc.wantCodes, codes); diff != "" {
t.Errorf("Expand(%v, %v) returned diff (-want +got):\n%s", tc.valueSetURL, tc.valueSetVersion, diff)
}
})
}
}
func TestLocalFHIR_Expand(t *testing.T) {
testdir := writeTestResources(t)
lf, err := terminology.NewLocalFHIRProvider(testdir)
if err != nil {
t.Fatalf("NewLocalFHIRProvider(%v) unexpected error: %v", testdir, err)
}
testExpandValueSet(t, lf)
}
func TestInMemoryFHIR_Expand(t *testing.T) {
imf, err := terminology.NewInMemoryFHIRProvider(testJSONResources)
if err != nil {
t.Fatalf("NewInMemoryFHIRProvider(%v) unexpected error: %v", testJSONResources, err)
}
testExpandValueSet(t, imf)
}
func testResourceInCodeSystem(t *testing.T, lf *terminology.LocalFHIRProvider) {
cases := []struct {
name string
URL string
Version string
Codes []terminology.Code
wantIn bool
}{
{
name: "Code in CodeSystem https://test/file3",
URL: "https://test/file3",
Version: "3.0.0",
Codes: []terminology.Code{{Code: "snfl", System: "https://test/file3"}},
wantIn: true,
},
{
name: "One Code in CodeSystem https://test/file3",
URL: "https://test/file3",
Version: "3.0.0",
Codes: []terminology.Code{
{Code: "asthma", System: "https://test/file3"},
{Code: "snfl", System: "https://test/file3"},
},
wantIn: true,
},
{
name: "Code not in CodeSystem https://test/file3",
URL: "https://test/file3",
Version: "3.0.0",
Codes: []terminology.Code{{Code: "asthma", System: "https://test/file3"}},
wantIn: false,
},
{
name: "Code in CodeSystem https://test/file3 latest",
URL: "https://test/file3",
Codes: []terminology.Code{{Code: "snfl", System: "https://test/file3"}},
wantIn: true,
},
{
name: "Code not in CodeSystem https://test/file3 latest",
URL: "https://test/file3",
Codes: []terminology.Code{{Code: "sn", System: "https://test/file3"}},
wantIn: false,
},
{
name: "Code in CodeSystem https://test/file4 when ValueSet with same key exists",
URL: "https://test/file4",
Version: "4.0.0",
Codes: []terminology.Code{{Code: "1", System: "https://test/file4"}},
wantIn: true,
},
{
name: "Code not in Empty CodeSystem https://test/emptyCS",
URL: "https://test/emptyCS",
Codes: []terminology.Code{{Code: "1", System: "https://test/emptyCS"}},
wantIn: false,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
in, err := lf.AnyInCodeSystem(tc.Codes, tc.URL, tc.Version)
if err != nil {
t.Errorf("In(%v, %v, %v) returned unexpected error: %v", tc.Codes, tc.URL, tc.Version, err)
}
if !cmp.Equal(tc.wantIn, in) {
t.Errorf("In(%v, %v, %v) incorrect. got: %v, want: %v ", tc.Codes, tc.URL, tc.Version, in, tc.wantIn)
}
})
}
}
func testResourceInValueSet(t *testing.T, lf *terminology.LocalFHIRProvider) {
cases := []struct {
name string
URL string
Version string
Codes []terminology.Code
wantIn bool
}{
{
name: "Code not in ValueSet https://test/file1",
URL: "https://test/file1",
Version: "1.0.0",
Codes: []terminology.Code{{System: "system3", Code: "4"}},
wantIn: false,
},
{
name: "Code in ValueSet https://test/file1",
URL: "https://test/file1",
Version: "1.0.0",
Codes: []terminology.Code{{System: "system2", Code: "3"}},
wantIn: true,
},
{
name: "One Code in ValueSet https://test/file1",
URL: "https://test/file1",
Version: "1.0.0",
Codes: []terminology.Code{
{System: "system2", Code: "3"},
{System: "system3", Code: "4"},
},
wantIn: true,
},
{
name: "Code not in ValueSet https://test/file1 v2",
URL: "https://test/file1",
Version: "2.0.0",
Codes: []terminology.Code{{System: "system2", Code: "3"}},
wantIn: false,
},
{
name: "Code not in ValueSet https://test/file1 latest",
URL: "https://test/file1",
Codes: []terminology.Code{{System: "system2", Code: "3"}},
wantIn: false,
},
{
name: "Code in ValueSet https://test/file1 latest",
URL: "https://test/file1",
Codes: []terminology.Code{{System: "system2", Code: "3v2"}},
wantIn: true,
},
{
name: "Code in ValueSet https://test/file4 when CodeSystem with same key exists",
URL: "https://test/file4",
Version: "4.0.0",
Codes: []terminology.Code{{System: "system1", Code: "1"}},
wantIn: true,
},
{
name: "Code not in Empty ValueSet https://test/emptyVS",
URL: "https://test/emptyVS",
Codes: []terminology.Code{{System: "system1", Code: "1"}},
wantIn: false,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
in, err := lf.AnyInValueSet(tc.Codes, tc.URL, tc.Version)
if err != nil {
t.Errorf("In(%v, %v, %v) unexpected error. got: %v", tc.Codes, tc.URL, tc.Version, err)
}
if !cmp.Equal(tc.wantIn, in) {
t.Errorf("In(%v, %v, %v) incorrect. got: %v, want: %v ", tc.Codes, tc.URL, tc.Version, in, tc.wantIn)
}
})
}
}
func TestLocalFHIR_In(t *testing.T) {
testdir := writeTestResources(t)
lf, err := terminology.NewLocalFHIRProvider(testdir)
if err != nil {
t.Fatalf("NewLocalFHIRProvider(%v) unexpected error: %v", testdir, err)
}
testResourceInCodeSystem(t, lf)
testResourceInValueSet(t, lf)
}
func TestInMemoryFHIR_In(t *testing.T) {
imf, err := terminology.NewInMemoryFHIRProvider(testJSONResources)
if err != nil {
t.Fatalf("NewInMemoryFHIRProvider(%v) unexpected error: %v", testJSONResources, err)
}
testResourceInCodeSystem(t, imf)
testResourceInValueSet(t, imf)
}
func testResourceInError(t *testing.T, lf *terminology.LocalFHIRProvider) {
cases := []struct {
name string
ResourceType string
URL string
Version string
Code terminology.Code
wantErr error
}{
{
name: "ErrResourceNotLoaded_MissingURL",
URL: "https://test/file20",
Version: "1.0.0",
wantErr: terminology.ErrResourceNotLoaded,
},
{
name: "ErrResourceNotLoaded_MissingVersion",
URL: "https://test/file1",
Version: "4.0.0",
wantErr: terminology.ErrResourceNotLoaded,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
_, err := lf.AnyInValueSet([]terminology.Code{tc.Code}, tc.URL, tc.Version)
if !errors.Is(err, tc.wantErr) {
t.Errorf("InValueSet(%v, %v) unexpected error. got: %v, want: %v", tc.URL, tc.Version, err, tc.wantErr)
}
_, err = lf.AnyInCodeSystem([]terminology.Code{tc.Code}, tc.URL, tc.Version)
if !errors.Is(err, tc.wantErr) {
t.Errorf("InCodeSystem(%v, %v) unexpected error. got: %v, want: %v", tc.URL, tc.Version, err, tc.wantErr)
}
})
}
}
func TestLocalFHIR_InError(t *testing.T) {
testdir := writeTestResources(t)
lf, err := terminology.NewLocalFHIRProvider(testdir)
if err != nil {
t.Fatalf("NewLocalFHIRProvider(%v) unexpected error: %v", testdir, err)
}
testResourceInError(t, lf)
}
func TestInMemoryFHIR_InError(t *testing.T) {
imf, err := terminology.NewInMemoryFHIRProvider(testJSONResources)
if err != nil {
t.Fatalf("NewInMemoryFHIRProvider(%v) unexpected error: %v", testJSONResources, err)
}
testResourceInError(t, imf)
}
func TestLocalFHIR_NotInitialized(t *testing.T) {
var tp *terminology.LocalFHIRProvider
if _, err := tp.AnyInCodeSystem([]terminology.Code{{"", "", ""}}, "", ""); !errors.Is(err, terminology.ErrNotInitialized) {
t.Errorf("In() on nil provider got unexpected error. got: %v, want: %v", err, terminology.ErrNotInitialized)
}
if _, err := tp.AnyInValueSet([]terminology.Code{{"", "", ""}}, "", ""); !errors.Is(err, terminology.ErrNotInitialized) {
t.Errorf("In() on nil provider got unexpected error. got: %v, want: %v", err, terminology.ErrNotInitialized)
}
if _, err := tp.ExpandValueSet("", ""); !errors.Is(err, terminology.ErrNotInitialized) {
t.Errorf("Expand() on nil provider got unexpected error. got: %v, want: %v", err, terminology.ErrNotInitialized)
}
}
// Test functions for compose ValueSet functionality
func testComposeValueSetExpansion(t *testing.T, provider interface {
ExpandValueSet(valueSetURL, valueSetVersion string) ([]*terminology.Code, error)
AnyInValueSet(codes []terminology.Code, valueSetURL, valueSetVersion string) (bool, error)
}) {
cases := []struct {
name string
valueSetURL string
valueSetVersion string
wantCodes []*terminology.Code
wantErr error
}{
{
name: "Compose ValueSet with multiple includes",
valueSetURL: "https://test/compose-parent",
valueSetVersion: "1.0.0",
wantCodes: []*terminology.Code{
// From file1 (latest version 2.0.0)
{System: "system1", Code: "1v2"},
{System: "system1", Code: "2v2"},
{System: "system2", Code: "3v2"},
// From file2
{System: "system3", Code: "4", Display: "four"},
{System: "system3", Code: "5"},
{System: "system4", Code: "6"},
},
},
{
name: "Compose ValueSet with mixed includes (concepts + valueSets)",
valueSetURL: "https://test/compose-mixed",
valueSetVersion: "1.0.0",
wantCodes: []*terminology.Code{
// Direct concept
{System: "http://snomed.info/sct", Code: "12345", Display: "Direct concept"},
// From file1 (latest version 2.0.0)
{System: "system1", Code: "1v2"},
{System: "system1", Code: "2v2"},
{System: "system2", Code: "3v2"},
},
},
{
name: "Nested compose ValueSet",
valueSetURL: "https://test/compose-nested",
valueSetVersion: "1.0.0",
wantCodes: []*terminology.Code{
// From compose-parent (which includes file1 and file2)
{System: "system1", Code: "1v2"},
{System: "system1", Code: "2v2"},
{System: "system2", Code: "3v2"},
{System: "system3", Code: "4", Display: "four"},
{System: "system3", Code: "5"},
{System: "system4", Code: "6"},
// Direct concept
{System: "http://loinc.org", Code: "LA123", Display: "Nested direct concept"},
},
},
{
name: "Empty compose ValueSet",
valueSetURL: "https://test/compose-empty",
valueSetVersion: "1.0.0",
wantCodes: []*terminology.Code{},
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
codes, err := provider.ExpandValueSet(tc.valueSetURL, tc.valueSetVersion)
if !errors.Is(err, tc.wantErr) {
t.Errorf("ExpandValueSet(%v, %v) unexpected error. got: %v, want: %v", tc.valueSetURL, tc.valueSetVersion, err, tc.wantErr)
}
if diff := cmp.Diff(tc.wantCodes, codes); diff != "" {
t.Errorf("ExpandValueSet(%v, %v) returned diff (-want +got):\n%s", tc.valueSetURL, tc.valueSetVersion, diff)
}
})
}
}
func testComposeValueSetMembership(t *testing.T, provider interface {
AnyInValueSet(codes []terminology.Code, valueSetURL, valueSetVersion string) (bool, error)
}) {
cases := []struct {
name string
URL string
Version string
Codes []terminology.Code
wantIn bool
}{
{
name: "Code in compose parent ValueSet from file1",
URL: "https://test/compose-parent",
Version: "1.0.0",
Codes: []terminology.Code{{System: "system1", Code: "1v2"}},
wantIn: true,
},
{
name: "Code in compose parent ValueSet from file2",
URL: "https://test/compose-parent",
Version: "1.0.0",
Codes: []terminology.Code{{System: "system3", Code: "4"}},
wantIn: true,
},
{
name: "Code not in compose parent ValueSet",
URL: "https://test/compose-parent",
Version: "1.0.0",
Codes: []terminology.Code{{System: "system99", Code: "999"}},
wantIn: false,
},
{
name: "Direct concept in mixed compose ValueSet",
URL: "https://test/compose-mixed",
Version: "1.0.0",
Codes: []terminology.Code{{System: "http://snomed.info/sct", Code: "12345"}},
wantIn: true,
},
{
name: "Included ValueSet code in mixed compose ValueSet",
URL: "https://test/compose-mixed",
Version: "1.0.0",
Codes: []terminology.Code{{System: "system1", Code: "1v2"}},
wantIn: true,
},
{
name: "Code in nested compose ValueSet (from parent)",
URL: "https://test/compose-nested",
Version: "1.0.0",
Codes: []terminology.Code{{System: "system1", Code: "1v2"}},
wantIn: true,
},
{
name: "Direct concept in nested compose ValueSet",
URL: "https://test/compose-nested",
Version: "1.0.0",
Codes: []terminology.Code{{System: "http://loinc.org", Code: "LA123"}},
wantIn: true,
},
{
name: "Code not in empty compose ValueSet",
URL: "https://test/compose-empty",
Version: "1.0.0",
Codes: []terminology.Code{{System: "system1", Code: "1"}},
wantIn: false,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
in, err := provider.AnyInValueSet(tc.Codes, tc.URL, tc.Version)
if err != nil {
t.Errorf("AnyInValueSet(%v, %v, %v) unexpected error: %v", tc.Codes, tc.URL, tc.Version, err)
}
if !cmp.Equal(tc.wantIn, in) {
t.Errorf("AnyInValueSet(%v, %v, %v) incorrect. got: %v, want: %v", tc.Codes, tc.URL, tc.Version, in, tc.wantIn)
}
})
}
}
func testComposeValueSetErrors(t *testing.T, provider interface {
ExpandValueSet(valueSetURL, valueSetVersion string) ([]*terminology.Code, error)
}) {
cases := []struct {
name string
valueSetURL string
valueSetVersion string
wantErr error
}{
{
name: "Compose ValueSet with missing reference",
valueSetURL: "https://test/compose-missing-ref",
valueSetVersion: "1.0.0",
wantErr: terminology.ErrResourceNotLoaded,
},
}
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
_, err := provider.ExpandValueSet(tc.valueSetURL, tc.valueSetVersion)
if !errors.Is(err, tc.wantErr) {
t.Errorf("ExpandValueSet(%v, %v) unexpected error. got: %v, want: %v", tc.valueSetURL, tc.valueSetVersion, err, tc.wantErr)
}
})
}
}
func TestInMemoryFHIRProvider_ComposeValueSets(t *testing.T) {
provider, err := terminology.NewInMemoryFHIRProvider(testJSONResources)
if err != nil {
t.Fatalf("NewInMemoryFHIRProvider(%v) unexpected error: %v", testJSONResources, err)
}
testComposeValueSetExpansion(t, provider)
testComposeValueSetMembership(t, provider)
testComposeValueSetErrors(t, provider)
}
func TestInMemoryFHIRProvider_ComposeNotInitialized(t *testing.T) {
var tp *terminology.LocalFHIRProvider
if _, err := tp.AnyInValueSet([]terminology.Code{{"", "", ""}}, "", ""); !errors.Is(err, terminology.ErrNotInitialized) {
t.Errorf("AnyInValueSet() on nil provider got unexpected error. got: %v, want: %v", err, terminology.ErrNotInitialized)
}
if _, err := tp.ExpandValueSet("", ""); !errors.Is(err, terminology.ErrNotInitialized) {
t.Errorf("ExpandValueSet() on nil provider got unexpected error. got: %v, want: %v", err, terminology.ErrNotInitialized)
}
}
func TestInMemoryFHIRProvider_MultipleNonCircularReferences(t *testing.T) {
// Test data with circular references
circularTestData := []string{
// A -> B and A -> C
`{
"resourceType": "ValueSet",
"id": "https://test/a",
"url": "https://test/a",
"version": "1.0.0",
"compose": {
"include": [
{
"valueSet": ["https://test/b"],
"valueSet": ["https://test/c"]
}
]
}
}`,
// B -> D
`{
"resourceType": "ValueSet",
"id": "https://test/b",
"url": "https://test/b",
"version": "1.0.0",
"compose": {
"include": [
{
"valueSet": ["https://test/d"]
}
]
}
}`,
// C -> D
`{
"resourceType": "ValueSet",
"id": "https://test/c",
"url": "https://test/c",
"version": "1.0.0",
"compose": {
"include": [
{
"valueSet": ["https://test/d"]
}
]
}
}`,
// D
`{
"resourceType": "ValueSet",
"id": "https://test/d",
"url": "https://test/d",
"version": "1.0.0",
"expansion": {
"contains": [
{ "system": "system1", "code": "1" }
]
}
}`,
}
provider, err := terminology.NewInMemoryFHIRProvider(circularTestData)
if err != nil {
t.Fatalf("NewInMemoryFHIRProvider(%v) unexpected error: %v", circularTestData, err)
}
// This should not cause infinite recursion and should return an error or empty result
codes, err := provider.ExpandValueSet("https://test/a", "1.0.0")
if err != nil {
t.Errorf("ExpandValueSet should not return an error")
}
if diff := cmp.Diff(codes, []*terminology.Code{
{System: "system1", Code: "1"},
}); diff != "" {
t.Errorf("ExpandValueSet returned diff (-want +got):\n%s", diff)
}
}
func TestInMemoryFHIRProvider_CircularReference(t *testing.T) {
// Test data with circular references
circularTestData := []string{
`{
"resourceType": "ValueSet",
"id": "https://test/circular-a",
"url": "https://test/circular-a",
"version": "1.0.0",
"compose": {
"include": [
{
"valueSet": ["https://test/circular-b"]
}
]
}
}`,
`{
"resourceType": "ValueSet",
"id": "https://test/circular-b",
"url": "https://test/circular-b",
"version": "1.0.0",
"compose": {
"include": [
{
"valueSet": ["https://test/circular-a"]
}
]
}
}`,
}
provider, err := terminology.NewInMemoryFHIRProvider(circularTestData)
if err != nil {
t.Fatalf("NewInMemoryFHIRProvider(%v) unexpected error: %v", circularTestData, err)
}
// This should not cause infinite recursion and should return an error or empty result
_, err = provider.ExpandValueSet("https://test/circular-a", "1.0.0")
if err == nil {
t.Errorf("ExpandValueSet with circular reference should return an error")
}
}
func TestInMemoryFHIRProvider_DeepNesting(t *testing.T) {
// Test data with deep nesting
deepNestingData := []string{
// Base ValueSet with actual codes
`{
"resourceType": "ValueSet",
"id": "https://test/deep-base",
"url": "https://test/deep-base",
"version": "1.0.0",
"expansion": {
"contains": [
{ "system": "http://test.com", "code": "base-code" }
]
}
}`,
// Level 1
`{
"resourceType": "ValueSet",
"id": "https://test/deep-level1",
"url": "https://test/deep-level1",
"version": "1.0.0",
"compose": {
"include": [
{
"valueSet": ["https://test/deep-base"]
}
]
}
}`,
// Level 2
`{
"resourceType": "ValueSet",
"id": "https://test/deep-level2",
"url": "https://test/deep-level2",
"version": "1.0.0",
"compose": {
"include": [
{
"valueSet": ["https://test/deep-level1"]
}
]
}
}`,
// Level 3
`{
"resourceType": "ValueSet",
"id": "https://test/deep-level3",
"url": "https://test/deep-level3",
"version": "1.0.0",
"compose": {
"include": [
{
"valueSet": ["https://test/deep-level2"]
}
]
}
}`,
}
provider, err := terminology.NewInMemoryFHIRProvider(deepNestingData)
if err != nil {
t.Fatalf("NewInMemoryFHIRProvider(%v) unexpected error: %v", deepNestingData, err)
}
// Should successfully expand through multiple levels
codes, err := provider.ExpandValueSet("https://test/deep-level3", "1.0.0")
if err != nil {
t.Errorf("ExpandValueSet with deep nesting returned unexpected error: %v", err)
}