forked from Mastercard/client-encryption-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFieldLevelEncryptionConfigBuilderTest.java
More file actions
372 lines (348 loc) · 22 KB
/
FieldLevelEncryptionConfigBuilderTest.java
File metadata and controls
372 lines (348 loc) · 22 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
package com.mastercard.developer.encryption;
import com.mastercard.developer.test.TestUtils;
import org.junit.Assert;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import static com.mastercard.developer.encryption.FieldLevelEncryptionConfig.FieldValueEncoding.HEX;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.core.IsEqual.equalTo;
import static org.junit.Assert.assertFalse;
public class FieldLevelEncryptionConfigBuilderTest {
@Rule
public ExpectedException expectedException = ExpectedException.none();
@Test
public void testBuild_Nominal_iv12() throws Exception {
FieldLevelEncryptionConfig config = FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withEncryptionPath("$.payload", "$.encryptedPayload")
.withEncryptionCertificate(TestUtils.getTestEncryptionCertificate())
.withEncryptionCertificateFingerprint("97A2FFE9F0D48960EF31E87FCD7A55BF7843FB4A9EEEF01BDB6032AD6FEF146B")
.withEncryptionKeyFingerprint("F806B26BC4870E26986C70B6590AF87BAF4C2B56BB50622C51B12212DAFF2810")
.withEncryptionCertificateFingerprintFieldName("publicCertificateFingerprint")
.withEncryptionCertificateFingerprintHeaderName("x-public-certificate-fingerprint")
.withEncryptionKeyFingerprintFieldName("publicKeyFingerprint")
.withEncryptionKeyFingerprintHeaderName("x-public-key-fingerprint")
.withDecryptionPath("$.encryptedPayload", "$.payload")
.withDecryptionKey(TestUtils.getTestDecryptionKey())
.withOaepPaddingDigestAlgorithm("SHA-512")
.withOaepPaddingDigestAlgorithmFieldName("oaepPaddingDigestAlgorithm")
.withOaepPaddingDigestAlgorithmHeaderName("x-oaep-padding-digest-algorithm")
.withEncryptedValueFieldName("encryptedValue")
.withEncryptedKeyFieldName("encryptedKey")
.withEncryptedKeyHeaderName("x-encrypted-key")
.withIvFieldName("iv")
.withIvHeaderName("x-iv")
.withFieldValueEncoding(HEX)
.withEncryptionIVSize(12)
.build();
Assert.assertNotNull(config);
Assert.assertEquals(1, config.encryptionPaths.size());
Assert.assertNotNull(config.encryptionCertificate);
Assert.assertEquals("97A2FFE9F0D48960EF31E87FCD7A55BF7843FB4A9EEEF01BDB6032AD6FEF146B", config.encryptionCertificateFingerprint);
Assert.assertEquals("F806B26BC4870E26986C70B6590AF87BAF4C2B56BB50622C51B12212DAFF2810", config.encryptionKeyFingerprint);
Assert.assertEquals("publicCertificateFingerprint", config.encryptionCertificateFingerprintFieldName);
Assert.assertEquals("x-public-certificate-fingerprint", config.encryptionCertificateFingerprintHeaderName);
Assert.assertEquals("publicKeyFingerprint", config.encryptionKeyFingerprintFieldName);
Assert.assertEquals("x-public-key-fingerprint", config.encryptionKeyFingerprintHeaderName);
Assert.assertEquals(1, config.decryptionPaths.size());
Assert.assertNotNull(config.decryptionKey);
Assert.assertEquals("SHA-512", config.oaepPaddingDigestAlgorithm);
Assert.assertEquals("encryptedValue", config.encryptedValueFieldName);
Assert.assertEquals("encryptedKey", config.encryptedKeyFieldName);
Assert.assertEquals("x-encrypted-key", config.encryptedKeyHeaderName);
Assert.assertEquals("iv", config.ivFieldName);
Assert.assertEquals("x-iv", config.ivHeaderName);
Assert.assertEquals("oaepPaddingDigestAlgorithm", config.oaepPaddingDigestAlgorithmFieldName);
Assert.assertEquals("x-oaep-padding-digest-algorithm", config.oaepPaddingDigestAlgorithmHeaderName);
Assert.assertEquals(HEX, config.fieldValueEncoding);
assertThat(config.getIVSize(),equalTo(12));
}
@Test
public void testBuild_Nominal_iv16() throws Exception {
FieldLevelEncryptionConfig config = FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withEncryptionPath("$.payload", "$.encryptedPayload")
.withEncryptionCertificate(TestUtils.getTestEncryptionCertificate())
.withEncryptionCertificateFingerprint("97A2FFE9F0D48960EF31E87FCD7A55BF7843FB4A9EEEF01BDB6032AD6FEF146B")
.withEncryptionKeyFingerprint("F806B26BC4870E26986C70B6590AF87BAF4C2B56BB50622C51B12212DAFF2810")
.withEncryptionCertificateFingerprintFieldName("publicCertificateFingerprint")
.withEncryptionCertificateFingerprintHeaderName("x-public-certificate-fingerprint")
.withEncryptionKeyFingerprintFieldName("publicKeyFingerprint")
.withEncryptionKeyFingerprintHeaderName("x-public-key-fingerprint")
.withDecryptionPath("$.encryptedPayload", "$.payload")
.withDecryptionKey(TestUtils.getTestDecryptionKey())
.withOaepPaddingDigestAlgorithm("SHA-512")
.withOaepPaddingDigestAlgorithmFieldName("oaepPaddingDigestAlgorithm")
.withOaepPaddingDigestAlgorithmHeaderName("x-oaep-padding-digest-algorithm")
.withEncryptedValueFieldName("encryptedValue")
.withEncryptedKeyFieldName("encryptedKey")
.withEncryptedKeyHeaderName("x-encrypted-key")
.withIvFieldName("iv")
.withIvHeaderName("x-iv")
.withFieldValueEncoding(HEX)
.withEncryptionIVSize(16)
.build();
Assert.assertNotNull(config);
Assert.assertEquals(1, config.encryptionPaths.size());
Assert.assertNotNull(config.encryptionCertificate);
Assert.assertEquals("97A2FFE9F0D48960EF31E87FCD7A55BF7843FB4A9EEEF01BDB6032AD6FEF146B", config.encryptionCertificateFingerprint);
Assert.assertEquals("F806B26BC4870E26986C70B6590AF87BAF4C2B56BB50622C51B12212DAFF2810", config.encryptionKeyFingerprint);
Assert.assertEquals("publicCertificateFingerprint", config.encryptionCertificateFingerprintFieldName);
Assert.assertEquals("x-public-certificate-fingerprint", config.encryptionCertificateFingerprintHeaderName);
Assert.assertEquals("publicKeyFingerprint", config.encryptionKeyFingerprintFieldName);
Assert.assertEquals("x-public-key-fingerprint", config.encryptionKeyFingerprintHeaderName);
Assert.assertEquals(1, config.decryptionPaths.size());
Assert.assertNotNull(config.decryptionKey);
Assert.assertEquals("SHA-512", config.oaepPaddingDigestAlgorithm);
Assert.assertEquals("encryptedValue", config.encryptedValueFieldName);
Assert.assertEquals("encryptedKey", config.encryptedKeyFieldName);
Assert.assertEquals("x-encrypted-key", config.encryptedKeyHeaderName);
Assert.assertEquals("iv", config.ivFieldName);
Assert.assertEquals("x-iv", config.ivHeaderName);
Assert.assertEquals("oaepPaddingDigestAlgorithm", config.oaepPaddingDigestAlgorithmFieldName);
Assert.assertEquals("x-oaep-padding-digest-algorithm", config.oaepPaddingDigestAlgorithmHeaderName);
Assert.assertEquals(HEX, config.fieldValueEncoding);
assertThat(config.getIVSize(),equalTo(16));
}
@Test
public void testBuild_FailedIV() throws Exception {
try {
FieldLevelEncryptionConfig config = FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withEncryptionPath("$.payload", "$.encryptedPayload")
.withEncryptionCertificate(TestUtils.getTestEncryptionCertificate())
.withEncryptionCertificateFingerprint("97A2FFE9F0D48960EF31E87FCD7A55BF7843FB4A9EEEF01BDB6032AD6FEF146B")
.withEncryptionKeyFingerprint("F806B26BC4870E26986C70B6590AF87BAF4C2B56BB50622C51B12212DAFF2810")
.withEncryptionCertificateFingerprintFieldName("publicCertificateFingerprint")
.withEncryptionCertificateFingerprintHeaderName("x-public-certificate-fingerprint")
.withEncryptionKeyFingerprintFieldName("publicKeyFingerprint")
.withEncryptionKeyFingerprintHeaderName("x-public-key-fingerprint")
.withDecryptionPath("$.encryptedPayload", "$.payload")
.withDecryptionKey(TestUtils.getTestDecryptionKey())
.withOaepPaddingDigestAlgorithm("SHA-512")
.withOaepPaddingDigestAlgorithmFieldName("oaepPaddingDigestAlgorithm")
.withOaepPaddingDigestAlgorithmHeaderName("x-oaep-padding-digest-algorithm")
.withEncryptedValueFieldName("encryptedValue")
.withEncryptedKeyFieldName("encryptedKey")
.withEncryptedKeyHeaderName("x-encrypted-key")
.withIvFieldName("iv")
.withIvHeaderName("x-iv")
.withFieldValueEncoding(HEX)
.withEncryptionIVSize(23)
.build();
assertFalse("It should raise an exception, but it didn't", true);
} catch ( IllegalArgumentException e) {
assertThat(e.getMessage(), equalTo("Supported IV Sizes are either 12 or 16!"));
}
}
@Test
public void testBuild_ResultShouldBeAssignableToGenericEncryptionConfig() throws Exception {
EncryptionConfig config = FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withEncryptionPath("$.payload", "$.encryptedPayload")
.withEncryptionCertificate(TestUtils.getTestEncryptionCertificate())
.withEncryptionCertificateFingerprint("97A2FFE9F0D48960EF31E87FCD7A55BF7843FB4A9EEEF01BDB6032AD6FEF146B")
.withEncryptionKeyFingerprint("F806B26BC4870E26986C70B6590AF87BAF4C2B56BB50622C51B12212DAFF2810")
.withEncryptionCertificateFingerprintFieldName("publicCertificateFingerprint")
.withEncryptionCertificateFingerprintHeaderName("x-public-certificate-fingerprint")
.withEncryptionKeyFingerprintFieldName("publicKeyFingerprint")
.withEncryptionKeyFingerprintHeaderName("x-public-key-fingerprint")
.withDecryptionPath("$.encryptedPayload", "$.payload")
.withDecryptionKey(TestUtils.getTestDecryptionKey())
.withOaepPaddingDigestAlgorithm("SHA-512")
.withOaepPaddingDigestAlgorithmFieldName("oaepPaddingDigestAlgorithm")
.withOaepPaddingDigestAlgorithmHeaderName("x-oaep-padding-digest-algorithm")
.withEncryptedValueFieldName("encryptedValue")
.withEncryptedKeyFieldName("encryptedKey")
.withEncryptedKeyHeaderName("x-encrypted-key")
.withIvFieldName("iv")
.withIvHeaderName("x-iv")
.withFieldValueEncoding(HEX)
.build();
Assert.assertNotNull(config);
}
@Test
public void testBuild_ShouldComputeCertificateAndKeyFingerprints_WhenFingerprintsNotSet() throws Exception {
FieldLevelEncryptionConfig config = TestUtils.getTestFieldLevelEncryptionConfigBuilder()
.withEncryptionCertificateFingerprint(null)
.withEncryptionKeyFingerprint(null)
.withEncryptionCertificate(TestUtils.getTestEncryptionCertificate())
.withDecryptionKey(TestUtils.getTestDecryptionKey())
.build();
Assert.assertEquals("761b003c1eade3a5490e5000d37887baa5e6ec0e226c07706e599451fc032a79", config.encryptionKeyFingerprint);
Assert.assertEquals("80810fc13a8319fcf0e2ec322c82a4c304b782cc3ce671176343cfe8160c2279", config.encryptionCertificateFingerprint);
}
@Test
public void testBuild_ShouldBuild_WhenHavingWildcardPaths() throws Exception {
FieldLevelEncryptionConfig config = FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withEncryptionPath("$.encryptedPayloads[*]", "$.payload[*]")
.withEncryptionCertificate(TestUtils.getTestEncryptionCertificate())
.withEncryptionCertificateFingerprint("97A2FFE9F0D48960EF31E87FCD7A55BF7843FB4A9EEEF01BDB6032AD6FEF146B")
.withEncryptionKeyFingerprint("F806B26BC4870E26986C70B6590AF87BAF4C2B56BB50622C51B12212DAFF2810")
.withEncryptionCertificateFingerprintFieldName("publicCertificateFingerprint")
.withEncryptionCertificateFingerprintHeaderName("x-public-certificate-fingerprint")
.withEncryptionKeyFingerprintFieldName("publicKeyFingerprint")
.withEncryptionKeyFingerprintHeaderName("x-public-key-fingerprint")
.withDecryptionPath("$.encryptedPayloads[*]", "$.payload[*]")
.withDecryptionKey(TestUtils.getTestDecryptionKey())
.withOaepPaddingDigestAlgorithm("SHA-512")
.withOaepPaddingDigestAlgorithmFieldName("oaepPaddingDigestAlgorithm")
.withOaepPaddingDigestAlgorithmHeaderName("x-oaep-padding-digest-algorithm")
.withEncryptedValueFieldName("encryptedValue")
.withEncryptedKeyFieldName("encryptedKey")
.withEncryptedKeyHeaderName("x-encrypted-key")
.withIvFieldName("iv")
.withIvHeaderName("x-iv")
.withFieldValueEncoding(HEX)
.build();
Assert.assertNotNull(config);
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenNotHavingWildcardOnBothDecryptionPaths() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("JSON paths for decryption with wildcard must both contain a wildcard!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withDecryptionPath("$.encryptedPayloads[*]", "$.payload")
.withDecryptionKey(TestUtils.getTestDecryptionKey())
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenMultipleWildcardsOnDecryptionPaths() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("JSON paths for decryption with can only contain one wildcard!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withDecryptionPath("$.encryptedPayloads[*]field1[*]subField", "$.payload[*]field1[*]encryptedSubField")
.withDecryptionKey(TestUtils.getTestDecryptionKey())
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenMissingDecryptionKey() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("Can't decrypt without decryption key!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withDecryptionPath("$.encryptedPayload", "$.payload")
.withOaepPaddingDigestAlgorithm("SHA-512")
.withEncryptedValueFieldName("encryptedValue")
.withEncryptedKeyFieldName("encryptedKey")
.withIvFieldName("iv")
.withFieldValueEncoding(HEX)
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenNotHavingWildcardOnBothEncryptionPaths() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("JSON paths for encryption with wildcard must both contain a wildcard!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withEncryptionPath("$.encryptedPayloads[*]", "$.payload")
.withEncryptionCertificate(TestUtils.getTestEncryptionCertificate())
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenMultipleWildcardsOnEncryptionPaths() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("JSON paths for encryption with can only contain one wildcard!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withEncryptionPath("$.encryptedPayloads[*]field1[*]subField", "$.payload[*]field1[*]encryptedSubField")
.withEncryptionCertificate(TestUtils.getTestEncryptionCertificate())
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenMissingEncryptionCertificate() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("Can't encrypt without encryption key!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withEncryptionPath("$.payload", "$.encryptedPayload")
.withOaepPaddingDigestAlgorithm("SHA-512")
.withEncryptedValueFieldName("encryptedValue")
.withEncryptedKeyFieldName("encryptedKey")
.withIvFieldName("iv")
.withFieldValueEncoding(HEX)
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenMissingOaepPaddingDigestAlgorithm() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("The digest algorithm for OAEP cannot be null!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withEncryptedValueFieldName("encryptedValue")
.withEncryptedKeyFieldName("encryptedKey")
.withIvFieldName("iv")
.withFieldValueEncoding(HEX)
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenUnsupportedOaepPaddingDigestAlgorithm() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("Unsupported OAEP digest algorithm: SHA-720!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withOaepPaddingDigestAlgorithm("SHA-720")
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenMissingEncryptedValueFieldName() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("Encrypted value field name cannot be null!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withOaepPaddingDigestAlgorithm("SHA-512")
.withEncryptedKeyFieldName("encryptedKey")
.withIvFieldName("iv")
.withFieldValueEncoding(HEX)
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenMissingBothEncryptedKeyFieldNameAndHeaderName() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("At least one of encrypted key field name or encrypted key header name must be set!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withOaepPaddingDigestAlgorithm("SHA-512")
.withEncryptedValueFieldName("encryptedValue")
.withIvFieldName("iv")
.withFieldValueEncoding(HEX)
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenMissingBothIvFieldNameAndHeaderName() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("At least one of IV field name or IV header name must be set!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withOaepPaddingDigestAlgorithm("SHA-512")
.withEncryptedValueFieldName("encryptedValue")
.withEncryptedKeyFieldName("encryptedKey")
.withFieldValueEncoding(HEX)
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenMissingFieldValueEncoding() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("Value encoding for fields and headers cannot be null!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withOaepPaddingDigestAlgorithm("SHA-512")
.withEncryptedValueFieldName("encryptedValue")
.withEncryptedKeyFieldName("encryptedKey")
.withIvFieldName("iv")
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenEncryptedKeyAndIvHeaderNamesNotBothSetOrUnset() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("IV header name and encrypted key header name must be both set or both unset!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withOaepPaddingDigestAlgorithm("SHA-512")
.withEncryptedValueFieldName("encryptedValue")
.withEncryptedKeyHeaderName("x-encrypted-key")
.withEncryptedKeyFieldName("encryptedKey")
.withIvFieldName("iv")
.withFieldValueEncoding(HEX)
.build();
}
@Test
public void testBuild_ShouldThrowIllegalArgumentException_WhenEncryptedKeyAndIvFieldNamesNotBothSetOrUnset() throws Exception {
expectedException.expect(IllegalArgumentException.class);
expectedException.expectMessage("IV field name and encrypted key field name must be both set or both unset!");
FieldLevelEncryptionConfigBuilder.aFieldLevelEncryptionConfig()
.withOaepPaddingDigestAlgorithm("SHA-512")
.withEncryptedValueFieldName("encryptedValue")
.withEncryptedKeyFieldName("encryptedKey")
.withEncryptedKeyHeaderName("x-encrypted-key")
.withIvHeaderName("x-iv")
.withFieldValueEncoding(HEX)
.build();
}
}