forked from ohs-foundation/kotlin-fhirpath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComparableTest.kt
More file actions
82 lines (72 loc) · 2.45 KB
/
Copy pathComparableTest.kt
File metadata and controls
82 lines (72 loc) · 2.45 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
/*
* Copyright 2026 Open Health Stack Foundation
*
* 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 dev.ohs.fhir.fhirpath
import dev.ohs.fhir.model.r4.Resource
import kotlin.test.Test
import kotlin.test.assertEquals
import kotlinx.serialization.json.Json
private val fhirPathEngine = FhirPathEngine.forR4()
private val observation: Resource =
Json { ignoreUnknownKeys = true }
.decodeFromString(
"""{"resourceType": "Observation", "status": "final", "code": {"text": "weight"},
"valueQuantity": {"value": 80, "unit": "kg", "system": "http://unitsofmeasure.org",
"code": "kg"}}"""
)
class ComparableTest {
@Test
fun `mass units are comparable`() {
assertEquals(
listOf(true),
fhirPathEngine.evaluateExpression("(1 'kg').comparable(1 '[lb_av]')", null).toList(),
)
}
@Test
fun `identical unknown units are comparable`() {
assertEquals(
listOf(true),
fhirPathEngine.evaluateExpression("(1 '[s]').comparable(1 '[s]')", null).toList(),
)
}
@Test
fun `navigated quantity element works as input`() {
assertEquals(
listOf(true),
fhirPathEngine.evaluateExpression("value.comparable(1 'g')", observation).toList(),
)
assertEquals(
listOf(false),
fhirPathEngine.evaluateExpression("value.comparable(1 's')", observation).toList(),
)
}
@Test
fun `calendar year is not comparable to the UCUM year`() {
// Matches the comparison behavior in the published spec: `1 year > 1 'a'` is empty because
// calendar durations above seconds are not comparable to definite durations
// (https://hl7.org/fhirpath/N1/#time-valued-quantities).
assertEquals(
listOf(false),
fhirPathEngine.evaluateExpression("(1 year).comparable(1 'a')", null).toList(),
)
}
@Test
fun `empty input returns empty`() {
assertEquals(
emptyList(),
fhirPathEngine.evaluateExpression("{}.comparable(1 'kg')", null).toList(),
)
}
}