-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path07_BuilderPattern.Tests.ps1
More file actions
438 lines (378 loc) · 15.8 KB
/
Copy path07_BuilderPattern.Tests.ps1
File metadata and controls
438 lines (378 loc) · 15.8 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
BeforeAll {
. $PSScriptRoot/07_BuilderPattern.ps1
}
Describe 'CryptoConfig' {
Context 'Basic instantiation' {
It 'Creates with default values' {
$config = [CryptoConfig]::new()
$config.Algorithm | Should -Be 'AES-256-GCM'
$config.KeyBits | Should -Be 256
$config.NonceBits | Should -Be 96
$config.TagBits | Should -Be 128
$config.AuditEnabled | Should -Be $false
$config.MaxOpsPerMinute | Should -Be 1000
$config.KeyDerivation | Should -Be 'PBKDF2-SHA256'
$config.KdfIterations | Should -Be 100000
$config.StaticKey | Should -Be $null
$config.Version | Should -Be '1'
}
It 'ToString() returns formatted string' {
$config = [CryptoConfig]::new()
$str = $config.ToString()
$str | Should -Match '\[AES-256-GCM\]'
$str | Should -Match 'key=256b'
$str | Should -Match 'kdf=PBKDF2-SHA256'
$str | Should -Match 'iter=100000'
$str | Should -Match 'audit=False'
}
}
}
Describe 'CryptoConfigBuilder - Basic Fluent Chain' {
Context 'UseAesGcm method' {
It 'Sets AES-256-GCM with default key size' {
$builder = [CryptoConfigBuilder]::new()
$result = $builder.UseAesGcm(256)
$result | Should -BeOfType ([CryptoConfigBuilder])
$config = $builder.Build()
$config.Algorithm | Should -Be 'AES-256-GCM'
$config.KeyBits | Should -Be 256
}
It 'Sets AES-256-GCM with custom key size' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(128)
$config = $builder.Build()
$config.Algorithm | Should -Be 'AES-256-GCM'
$config.KeyBits | Should -Be 128
}
It 'Supports 192-bit keys' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(192)
$config = $builder.Build()
$config.KeyBits | Should -Be 192
}
}
Context 'WithAudit method' {
It 'Enables audit flag' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithAudit()
$config = $builder.Build()
$config.AuditEnabled | Should -Be $true
}
It 'Returns builder for chaining' {
$builder = [CryptoConfigBuilder]::new()
$result = $builder.WithAudit()
$result | Should -BeOfType ([CryptoConfigBuilder])
}
}
Context 'WithRateLimit method' {
It 'Sets rate limit' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithRateLimit(500)
$config = $builder.Build()
$config.MaxOpsPerMinute | Should -Be 500
}
It 'Returns builder for chaining' {
$builder = [CryptoConfigBuilder]::new()
$result = $builder.WithRateLimit(250)
$result | Should -BeOfType ([CryptoConfigBuilder])
}
}
Context 'WithPbkdf2 method' {
It 'Sets PBKDF2 with custom iterations' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithPbkdf2(200000)
$config = $builder.Build()
$config.KeyDerivation | Should -Be 'PBKDF2-SHA256'
$config.KdfIterations | Should -Be 200000
}
It 'Returns builder for chaining' {
$builder = [CryptoConfigBuilder]::new()
$result = $builder.WithPbkdf2(150000)
$result | Should -BeOfType ([CryptoConfigBuilder])
}
}
Context 'WithStaticKey method' {
It 'Accepts 128-bit key (16 bytes)' {
$key = [byte[]]::new(16)
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithStaticKey($key)
$config = $builder.Build()
$config.StaticKey.Length | Should -Be 16
}
It 'Accepts 192-bit key (24 bytes)' {
$key = [byte[]]::new(24)
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithStaticKey($key)
$config = $builder.Build()
$config.StaticKey.Length | Should -Be 24
}
It 'Accepts 256-bit key (32 bytes)' {
$key = [byte[]]::new(32)
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithStaticKey($key)
$config = $builder.Build()
$config.StaticKey.Length | Should -Be 32
}
It 'Throws on invalid key length (8 bytes)' {
$key = [byte[]]::new(8)
$builder = [CryptoConfigBuilder]::new()
{ $builder.WithStaticKey($key) } | Should -Throw '*128/192/256-bit*'
}
It 'Throws on invalid key length (64 bytes)' {
$key = [byte[]]::new(64)
$builder = [CryptoConfigBuilder]::new()
{ $builder.WithStaticKey($key) } | Should -Throw '*128/192/256-bit*'
}
It 'Returns builder for chaining' {
$builder = [CryptoConfigBuilder]::new()
$result = $builder.WithStaticKey([byte[]]::new(32))
$result | Should -BeOfType ([CryptoConfigBuilder])
}
}
}
Describe 'CryptoConfigBuilder - ECDH Key Exchange' {
Context 'WithEcdhKeyExchange method' {
It 'Sets algorithm to ECDH-P256' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithEcdhKeyExchange()
$config = $builder.Build()
$config.Algorithm | Should -Be 'ECDH-P256'
}
It 'Sets KeyBits to 256' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithEcdhKeyExchange()
$config = $builder.Build()
$config.KeyBits | Should -Be 256
}
It 'Returns builder for chaining' {
$builder = [CryptoConfigBuilder]::new()
$result = $builder.WithEcdhKeyExchange()
$result | Should -BeOfType ([CryptoConfigBuilder])
}
It 'Works with other fluent methods' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithEcdhKeyExchange()
$builder = $builder.WithAudit()
$builder = $builder.WithRateLimit(500)
$config = $builder.Build()
$config.Algorithm | Should -Be 'ECDH-P256'
$config.KeyBits | Should -Be 256
$config.AuditEnabled | Should -Be $true
$config.MaxOpsPerMinute | Should -Be 500
}
}
Context 'ECDH validation in Build()' {
It 'Accepts ECDH-P256 with 256-bit keys' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithEcdhKeyExchange()
$config = $builder.Build()
$config.Algorithm | Should -Be 'ECDH-P256'
$config.KeyBits | Should -Be 256
}
It 'Throws when ECDH-P256 has 128-bit keys' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithEcdhKeyExchange()
# Manually change KeyBits after ECDH setup (simulate invalid state)
$builder._config.KeyBits = 128
{ $builder.Build() } | Should -Throw '*ECDH-P256 requires 256-bit keys*'
}
It 'Throws when ECDH-P256 has 192-bit keys' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithEcdhKeyExchange()
$builder._config.KeyBits = 192
{ $builder.Build() } | Should -Throw '*ECDH-P256 requires 256-bit keys*'
}
It 'Throws when ECDH-P256 has invalid key size (512)' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithEcdhKeyExchange()
$builder._config.KeyBits = 512
{ $builder.Build() } | Should -Throw '*ECDH-P256 requires 256-bit keys*'
}
}
}
Describe 'CryptoConfigBuilder - Build Validation' {
Context 'KDF iterations validation' {
It 'Accepts iterations >= 10000' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithPbkdf2(10000)
$config = $builder.Build()
$config.KdfIterations | Should -Be 10000
}
It 'Accepts high iteration counts' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithPbkdf2(500000)
$config = $builder.Build()
$config.KdfIterations | Should -Be 500000
}
It 'Throws when iterations < 10000' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithPbkdf2(9999)
{ $builder.Build() } | Should -Throw '*PBKDF2 iterations too low*'
}
It 'Throws when iterations = 1000' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithPbkdf2(1000)
{ $builder.Build() } | Should -Throw '*PBKDF2 iterations too low*'
}
It 'Throws when iterations = 0' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithPbkdf2(0)
{ $builder.Build() } | Should -Throw '*PBKDF2 iterations too low*'
}
}
Context 'Key size validation' {
It 'Accepts 128-bit keys' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(128)
$config = $builder.Build()
$config.KeyBits | Should -Be 128
}
It 'Accepts 192-bit keys' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(192)
$config = $builder.Build()
$config.KeyBits | Should -Be 192
}
It 'Accepts 256-bit keys' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(256)
$config = $builder.Build()
$config.KeyBits | Should -Be 256
}
It 'Throws on invalid key size (64)' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(64)
{ $builder.Build() } | Should -Throw '*Invalid key size: 64*'
}
It 'Throws on invalid key size (512)' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(512)
{ $builder.Build() } | Should -Throw '*Invalid key size: 512*'
}
}
}
Describe 'CryptoConfigBuilder - Complete Fluent Chains' {
Context 'Complex AES configuration' {
It 'Builds full AES-256-GCM config with all options' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(256)
$builder = $builder.WithAudit()
$builder = $builder.WithRateLimit(500)
$builder = $builder.WithPbkdf2(200000)
$config = $builder.Build()
$config.Algorithm | Should -Be 'AES-256-GCM'
$config.KeyBits | Should -Be 256
$config.AuditEnabled | Should -Be $true
$config.MaxOpsPerMinute | Should -Be 500
$config.KdfIterations | Should -Be 200000
}
It 'Builds AES with static key' {
$key = [byte[]]::new(32)
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(256)
$builder = $builder.WithStaticKey($key)
$builder = $builder.WithAudit()
$config = $builder.Build()
$config.StaticKey | Should -Not -Be $null
$config.StaticKey.Length | Should -Be 32
}
}
Context 'ECDH configuration' {
It 'Builds complete ECDH config' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithEcdhKeyExchange()
$builder = $builder.WithAudit()
$builder = $builder.WithRateLimit(1500)
$builder = $builder.WithPbkdf2(150000)
$config = $builder.Build()
$config.Algorithm | Should -Be 'ECDH-P256'
$config.KeyBits | Should -Be 256
$config.AuditEnabled | Should -Be $true
$config.MaxOpsPerMinute | Should -Be 1500
$config.KdfIterations | Should -Be 150000
}
It 'ECDH does not accept static key with wrong size' {
# This demonstrates that ECDH config is just metadata;
# actual key exchange would happen at runtime
$key = [byte[]]::new(32)
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.WithEcdhKeyExchange()
$builder = $builder.WithStaticKey($key)
$config = $builder.Build()
$config.Algorithm | Should -Be 'ECDH-P256'
$config.StaticKey.Length | Should -Be 32
}
}
Context 'Method order independence' {
It 'Produces same result with different method order' {
$builder1 = [CryptoConfigBuilder]::new()
$builder1 = $builder1.WithAudit()
$builder1 = $builder1.UseAesGcm(256)
$builder1 = $builder1.WithPbkdf2(150000)
$config1 = $builder1.Build()
$builder2 = [CryptoConfigBuilder]::new()
$builder2 = $builder2.WithPbkdf2(150000)
$builder2 = $builder2.WithAudit()
$builder2 = $builder2.UseAesGcm(256)
$config2 = $builder2.Build()
$config1.Algorithm | Should -Be $config2.Algorithm
$config1.KeyBits | Should -Be $config2.KeyBits
$config1.AuditEnabled | Should -Be $config2.AuditEnabled
$config1.KdfIterations | Should -Be $config2.KdfIterations
}
It 'Later calls override earlier calls' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(128)
$builder = $builder.UseAesGcm(256)
$config = $builder.Build()
$config.KeyBits | Should -Be 256
}
It 'ECDH overrides previous algorithm settings' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(192)
$builder = $builder.WithEcdhKeyExchange()
$config = $builder.Build()
$config.Algorithm | Should -Be 'ECDH-P256'
$config.KeyBits | Should -Be 256
}
}
}
Describe 'CryptoConfigBuilder - Edge Cases' {
Context 'Default behavior' {
It 'Builds with defaults when no methods called' {
$builder = [CryptoConfigBuilder]::new()
$config = $builder.Build()
$config.Algorithm | Should -Be 'AES-256-GCM'
$config.KeyBits | Should -Be 256
$config.KdfIterations | Should -Be 100000
}
It 'Each builder creates independent config' {
$builder1 = [CryptoConfigBuilder]::new()
$builder1 = $builder1.WithAudit()
$builder2 = [CryptoConfigBuilder]::new()
$config1 = $builder1.Build()
$config2 = $builder2.Build()
$config1.AuditEnabled | Should -Be $true
$config2.AuditEnabled | Should -Be $false
}
}
Context 'Multiple Build() calls' {
It 'Build() returns the same config instance each time' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(256)
$builder = $builder.WithAudit()
$config1 = $builder.Build()
$config2 = $builder.Build()
# Should be same reference
[object]::ReferenceEquals($config1, $config2) | Should -Be $true
}
It 'Modifying config after Build() affects future builds' {
$builder = [CryptoConfigBuilder]::new()
$builder = $builder.UseAesGcm(256)
$config1 = $builder.Build()
$config1.AuditEnabled = $true
$config2 = $builder.Build()
$config2.AuditEnabled | Should -Be $true
}
}
}