-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKonnektorServiceAcceptanceTest.java
335 lines (273 loc) · 12 KB
/
KonnektorServiceAcceptanceTest.java
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
package com.oviva.epa.client;
import static com.oviva.epa.client.Export.EXPORT_XML;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.equalTo;
import static org.junit.jupiter.api.Assertions.*;
import com.oviva.epa.client.konn.KonnektorConnectionFactoryBuilder;
import com.oviva.epa.client.model.Card;
import com.oviva.epa.client.model.PinStatus;
import com.oviva.epa.client.model.RecordIdentifier;
import de.gematik.epa.conversion.internal.enumerated.ClassCode;
import de.gematik.epa.conversion.internal.enumerated.ConfidentialityCode;
import de.gematik.epa.conversion.internal.enumerated.EventCode;
import de.gematik.epa.conversion.internal.enumerated.FormatCode;
import de.gematik.epa.conversion.internal.enumerated.HealthcareFacilityCode;
import de.gematik.epa.conversion.internal.enumerated.PracticeSettingCode;
import de.gematik.epa.conversion.internal.enumerated.TypeCode;
import de.gematik.epa.ihe.model.Author;
import de.gematik.epa.ihe.model.document.Document;
import de.gematik.epa.ihe.model.document.DocumentMetadata;
import de.gematik.epa.ihe.model.simple.AuthorInstitution;
import java.io.IOException;
import java.net.URI;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.cert.CertificateException;
import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.List;
import java.util.UUID;
import javax.net.ssl.KeyManager;
import javax.net.ssl.KeyManagerFactory;
import org.apache.commons.io.IOUtils;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
@Disabled
// e2e test to write sample document to our test environment
class KonnektorServiceAcceptanceTest {
// adapt according to what is authorized for your SMC-B testcard,
// when in doubt ask your provider (e.g. RISE)
private static final String KVNR = "X110467329";
private static final String FAKE_KVNR = "A123456780";
// A_22470-05
// https://gemspec.gematik.de/docs/gemSpec/gemSpec_Aktensystem_ePAfueralle/latest/#2.7
private static final String USER_AGENT = "TEST/0.0.1";
private static final String TI_KONNEKTOR_URI = "https://10.156.145.103:443";
private static final String PROXY_ADDRESS = "127.0.0.1";
private static final String KEYSTORE_FILE = "keys/vKon_Client_172.026.002.035.p12";
private static final String KEYSTORE_PASSWORD = "0000";
private static final String WORKPLACE_ID = "a";
private static final String CLIENT_SYSTEM_ID = "c";
private static final String MANDANT_ID = "m";
private static final String USER_ID = "admin";
private static final int PROXY_PORT = 3128;
private static final String MIME_FHIR_XML = "application/fhir+xml";
private static final String MIME_PDF = "application/pdf";
private KonnektorService konnektorService;
@BeforeEach
void testGetCardsInfo() throws Exception {
this.konnektorService = buildService();
var cards = konnektorService.getCardsInfo();
// if this fails, your connection to the connector is faulty
assertThat(cards.size(), equalTo(1));
var card = cards.get(0);
assertThat(card.type(), equalTo(Card.CardType.SMC_B));
assertThat(
card.holderName(),
equalTo("DiGA-Hersteller und Anbieter Prof. Dr. Tina Gräfin CesaTEST-ONLY"));
var pinStatus = konnektorService.verifySmcPin(card.handle());
// if the status is VERIFIABLE, it means the PIN must be reinserted again
assertThat(pinStatus, equalTo(PinStatus.VERIFIED));
}
@Test
@Disabled("rate limited")
void getAuthorizationList() {
// IMPORTANT: This is strictly rate-limited to once a day!
var authorizations = konnektorService.getAuthorizationList();
// check whether our test KVNR is among them
assertTrue(authorizations.stream().anyMatch(a -> a.recordIdentifier().kvnr().equals(KVNR)));
}
@Test
void getAuthorizationState() {
// 1) get home community
var hcid = konnektorService.getHomeCommunityID(KVNR);
var recordIdentifier = new RecordIdentifier(KVNR, hcid);
// 2) get the authorization state
var authorizedApplications = konnektorService.getAuthorizationState(recordIdentifier);
// 3) check whether we're authorized for the ePA
assertTrue(authorizedApplications.stream().anyMatch(a -> "ePA".equals(a.name())));
}
@Test
void getAuthorizationState_notAuthorized() {
// 1) get some valid home community
var hcid = konnektorService.getHomeCommunityID(KVNR);
// 2) create a record identifier we don't have access to
var recordIdentifier = new RecordIdentifier(FAKE_KVNR, hcid);
// 3) get the authorization state
var authorizedApplications = konnektorService.getAuthorizationState(recordIdentifier);
// 4) check whether we're authorized for the ePA
assertTrue(authorizedApplications.isEmpty());
}
@Test
void writePdfDocument() {
var documentId = UUID.randomUUID();
// 1) get home community
var hcid = konnektorService.getHomeCommunityID(KVNR);
var recordIdentifier = new RecordIdentifier(KVNR, hcid);
// 2) read author/telematik ID from SMC-B
var authorInstitution =
konnektorService.getAuthorInstitutions().stream()
.findFirst()
.orElseThrow(() -> new IllegalStateException("no SMC-B found"));
// prepare document
// IMPORTANT: Only PDF/A is allowed!
// See: A_25233 & A_24864-02
// https://gemspec.gematik.de/docs/gemSpec/gemSpec_Aktensystem_ePAfueralle/latest/#A_25233
var document =
buildDocumentPayload(documentId, authorInstitution, hcid, MIME_PDF, loadExamplePdf());
// 3) write the PDF/A-1a document
assertDoesNotThrow(() -> konnektorService.writeDocument(recordIdentifier, document));
}
@Test
void writeDocument() {
var documentId = UUID.randomUUID();
// when
// 1) get home community
var hcid = konnektorService.getHomeCommunityID(KVNR);
var recordIdentifier = new RecordIdentifier(KVNR, hcid);
// 2) read author/telematik ID from SMC-B
var authorInstitution =
konnektorService.getAuthorInstitutions().stream()
.findFirst()
.orElseThrow(() -> new IllegalStateException("no SMC-B found"));
var document =
buildDocumentPayload(
documentId, authorInstitution, hcid, MIME_FHIR_XML, EXPORT_XML.getBytes());
// 3) write the FHIR/MIO document
assertDoesNotThrow(() -> konnektorService.writeDocument(recordIdentifier, document));
}
@Test
void replaceDocument() {
var documentId = UUID.randomUUID();
// when
// 1) get home community
var hcid = konnektorService.getHomeCommunityID(KVNR);
var recordIdentifier = new RecordIdentifier(KVNR, hcid);
// 2) read author/telematik ID from SMC-B
var authorInstitution =
konnektorService.getAuthorInstitutions().stream()
.findFirst()
.orElseThrow(() -> new IllegalStateException("no SMC-B found"));
var document =
buildDocumentPayload(
documentId, authorInstitution, hcid, MIME_FHIR_XML, EXPORT_XML.getBytes());
// 3) write the FHIR/MIO document
assertDoesNotThrow(() -> konnektorService.writeDocument(recordIdentifier, document));
// 4) replace the document
var newDocumentId = UUID.randomUUID();
var newDocument =
buildDocumentPayload(
newDocumentId, authorInstitution, hcid, MIME_FHIR_XML, EXPORT_XML.getBytes());
assertDoesNotThrow(
() -> konnektorService.replaceDocument(recordIdentifier, newDocument, documentId));
}
private byte[] loadExamplePdf() {
try (var is = this.getClass().getClassLoader().getResourceAsStream("example_pdfa.pdf")) {
return is.readAllBytes();
} catch (IOException e) {
fail(e);
}
return new byte[0];
}
/** establish a connection to the TI Konnektor */
private KonnektorService buildService() throws Exception {
// these are the TLS client credentials as received from the Konnektor provider (e.g. RISE)
var keys = loadKeys();
var uri = URI.create(TI_KONNEKTOR_URI);
var cf =
KonnektorConnectionFactoryBuilder.newBuilder()
.clientKeys(keys)
.konnektorUri(uri)
.proxyServer(PROXY_ADDRESS, PROXY_PORT)
.trustAllServers() // currently we don't validate the server's certificate
.build();
var conn = cf.connect();
return KonnektorServiceBuilder.newBuilder()
.connection(conn)
.workplaceId(WORKPLACE_ID)
.clientSystemId(CLIENT_SYSTEM_ID)
.mandantId(MANDANT_ID)
.userId(USER_ID)
.userAgent(USER_AGENT)
.build();
}
private Document buildDocumentPayload(
UUID id,
AuthorInstitution authorInstitution,
String homeCommunityId,
String mimeType,
byte[] contents) {
var repositoryUniqueId = homeCommunityId;
var currentDate = LocalDateTime.now().toString();
// IMPORTANT: Without the urn prefix we can't replace it later
var documentUuid = "urn:uuid:" + id;
return new Document(
contents,
new DocumentMetadata(
List.of(
// Telematik-ID der DiGA^Name der DiGA (Name der
// Verordnungseinheit)^Oviva-AG^^^^^^&<OID für DiGAs, wie in professionOID>&ISO
// https://gemspec.gematik.de/docs/gemSpec/gemSpec_DM_ePA_EU-Pilot/gemSpec_DM_ePA_EU-Pilot_V1.53.1/#2.1.4.3.1
new Author(
authorInstitution.identifier(),
"Oviva Direkt für Adipositas",
"Oviva AG",
"",
"",
"",
// professionOID for DiGA:
// https://gemspec.gematik.de/docs/gemSpec/gemSpec_OID/gemSpec_OID_V3.19.0/#3.5.1.3
// TODO read this from the SMC-B, see
// com.oviva.epa.client.internal.svc.utils.CertificateUtils::getProfessionInfoFromCertificate
"1.2.276.0.76.4.282", // OID
// Der identifier in AuthorInstitution muss eine gültige TelematikId sein, so
// wie sie z. B. auf der SMC-B-Karte enthalten ist
List.of(authorInstitution),
List.of("12^^^&1.3.6.1.4.1.19376.3.276.1.5.13&ISO"),
List.of("25^^^&1.3.6.1.4.1.19376.3.276.1.5.11&ISO"),
List.of("^^Internet^telematik-infrastructure@oviva.com"))),
"AVAILABLE",
List.of(ConfidentialityCode.NORMAL.getValue()),
ClassCode.DURCHFUEHRUNGSPROTOKOLL.getValue(),
"DiGA MIO-Beispiel eines Dokument von Referenzimplementierung geschickt (Simple Roundtrip)",
LocalDateTime.now().minusHours(3),
documentUuid,
List.of(
EventCode.VIRTUAL_ENCOUNTER.getValue(), EventCode.PATIENTEN_MITGEBRACHT.getValue()),
FormatCode.DIGA.getValue(),
"",
HealthcareFacilityCode.PATIENT_AUSSERHALB_BETREUUNG.getValue(),
"de-DE",
"",
mimeType,
PracticeSettingCode.PATIENT_AUSSERHALB_BETREUUNG.getValue(),
List.of(),
null,
null,
contents.length,
"ePA Export Oviva Direkt for Obesity " + currentDate,
TypeCode.PATIENTENEIGENE_DOKUMENTE.getValue(),
documentUuid,
"Oviva_DiGA_Export_" + currentDate,
repositoryUniqueId,
"",
KVNR),
null);
}
private List<KeyManager> loadKeys() throws Exception {
var ks = loadKeyStore();
final KeyManagerFactory keyFactory =
KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
keyFactory.init(ks, KEYSTORE_PASSWORD.toCharArray());
return Arrays.asList(keyFactory.getKeyManagers());
}
private KeyStore loadKeyStore()
throws IOException, KeyStoreException, CertificateException, NoSuchAlgorithmException {
var is = IOUtils.resourceToURL(KEYSTORE_FILE, this.getClass().getClassLoader()).openStream();
var keyStore = KeyStore.getInstance("PKCS12");
keyStore.load(is, KEYSTORE_PASSWORD.toCharArray());
return keyStore;
}
}