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
|
<?php
/**
* Tests for SimpleSAML_Configuration
*/
class Test_SimpleSAML_Configuration extends PHPUnit_Framework_TestCase
{
/**
* Test SimpleSAML_Configuration::getVersion()
*/
public function testGetVersion() {
$c = SimpleSAML_Configuration::getOptionalConfig();
$this->assertTrue(is_string($c->getVersion()));
}
/**
* Test that the default instance fails to load even if we previously loaded another instance.
* @expectedException \SimpleSAML\Error\CriticalConfigurationError
*/
public function testLoadDefaultInstance()
{
SimpleSAML_Configuration::loadFromArray(array('key' => 'value'), '', 'dummy');
SimpleSAML_Configuration::getInstance();
}
/**
* Test that after a \SimpleSAML\Error\CriticalConfigurationError exception, a basic, self-survival configuration
* is loaded.
*/
public function testCriticalConfigurationError()
{
$c = SimpleSAML_Configuration::getInstance();
$this->assertNotEmpty($c->toArray());
}
/**
* Test SimpleSAML_Configuration::getValue()
*/
public function testGetValue() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'exists_true' => true,
'exists_null' => null,
));
$this->assertEquals($c->getValue('missing'), null);
$this->assertEquals($c->getValue('missing', true), true);
$this->assertEquals($c->getValue('missing', true), true);
$this->assertEquals($c->getValue('exists_true'), true);
$this->assertEquals($c->getValue('exists_null'), null);
$this->assertEquals($c->getValue('exists_null', false), null);
}
/**
* Test SimpleSAML_Configuration::getValue(), REQUIRED_OPTION flag.
* @expectedException Exception
*/
public function testGetValueRequired() {
$c = SimpleSAML_Configuration::loadFromArray(array());
$c->getValue('missing', SimpleSAML_Configuration::REQUIRED_OPTION);
}
/**
* Test SimpleSAML_Configuration::hasValue()
*/
public function testHasValue() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'exists_true' => true,
'exists_null' => null,
));
$this->assertEquals($c->hasValue('missing'), false);
$this->assertEquals($c->hasValue('exists_true'), true);
$this->assertEquals($c->hasValue('exists_null'), true);
}
/**
* Test SimpleSAML_Configuration::hasValue()
*/
public function testHasValueOneOf() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'exists_true' => true,
'exists_null' => null,
));
$this->assertEquals($c->hasValueOneOf(array()), false);
$this->assertEquals($c->hasValueOneOf(array('missing')), false);
$this->assertEquals($c->hasValueOneOf(array('exists_true')), true);
$this->assertEquals($c->hasValueOneOf(array('exists_null')), true);
$this->assertEquals($c->hasValueOneOf(array('missing1', 'missing2')), false);
$this->assertEquals($c->hasValueOneOf(array('exists_true', 'missing')), true);
$this->assertEquals($c->hasValueOneOf(array('missing', 'exists_true')), true);
}
/**
* Test SimpleSAML_Configuration::getBaseURL()
*/
public function testGetBaseURL() {
$c = SimpleSAML_Configuration::loadFromArray(array());
$this->assertEquals($c->getBaseURL(), 'simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'simplesaml/'));
$this->assertEquals($c->getBaseURL(), 'simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => '/simplesaml/'));
$this->assertEquals($c->getBaseURL(), 'simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'path/to/simplesaml/'));
$this->assertEquals($c->getBaseURL(), 'path/to/simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => '/path/to/simplesaml/'));
$this->assertEquals($c->getBaseURL(), 'path/to/simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'https://example.org/ssp/'));
$this->assertEquals($c->getBaseURL(), 'ssp/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'https://example.org/'));
$this->assertEquals($c->getBaseURL(), '');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'http://example.org/ssp/'));
$this->assertEquals($c->getBaseURL(), 'ssp/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => ''));
$this->assertEquals($c->getBaseURL(), '');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => '/'));
$this->assertEquals($c->getBaseURL(), '');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'simplesaml'));
$this->assertEquals($c->getBaseURL(), 'simplesaml/');
}
/**
* Test SimpleSAML_Configuration::getBasePath()
*/
public function testGetBasePath() {
$c = SimpleSAML_Configuration::loadFromArray(array());
$this->assertEquals($c->getBasePath(), '/simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'simplesaml/'));
$this->assertEquals($c->getBasePath(), '/simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => '/simplesaml/'));
$this->assertEquals($c->getBasePath(), '/simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'simplesaml'));
$this->assertEquals($c->getBasePath(), '/simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => '/simplesaml'));
$this->assertEquals($c->getBasePath(), '/simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'path/to/simplesaml/'));
$this->assertEquals($c->getBasePath(), '/path/to/simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => '/path/to/simplesaml/'));
$this->assertEquals($c->getBasePath(), '/path/to/simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => '/path/to/simplesaml'));
$this->assertEquals($c->getBasePath(), '/path/to/simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'https://example.org/ssp/'));
$this->assertEquals($c->getBasePath(), '/ssp/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'https://example.org/'));
$this->assertEquals($c->getBasePath(), '/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'http://example.org/ssp/'));
$this->assertEquals($c->getBasePath(), '/ssp/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'http://example.org/ssp/simplesaml'));
$this->assertEquals($c->getBasePath(), '/ssp/simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'http://example.org/ssp/simplesaml/'));
$this->assertEquals($c->getBasePath(), '/ssp/simplesaml/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => ''));
$this->assertEquals($c->getBasePath(), '/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => '/'));
$this->assertEquals($c->getBasePath(), '/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'https://example.org:8443'));
$this->assertEquals($c->getBasePath(), '/');
$c = SimpleSAML_Configuration::loadFromArray(array('baseurlpath' => 'https://example.org:8443/'));
$this->assertEquals($c->getBasePath(), '/');
}
/**
* Test SimpleSAML_Configuration::resolvePath()
*/
public function testResolvePath() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'basedir' => '/basedir/',
));
$this->assertEquals($c->resolvePath(null), null);
$this->assertEquals($c->resolvePath('/otherdir'), '/otherdir');
$this->assertEquals($c->resolvePath('relativedir'), '/basedir/relativedir');
$this->assertEquals($c->resolvePath('slash/'), '/basedir/slash');
$this->assertEquals($c->resolvePath('slash//'), '/basedir/slash');
}
/**
* Test SimpleSAML_Configuration::getPathValue()
*/
public function testGetPathValue() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'basedir' => '/basedir/',
'path_opt' => 'path',
'slashes_opt' => 'slashes//',
));
$this->assertEquals($c->getPathValue('missing'), null);
$this->assertEquals($c->getPathValue('path_opt'), '/basedir/path/');
$this->assertEquals($c->getPathValue('slashes_opt'), '/basedir/slashes/');
}
/**
* Test SimpleSAML_Configuration::getBaseDir()
*/
public function testGetBaseDir() {
$c = SimpleSAML_Configuration::loadFromArray(array());
$this->assertEquals($c->getBaseDir(), dirname(dirname(dirname(dirname(__FILE__)))) . '/');
$c = SimpleSAML_Configuration::loadFromArray(array(
'basedir' => '/basedir',
));
$this->assertEquals($c->getBaseDir(), '/basedir/');
$c = SimpleSAML_Configuration::loadFromArray(array(
'basedir' => '/basedir/',
));
$this->assertEquals($c->getBaseDir(), '/basedir/');
}
/**
* Test SimpleSAML_Configuration::getBoolean()
*/
public function testGetBoolean() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'true_opt' => true,
'false_opt' => false,
));
$this->assertEquals($c->getBoolean('missing_opt', '--missing--'), '--missing--');
$this->assertEquals($c->getBoolean('true_opt', '--missing--'), true);
$this->assertEquals($c->getBoolean('false_opt', '--missing--'), false);
}
/**
* Test SimpleSAML_Configuration::getBoolean() missing option
* @expectedException Exception
*/
public function testGetBooleanMissing() {
$c = SimpleSAML_Configuration::loadFromArray(array());
$c->getBoolean('missing_opt');
}
/**
* Test SimpleSAML_Configuration::getBoolean() wrong option
* @expectedException Exception
*/
public function testGetBooleanWrong() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'wrong' => 'true',
));
$c->getBoolean('wrong');
}
/**
* Test SimpleSAML_Configuration::getString()
*/
public function testGetString() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'str_opt' => 'Hello World!',
));
$this->assertEquals($c->getString('missing_opt', '--missing--'), '--missing--');
$this->assertEquals($c->getString('str_opt', '--missing--'), 'Hello World!');
}
/**
* Test SimpleSAML_Configuration::getString() missing option
* @expectedException Exception
*/
public function testGetStringMissing() {
$c = SimpleSAML_Configuration::loadFromArray(array());
$c->getString('missing_opt');
}
/**
* Test SimpleSAML_Configuration::getString() wrong option
* @expectedException Exception
*/
public function testGetStringWrong() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'wrong' => false,
));
$c->getString('wrong');
}
/**
* Test SimpleSAML_Configuration::getInteger()
*/
public function testGetInteger() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'int_opt' => 42,
));
$this->assertEquals($c->getInteger('missing_opt', '--missing--'), '--missing--');
$this->assertEquals($c->getInteger('int_opt', '--missing--'), 42);
}
/**
* Test SimpleSAML_Configuration::getInteger() missing option
* @expectedException Exception
*/
public function testGetIntegerMissing() {
$c = SimpleSAML_Configuration::loadFromArray(array());
$c->getInteger('missing_opt');
}
/**
* Test SimpleSAML_Configuration::getInteger() wrong option
* @expectedException Exception
*/
public function testGetIntegerWrong() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'wrong' => '42',
));
$c->getInteger('wrong');
}
/**
* Test SimpleSAML_Configuration::getIntegerRange()
*/
public function testGetIntegerRange() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'int_opt' => 42,
));
$this->assertEquals($c->getIntegerRange('missing_opt', 0, 100, '--missing--'), '--missing--');
$this->assertEquals($c->getIntegerRange('int_opt', 0, 100), 42);
}
/**
* Test SimpleSAML_Configuration::getIntegerRange() below limit
* @expectedException Exception
*/
public function testGetIntegerRangeBelow() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'int_opt' => 9,
));
$this->assertEquals($c->getIntegerRange('int_opt', 10, 100), 42);
}
/**
* Test SimpleSAML_Configuration::getIntegerRange() above limit
* @expectedException Exception
*/
public function testGetIntegerRangeAbove() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'int_opt' => 101,
));
$this->assertEquals($c->getIntegerRange('int_opt', 10, 100), 42);
}
/**
* Test SimpleSAML_Configuration::getValueValidate()
*/
public function testGetValueValidate() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => 'b',
));
$this->assertEquals($c->getValueValidate('missing_opt', array('a', 'b', 'c'), '--missing--'), '--missing--');
$this->assertEquals($c->getValueValidate('opt', array('a', 'b', 'c')), 'b');
}
/**
* Test SimpleSAML_Configuration::getValueValidate() wrong option
* @expectedException Exception
*/
public function testGetValueValidateWrong() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => 'd',
));
$c->getValueValidate('opt', array('a', 'b', 'c'));
}
/**
* Test SimpleSAML_Configuration::getArray()
*/
public function testGetArray() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => array('a', 'b', 'c'),
));
$this->assertEquals($c->getArray('missing_opt', '--missing--'), '--missing--');
$this->assertEquals($c->getArray('opt'), array('a', 'b', 'c'));
}
/**
* Test SimpleSAML_Configuration::getArray() wrong option
* @expectedException Exception
*/
public function testGetArrayWrong() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => 'not_an_array',
));
$c->getArray('opt');
}
/**
* Test SimpleSAML_Configuration::getArrayize()
*/
public function testGetArrayize() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => array('a', 'b', 'c'),
'opt_int' => 42,
'opt_str' => 'string',
));
$this->assertEquals($c->getArrayize('missing_opt', '--missing--'), '--missing--');
$this->assertEquals($c->getArrayize('opt'), array('a', 'b', 'c'));
$this->assertEquals($c->getArrayize('opt_int'), array(42));
$this->assertEquals($c->getArrayize('opt_str'), array('string'));
}
/**
* Test SimpleSAML_Configuration::getArrayizeString()
*/
public function testGetArrayizeString() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => array('a', 'b', 'c'),
'opt_str' => 'string',
));
$this->assertEquals($c->getArrayizeString('missing_opt', '--missing--'), '--missing--');
$this->assertEquals($c->getArrayizeString('opt'), array('a', 'b', 'c'));
$this->assertEquals($c->getArrayizeString('opt_str'), array('string'));
}
/**
* Test SimpleSAML_Configuration::getArrayizeString() option with an array that contains something that isn't a string.
* @expectedException Exception
*/
public function testGetArrayizeStringWrongValue() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => array('a', 'b', 42),
));
$c->getArrayizeString('opt');
}
/**
* Test SimpleSAML_Configuration::getConfigItem()
*/
public function testGetConfigItem() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => array('a' => 42),
));
$this->assertEquals($c->getConfigItem('missing_opt', '--missing--'), '--missing--');
$opt = $c->getConfigItem('opt');
$this->assertInstanceOf('SimpleSAML_Configuration', $opt);
$this->assertEquals($opt->getValue('a'), 42);
}
/**
* Test SimpleSAML_Configuration::getConfigItem() wrong option
* @expectedException Exception
*/
public function testGetConfigItemWrong() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => 'not_an_array',
));
$c->getConfigItem('opt');
}
/**
* Test SimpleSAML_Configuration::getConfigList()
*/
public function testGetConfigList() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opts' => array(
'a' => array('opt1' => 'value1'),
'b' => array('opt2' => 'value2'),
),
));
$this->assertEquals($c->getConfigList('missing_opt', '--missing--'), '--missing--');
$opts = $c->getConfigList('opts');
$this->assertInternalType('array', $opts);
$this->assertEquals(array_keys($opts), array('a', 'b'));
$this->assertInstanceOf('SimpleSAML_Configuration', $opts['a']);
$this->assertEquals($opts['a']->getValue('opt1'), 'value1');
$this->assertInstanceOf('SimpleSAML_Configuration', $opts['b']);
$this->assertEquals($opts['b']->getValue('opt2'), 'value2');
}
/**
* Test SimpleSAML_Configuration::getConfigList() wrong option
* @expectedException Exception
*/
public function testGetConfigListWrong() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => 'not_an_array',
));
$c->getConfigList('opt');
}
/**
* Test SimpleSAML_Configuration::getConfigList() with an array of wrong options.
* @expectedException Exception
*/
public function testGetConfigListWrongArrayValues()
{
$c = SimpleSAML_Configuration::loadFromArray(array(
'opts' => array(
'a',
'b',
),
));
$c->getConfigList('opts');
}
/**
* Test SimpleSAML_Configuration::getOptions()
*/
public function testGetOptions() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'a' => true,
'b' => null,
));
$this->assertEquals($c->getOptions(), array('a', 'b'));
}
/**
* Test SimpleSAML_Configuration::toArray()
*/
public function testToArray() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'a' => true,
'b' => null,
));
$this->assertEquals($c->toArray(), array('a' => true, 'b' => null));
}
/**
* Test SimpleSAML_Configuration::getDefaultEndpoint().
*
* Iterate over all different valid definitions of endpoints and check if the expected output is produced.
*/
public function testGetDefaultEndpoint()
{
/*
* First we run the full set of tests covering all possible configurations for indexed endpoint types,
* basically AssertionConsumerService and ArtifactResolutionService. Since both are the same, we just run the
* tests for AssertionConsumerService.
*/
$acs_eps = array(
// just a string with the location
'https://example.com/endpoint.php',
// an array of strings with location of different endpoints
array(
'https://www1.example.com/endpoint.php',
'https://www2.example.com/endpoint.php',
),
// define location and binding
array(
array(
'Location' => 'https://example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_POST,
),
),
// define the ResponseLocation too
array(
array(
'Location' => 'https://example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_POST,
'ResponseLocation' => 'https://example.com/endpoint.php',
),
),
// make sure indexes are NOT taken into account (they just identify endpoints)
array(
array(
'index' => 1,
'Location' => 'https://www1.example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_REDIRECT,
),
array(
'index' => 2,
'Location' => 'https://www2.example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_POST,
),
),
// make sure isDefault has priority over indexes
array(
array(
'index' => 1,
'Location' => 'https://www2.example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_POST,
),
array(
'index' => 2,
'isDefault' => true,
'Location' => 'https://www1.example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_REDIRECT,
),
),
// make sure endpoints with invalid bindings are ignored and those marked as NOT default are still used
array(
array(
'index' => 1,
'Location' => 'https://www1.example.com/endpoint.php',
'Binding' => 'invalid_binding',
),
array(
'index' => 2,
'isDefault' => false,
'Location' => 'https://www2.example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_POST,
),
),
);
$acs_expected_eps = array(
// output should be completed with the default binding (HTTP-POST for ACS)
array(
'Location' => 'https://example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_POST,
),
// we should just get the first endpoint with the default binding
array(
'Location' => 'https://www1.example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_POST,
),
// if we specify the binding, we should get it back
array(
'Location' => 'https://example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_POST
),
// if we specify ResponseLocation, we should get it back too
array(
'Location' => 'https://example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_POST,
'ResponseLocation' => 'https://example.com/endpoint.php',
),
// indexes must NOT be taken into account, order is the only thing that matters here
array(
'Location' => 'https://www1.example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_REDIRECT,
'index' => 1,
),
// isDefault must have higher priority than indexes
array(
'Location' => 'https://www1.example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_REDIRECT,
'isDefault' => true,
'index' => 2,
),
// the first valid enpoint should be used even if it's marked as NOT default
array(
'index' => 2,
'isDefault' => false,
'Location' => 'https://www2.example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_POST,
)
);
$a = array(
'metadata-set' => 'saml20-sp-remote',
'ArtifactResolutionService' => 'https://example.com/ars',
'SingleSignOnService' => 'https://example.com/sso',
'SingleLogoutService' => array(
'Location' => 'https://example.com/slo',
'Binding' => 'valid_binding', // test unknown bindings if we don't specify a list of valid ones
),
);
$valid_bindings = array(
\SAML2\Constants::BINDING_HTTP_POST,
\SAML2\Constants::BINDING_HTTP_REDIRECT,
\SAML2\Constants::BINDING_HOK_SSO,
\SAML2\Constants::BINDING_HTTP_ARTIFACT.
\SAML2\Constants::BINDING_SOAP,
);
// run all general tests with AssertionConsumerService endpoint type
foreach ($acs_eps as $i => $ep) {
$a['AssertionConsumerService'] = $ep;
$c = SimpleSAML_Configuration::loadFromArray($a);
$this->assertEquals($acs_expected_eps[$i], $c->getDefaultEndpoint(
'AssertionConsumerService',
$valid_bindings
));
}
// now make sure SingleSignOnService, SingleLogoutService and ArtifactResolutionService works fine
$a['metadata-set'] = 'shib13-idp-remote';
$c = SimpleSAML_Configuration::loadFromArray($a);
$this->assertEquals(
array(
'Location' => 'https://example.com/sso',
'Binding' => 'urn:mace:shibboleth:1.0:profiles:AuthnRequest',
),
$c->getDefaultEndpoint('SingleSignOnService')
);
$a['metadata-set'] = 'saml20-idp-remote';
$c = SimpleSAML_Configuration::loadFromArray($a);
$this->assertEquals(
array(
'Location' => 'https://example.com/ars',
'Binding' => \SAML2\Constants::BINDING_SOAP,
),
$c->getDefaultEndpoint('ArtifactResolutionService')
);
$this->assertEquals(
array(
'Location' => 'https://example.com/slo',
'Binding' => \SAML2\Constants::BINDING_HTTP_REDIRECT,
),
$c->getDefaultEndpoint('SingleLogoutService')
);
// test for old shib1.3 AssertionConsumerService
$a['metadata-set'] = 'shib13-sp-remote';
$a['AssertionConsumerService'] = 'https://example.com/endpoint.php';
$c = SimpleSAML_Configuration::loadFromArray($a);
$this->assertEquals(
array(
'Location' => 'https://example.com/endpoint.php',
'Binding' => 'urn:oasis:names:tc:SAML:1.0:profiles:browser-post',
),
$c->getDefaultEndpoint('AssertionConsumerService')
);
// test for no valid endpoints specified
$a['SingleLogoutService'] = array(
array(
'Location' => 'https://example.com/endpoint.php',
'Binding' => 'invalid_binding',
'isDefault' => true,
),
);
$c = SimpleSAML_Configuration::loadFromArray($a);
try {
$c->getDefaultEndpoint('SingleLogoutService', $valid_bindings);
$this->fail('Failed to detect invalid endpoint binding.');
} catch (Exception $e) {
$this->assertEquals(
'[ARRAY][\'SingleLogoutService\']:Could not find a supported SingleLogoutService '.'endpoint.',
$e->getMessage()
);
}
$a['metadata-set'] = 'foo';
$c = SimpleSAML_Configuration::loadFromArray($a);
try {
$c->getDefaultEndpoint('SingleSignOnService');
$this->fail('No valid metadata set specified.');
} catch (Exception $e) {
$this->assertStringStartsWith('Missing default binding for', $e->getMessage());
}
}
/**
* Test SimpleSAML_Configuration::getEndpoints().
*/
public function testGetEndpoints()
{
// test response location for old-style configurations
$c = SimpleSAML_Configuration::loadFromArray(array(
'metadata-set' => 'saml20-idp-remote',
'SingleSignOnService' => 'https://example.com/endpoint.php',
'SingleSignOnServiceResponse' => 'https://example.com/response.php',
));
$e = array(
array(
'Location' => 'https://example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_REDIRECT,
'ResponseLocation' => 'https://example.com/response.php',
)
);
$this->assertEquals($e, $c->getEndpoints('SingleSignOnService'));
// test for input failures
// define a basic configuration array
$a = array(
'metadata-set' => 'saml20-idp-remote',
'SingleSignOnService' => null,
);
// define a set of tests
$tests = array(
// invalid endpoint definition
10,
// invalid definition of endpoint inside the endpoints array
array(
1234
),
// missing location
array(
array(
'foo' => 'bar',
),
),
// invalid location
array(
array(
'Location' => 1234,
)
),
// missing binding
array(
array(
'Location' => 'https://example.com/endpoint.php',
),
),
// invalid binding
array(
array(
'Location' => 'https://example.com/endpoint.php',
'Binding' => 1234,
),
),
// invalid response location
array(
array(
'Location' => 'https://example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_REDIRECT,
'ResponseLocation' => 1234,
),
),
// invalid index
array(
array(
'Location' => 'https://example.com/endpoint.php',
'Binding' => \SAML2\Constants::BINDING_HTTP_REDIRECT,
'index' => 'string',
),
),
);
// define a set of exception messages to expect
$msgs = array(
'Expected array or string.',
'Expected a string or an array.',
'Missing Location.',
'Location must be a string.',
'Missing Binding.',
'Binding must be a string.',
'ResponseLocation must be a string.',
'index must be an integer.',
);
// now run all the tests expecting the correct exception message
foreach ($tests as $i => $test) {
$a['SingleSignOnService'] = $test;
$c = SimpleSAML_Configuration::loadFromArray($a);
try {
$c->getEndpoints('SingleSignOnService');
} catch (Exception $e) {
$this->assertStringEndsWith($msgs[$i], $e->getMessage());
}
}
}
/**
* Test SimpleSAML_Configuration::getLocalizedString()
*/
public function testGetLocalizedString() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'str_opt' => 'Hello World!',
'str_array' => array(
'en' => 'Hello World!',
'no' => 'Hei Verden!',
),
));
$this->assertEquals($c->getLocalizedString('missing_opt', '--missing--'), '--missing--');
$this->assertEquals($c->getLocalizedString('str_opt'), array('en' => 'Hello World!'));
$this->assertEquals($c->getLocalizedString('str_array'), array('en' => 'Hello World!', 'no' => 'Hei Verden!'));
}
/**
* Test SimpleSAML_Configuration::getLocalizedString() not array nor simple string
* @expectedException Exception
*/
public function testGetLocalizedStringNotArray() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => 42,
));
$c->getLocalizedString('opt');
}
/**
* Test SimpleSAML_Configuration::getLocalizedString() not string key
* @expectedException Exception
*/
public function testGetLocalizedStringNotStringKey() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => array(42 => 'text'),
));
$c->getLocalizedString('opt');
}
/**
* Test SimpleSAML_Configuration::getLocalizedString() not string value
* @expectedException Exception
*/
public function testGetLocalizedStringNotStringValue() {
$c = SimpleSAML_Configuration::loadFromArray(array(
'opt' => array('en' => 42),
));
$c->getLocalizedString('opt');
}
/**
* Test that Configuration objects can be initialized from an array.
*
* ATTENTION: this test must be kept the last.
*/
public function testLoadInstanceFromArray()
{
$c = array(
'key' => 'value'
);
// test loading a custom instance
SimpleSAML_Configuration::loadFromArray($c, '', 'dummy');
$this->assertEquals('value', SimpleSAML_Configuration::getInstance('dummy')->getValue('key', null));
// test loading the default instance
SimpleSAML_Configuration::loadFromArray($c, '', 'simplesaml');
$this->assertEquals('value', SimpleSAML_Configuration::getInstance()->getValue('key', null));
}
}
|