-
Notifications
You must be signed in to change notification settings - Fork 22
/
SessionTest.php
1111 lines (1012 loc) · 39.1 KB
/
SessionTest.php
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
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Session
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id$
*/
/**
* @see Zend_Session
*/
// require_once 'Zend/Session.php';
require_once 'Zend/Session/SessionHelper.php';
/**
* Black box testing for Zend_Session
*
* @category Zend
* @package Zend_Session
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @group Zend_Session
* @runTestsInSeparateProcesses
*/
class Zend_SessionTest extends PHPUnit_Framework_TestCase
{
/**
* Helper script invoked via exec()
*
* @var string
*/
protected $_script = null;
/**
* Storage for session.save_path, so that unit tests may change the value without side effect
*
* @var string
*/
protected $_savePath;
/**
* Initializes instance data
*
* @return void
*/
public function __construct($name = NULL, array $data = array(), $dataName = '')
{
parent::__construct($name, $data, $dataName);
$this->_script = 'php '
. '-c ' . escapeshellarg(php_ini_loaded_file()) . ' '
. '-d include_path=' . get_include_path() . ' '
. escapeshellarg(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'SessionTestHelper.php');
$this->_savePath = ini_get('session.save_path');
}
/**
* Set up tests environment
*/
function setUp()
{
// _unitTestEnabled is utilised by other tests to handle session data processing
// Zend_Session tests should pass with _unitTestEnabled turned off
Zend_Session::$_unitTestEnabled = false;
}
/**
* Cleanup operations after each test method is run
*
* @return void
*/
public function tearDown()
{
Zend_Session_SessionHelper::reset();
Zend_Session::$_unitTestEnabled = true;
session_save_path($this->_savePath);
$this->assertSame(
E_ALL | E_STRICT,
error_reporting( E_ALL | E_STRICT ),
'A test altered error_reporting to something other than E_ALL | E_STRICT'
);
}
/**
* Sorts the compound result returned by SessionTestHelper, so that the
* order of iteration over namespace items do not impact analysis of test results.
*
* @param array $result output of exec()'ing SessionTestHelper
* @return string sorted alphabetically
*/
public function sortResult(array $result)
{
$results = explode(';', array_pop($result));
sort($results);
return implode(';', $results);
}
/**
* test session id manipulations; expect isRegenerated flag == true
*
* @return void
*/
public function testRegenerateId()
{
// Check if session hasn't already been started by another test
if (!Zend_Session::isStarted()) {
Zend_Session::setId('myid123');
Zend_Session::regenerateId();
$this->assertFalse(Zend_Session::isRegenerated());
$id = Zend_Session::getId();
$this->assertTrue($id === 'myid123',
'getId() reported something different than set via setId("myid123")');
Zend_Session::start();
} else {
// Start session if it's not actually started
// That may happen if Zend_Session::$_unitTestEnabled is turned on while some other
// Unit tests utilize Zend_Session functionality
if (!defined('SID')) {
session_start();
}
// only regenerate session id if session has already been started
Zend_Session::regenerateId();
}
$this->assertTrue(Zend_Session::isRegenerated());
try {
Zend_Session::setId('someo-therid-123');
$this->fail('No exception was returned when trying to set the session id, after session_start()');
} catch (Zend_Session_Exception $e) {
$this->assertRegexp('/already.*started/i', $e->getMessage());
}
}
/**
* Ensures that setOptions() behaves as expected
*
* @return void
*/
public function testSetOptions()
{
try {
Zend_Session::setOptions(array('foo' => 'break me'));
$this->fail('Expected Zend_Session_Exception not thrown when trying to set an invalid option');
} catch (Zend_Session_Exception $e) {
$this->assertRegexp('/unknown.option/i', $e->getMessage());
}
Zend_Session::setOptions(array('save_path' => '1;777;/tmp'));
Zend_Session::setOptions(array('save_path' => '2;/tmp'));
Zend_Session::setOptions(array('save_path' => '/tmp'));
}
/**
* test for initialisation without parameter; expect instance
*
* @return void
*/
public function testInit()
{
$s = new Zend_Session_Namespace();
$this->assertTrue($s instanceof Zend_Session_Namespace,'Zend_Session Object not returned');
}
/**
* test for initialisation with empty string; expect failure
*
* @return void
*/
public function testInitEmpty()
{
try {
$s = new Zend_Session_Namespace('');
} catch (Zend_Session_Exception $e) {
$this->assertRegexp('/non.empty.string/i', $e->getMessage());
return;
}
$this->fail('No exception was returned when trying to create a namespace having the empty string as '
. 'its name; expected Zend_Session_Exception');
}
/**
* test for initialisation with Session parameter; expect instance
*
* @return void
*/
public function testInitSession()
{
$s = new Zend_Session_Namespace('namespace');
$this->assertTrue($s instanceof Zend_Session_Namespace, 'Zend_Session_Namespace object not returned');
}
/**
* test for initialisation with single instance; expected instance
*
* @return void
*/
public function testInitSingleInstance()
{
$s = new Zend_Session_Namespace('single', true);
try {
$s = new Zend_Session_Namespace('single', true);
} catch (Zend_Session_Exception $e) {
// session namespace 'single' already exists and is set to be the only instance of this namespace
$this->assertRegexp('/already.*exist/i', $e->getMessage());
return;
}
$this->fail('No exception was returned when creating a duplicate session for the same namespace, '
. 'even though "single instance" was specified; expected Zend_Session_Exception');
}
/**
* test for retrieval of non-existent keys in a valid namespace; expected null value
* returned by getter for an unset key
*
* @return void
*/
public function testNamespaceGetNull()
{
try {
$s = new Zend_Session_Namespace();
$s->tree = 'fig';
$dog = $s->dog;
$this->assertTrue($dog === null, "getting value of non-existent key failed to return null ($dog)");
} catch (Zend_Session_Exception $e) {
$this->fail('Unexpected exception returned when attempting to fetch the value of non-existent key');
}
}
/**
* test for existence of namespace; expected true
*
* @return void
*/
public function testNamespaceIsset()
{
try {
Zend_Session::$_unitTestEnabled = true;
Zend_Session::start();
$this->assertFalse(Zend_Session::namespaceIsset('trees'),
'namespaceIsset() should have returned false for a namespace with no keys set');
$s = new Zend_Session_Namespace('trees');
$this->assertFalse(Zend_Session::namespaceIsset('trees'),
'namespaceIsset() should have returned false for a namespace with no keys set');
$s->cherry = 'bing';
$this->assertTrue(Zend_Session::namespaceIsset('trees'),
'namespaceIsset() should have returned true for a namespace with keys set');
} catch (Zend_Session_Exception $e) {
$this->fail('Unexpected exception returned when attempting to fetch the value of non-existent key');
}
}
/**
* test magic methods with improper variable interpolation; expect no exceptions
*
* @return void
*/
public function testMagicMethodsEmpty()
{
$s = new Zend_Session_Namespace();
$name = 'fruit';
$s->$name = 'apples';
$this->assertTrue(isset($s->fruit), 'isset() failed - returned false, but should have been true');
try {
$name = ''; // simulate a common bug, where user refers to an unset/empty variable
$s->$name = 'pear';
$this->fail('No exception was returned when trying to __set() a key named ""; expected '
. 'Zend_Session_Exception');
} catch (Zend_Session_Exception $e) {
$this->assertRegexp('/non.empty.string/i', $e->getMessage());
}
try {
$name = ''; // simulate a common bug, where user refers to an unset/empty variable
$nothing = $s->$name;
$this->fail('No exception was returned when trying to __set() a key named ""; expected '
. 'Zend_Session_Exception');
} catch (Zend_Session_Exception $e) {
$this->assertRegexp('/non.empty.string/i', $e->getMessage());
}
try {
$name = ''; // simulate a common bug, where user refers to an unset/empty variable
if (isset($s->$name)) { true; }
$this->fail('No exception was returned when trying to __set() a key named ""; expected '
. 'Zend_Session_Exception');
} catch (Zend_Session_Exception $e) {
$this->assertRegexp('/non.empty.string/i', $e->getMessage());
}
try {
$name = ''; // simulate a common bug, where user refers to an unset/empty variable
unset($s->$name);
$this->fail('No exception was returned when trying to __set() a key named ""; expected '
. 'Zend_Session_Exception');
} catch (Zend_Session_Exception $e) {
$this->assertRegexp('/non.empty.string/i', $e->getMessage());
}
}
/**
* test for proper separation of namespace "spaces"; expect variables in different namespaces are
* different variables (i.e., not shared values)
*
* @return void
*/
public function testInitNamespaces()
{
$s1 = new Zend_Session_Namespace('namespace1');
$s1b = new Zend_Session_Namespace('namespace1');
$s2 = new Zend_Session_Namespace('namespace2');
$s2b = new Zend_Session_Namespace('namespace2');
$s3 = new Zend_Session_Namespace();
$s3b = new Zend_Session_Namespace();
$s1->a = 'apple';
$s2->a = 'pear';
$s3->a = 'orange';
$this->assertTrue(($s1->a != $s2->a && $s1->a != $s3->a && $s2->a != $s3->a),
'Zend_Session improperly shared namespaces');
$this->assertTrue(($s1->a === $s1b->a),'Zend_Session namespace error');
$this->assertTrue(($s2->a === $s2b->a),'Zend_Session namespace error');
$this->assertTrue(($s3->a === $s3b->a),'Zend_Session namespace error');
}
/**
* test for detection of illegal namespace names; expect exception complaining about name beginning
* with an underscore
*
* @return void
*/
public function testInitNamespaceUnderscore()
{
try {
$s = new Zend_Session_Namespace('_namespace');
$this->fail('No exception was returned when requesting a namespace having a name beginning with '
. 'an underscore');
} catch (Zend_Session_Exception $e) {
$this->assertRegexp('/underscore/i', $e->getMessage());
}
}
/**
* test for detection of illegal namespace names; expect exception complaining about name beginning
* with an underscore
*
* @return void
*/
public function testInitNamespaceNumber()
{
try {
$s = new Zend_Session_Namespace('0namespace');
$this->fail('No exception was returned when requesting a namespace having a name beginning with '
. 'a number');
} catch (Zend_Session_Exception $e) {
$this->assertRegexp('/number/i', $e->getMessage());
}
}
/**
* test iteration; expect native PHP foreach statement is able to properly iterate all items in a session namespace
*
* @return void
*/
public function testGetIterator()
{
$s = new Zend_Session_Namespace();
$s->a = 'apple';
$s->p = 'pear';
$s->o = 'orange';
$result = '';
foreach ($s->getIterator() as $key => $val) {
$result .= "$key === $val;";
}
$this->assertTrue($result === 'a === apple;p === pear;o === orange;',
'iteration over default Zend_Session namespace failed: result="' . $result . '"');
$s = new Zend_Session_Namespace('namespace');
$s->g = 'guava';
$s->p = 'peach';
$s->p = 'plum';
$result = '';
foreach ($s->getIterator() as $key => $val) {
$result .= "$key === $val;";
}
$this->assertTrue($result === 'g === guava;p === plum;',
'iteration over named Zend_Session namespace failed');
}
/**
* test locking of the Default namespace (i.e. make namespace readonly); expect exceptions when trying to write to
* locked namespace
*
* @return void
*/
public function testLock()
{
$s = new Zend_Session_Namespace();
$s->a = 'apple';
$s->p = 'pear';
$s->lock();
try {
$s->o = 'orange';
$this->fail('No exception was returned when setting a variable in the "Default" namespace, '
. 'after marking the namespace as read-only; expected Zend_Session_Exception');
} catch (Zend_Session_Exception $e) {
// session namespace 'single' already exists and is set to be the only instance of this namespace
$this->assertRegexp('/read.only/i', $e->getMessage());
}
$s->unlock();
$s->o = 'orange';
$s->p = 'papaya';
$s->c = 'cherry';
$s->lock();
try {
$s->o = 'orange';
$this->fail('No exception was returned when setting a variable in the "Default" namespace, '
. 'after marking the namespace as read-only; expected Zend_Session_Exception');
} catch (Zend_Session_Exception $e) {
// session namespace 'single' already exists and is set to be the only instance of this namespace
$this->assertRegexp('/read.only/i', $e->getMessage());
}
}
/**
* test locking of named namespaces (i.e. make namespace readonly); expect exceptions when trying to write
* to locked namespace
*
* @return void
*/
public function testLockNamespace()
{
$s = new Zend_Session_Namespace('somenamespace');
$s->a = 'apple';
$s->p = 'pear';
$s->lock();
try {
$s->o = 'orange';
$this->fail('No exception was returned when setting a variable in the "Default" namespace, '
. 'after marking the namespace as read-only; expected Zend_Session_Exception');
} catch (Zend_Session_Exception $e) {
// session namespace 'single' already exists and is set to be the only instance of this namespace
$this->assertRegexp('/read.only/i', $e->getMessage());
}
$s = new Zend_Session_Namespace('somenamespace');
$s2 = new Zend_Session_Namespace('mayday');
$s2->lock();
$s->unlock();
$s->o = 'orange';
$s->p = 'papaya';
$s->c = 'cherry';
$s = new Zend_Session_Namespace('somenamespace');
$s->lock();
$s2->unlock();
try {
$s->o = 'orange';
$this->fail('No exception was returned when setting a variable in the "Default" namespace, '
. 'after marking the namespace as read-only; expected Zend_Session_Exception');
} catch (Zend_Session_Exception $e) {
$this->assertRegexp('/read.only/i', $e->getMessage());
}
}
/**
* test unlocking of the Default namespace (i.e. make namespace readonly); expected no exceptions
*
* @return void
*/
public function testUnlock()
{
$s = new Zend_Session_Namespace();
try {
$s->a = 'apple';
$s->p = 'pear';
$s->lock();
$s->unlock();
$s->o = 'orange';
$s->p = 'prune';
$s->lock();
$s->unlock();
$s->o = 'orange';
$s->p = 'papaya';
$s->c = 'cherry';
} catch (Zend_Session_Exception $e) {
$this->fail('Unexpected exception when writing to namespaces after unlocking it.');
}
}
/**
* test combinations of locking and unlocking of the Default namespace (i.e. make namespace readonly)
* expected no exceptions
*
* @return void
*/
public function testUnLockAll()
{
$sessions = array('one', 'two', 'default', 'three');
foreach ($sessions as $namespace) {
$s = new Zend_Session_Namespace($namespace);
$s->a = 'apple';
$s->p = 'pear';
$s->lock();
$s->unlock();
$s->o = 'orange';
$s->p = 'prune';
$s->lock();
$s->unlock();
$s->o = 'orange';
$s->p = 'papaya';
$s->c = 'cherry';
$s->lock();
$this->assertTrue($s->isLocked(), 'isLocked() returned incorrect status (not locked)');
try {
$s->p = 'prune';
$s->f = 'fig';
$this->fail('No exception was returned when setting a variable in the "Default" namespace, '
. 'after marking the namespace as read-only; expected Zend_Session_Exception');
} catch (Zend_Session_Exception $e) {
$this->assertRegexp('/read.only/i', $e->getMessage());
}
}
$s->unlockAll();
foreach ($sessions as $namespace) {
$this->assertFalse($s->isLocked(), 'isLocked() returned incorrect status (locked)');
$s->p = 'pear';
$s->f = 'fig';
$s->l = 'lime';
}
}
/**
* test isLocked() unary comparison operator under various situations; expect lock status remains synchronized
* with last call to unlock() or lock(); expect no exceptions
*
* @return void
*/
public function testIsLocked()
{
try {
$s = new Zend_Session_Namespace();
$s->a = 'apple';
$s->p = 'pear';
$this->assertFalse($s->isLocked(), 'isLocked() returned incorrect status (locked)');
$s->lock();
$this->assertTrue($s->isLocked(), 'isLocked() returned incorrect status (unlocked)');
$s->unlock();
$s->o = 'orange';
$s->p = 'prune';
$this->assertFalse($s->isLocked(), 'isLocked() returned incorrect status (locked)');
$s->lock();
$this->assertTrue($s->isLocked(), 'isLocked() returned incorrect status (unlocked)');
$s->unlock();
$this->assertFalse($s->isLocked(), 'isLocked() returned incorrect status (locked)');
$s->o = 'orange';
$s->p = 'papaya';
$s->c = 'cherry';
$this->assertFalse($s->isLocked(), 'isLocked() returned incorrect status (locked)');
} catch (Zend_Session_Exception $e) {
$this->fail('Unexpected exception when writing to named namespaces after unlocking them.');
}
}
/**
* test unlocking of named namespaces (i.e., make namespace readonly); expect no exceptions
*
* @return void
*/
public function testUnLockNamespace()
{
$s = new Zend_Session_Namespace('somenamespace');
try {
$s->a = 'apple';
$s->p = 'pear';
$s->lock();
$s2 = new Zend_Session_Namespace('mayday');
$s2->lock();
$s->unlock();
$s->o = 'orange';
$s->p = 'prune';
$s->lock();
$s->unlock();
$s->o = 'orange';
$s->p = 'papaya';
$s->c = 'cherry';
} catch (Zend_Session_Exception $e) {
$this->fail('Unexpected exception when writing to named namespaces after unlocking them.');
}
}
/**
* test isLocked() unary comparison operator under various situations; expect lock status remains synchronized with
* last call to unlock() or lock(); expect no exceptions
*
* @return void
*/
public function testIsLockedNamespace()
{
try {
$s = new Zend_Session_Namespace('somenamespace');
$s->a = 'apple';
$s->p = 'pear';
$this->assertFalse($s->isLocked(), 'isLocked() returned incorrect status (locked)');
$s->lock();
$s2 = new Zend_Session_Namespace('mayday');
$s2->lock();
$this->assertTrue($s->isLocked(), 'isLocked() returned incorrect status (unlocked)');
$s->unlock();
$s->o = 'orange';
$s->p = 'prune';
$this->assertFalse($s->isLocked(), 'isLocked() returned incorrect status (locked)');
$s->lock();
$s2->unlock();
$this->assertTrue($s->isLocked(), 'isLocked() returned incorrect status (unlocked)');
$s->unlock();
$this->assertFalse($s->isLocked(), 'isLocked() returned incorrect status (locked)');
$s->o = 'orange';
$s->p = 'papaya';
$s->c = 'cherry';
$this->assertFalse($s->isLocked(), 'isLocked() returned incorrect status (locked)');
} catch (Zend_Session_Exception $e) {
$this->fail('Unexpected exception when writing to named namespaces after unlocking them.');
}
}
/**
* test unsetAll keys in default namespace; expect namespace contains only keys not unset()
*
* @return void
*/
public function testUnsetAll()
{
$s = new Zend_Session_Namespace();
$result = '';
foreach ($s->getIterator() as $key => $val) {
$result .= "$key === $val;";
}
$this->assertTrue(empty($result), "tearDown failure, found keys in default namespace: '$result'");
$s->a = 'apple';
$s->lock();
$s->unlock();
$s->p = 'papaya';
$s->c = 'cherry';
$s = new Zend_Session_Namespace();
$result = '';
foreach ($s->getIterator() as $key => $val) {
$result .= "$key === $val;";
}
$this->assertTrue($result === 'a === apple;p === papaya;c === cherry;',
"unsetAll() setup for test failed: '$result'");
$s->unsetAll();
$result = '';
foreach ($s->getIterator() as $key => $val) {
$result .= "$key === $val;";
}
$this->assertTrue(empty($result), "unsetAll() did not remove keys from namespace: '$result'");
}
/**
* test unset() keys in default namespace; expect namespace contains only keys not unset()
*
* @return void
*/
public function testUnset()
{
$s = new Zend_Session_Namespace();
$result = '';
foreach ($s->getIterator() as $key => $val) {
$result .= "$key === $val;";
}
$this->assertTrue(empty($result), "tearDown failure, found keys in default namespace: '$result'");
$s->a = 'apple';
$s->lock();
$s->unlock();
$s->p = 'papaya';
$s->c = 'cherry';
$s = new Zend_Session_Namespace();
foreach ($s->getIterator() as $key => $val) {
unset($s->$key);
}
$result = '';
foreach ($s->getIterator() as $key => $val) {
$result .= "$key === $val;";
}
$this->assertTrue(empty($result), "unsetAll() did not remove keys from namespace: '$result'");
}
/**
* test unset() keys in non-default namespace; expect namespace contains only keys not unset()
*
* @return void
*/
public function testUnsetNamespace()
{
$s = new Zend_Session_Namespace('foobar');
$result = '';
foreach ($s->getIterator() as $key => $val) {
$result .= "$key === $val;";
}
$this->assertTrue(empty($result), "tearDown failure, found keys in default namespace: '$result'");
$s->a = 'apple';
$s->lock();
$s->unlock();
$s->p = 'papaya';
$s->c = 'cherry';
$s = new Zend_Session_Namespace('foobar');
foreach ($s->getIterator() as $key => $val) {
unset($s->$key);
}
$result = '';
foreach ($s->getIterator() as $key => $val) {
$result .= "$key === $val;";
}
$this->assertTrue(empty($result), "unsetAll() did not remove keys from namespace: '$result'");
}
/**
* test unsetAll keys in default namespace; expect namespace will contain no keys
*
* @return void
*/
public function testUnsetAllNamespace()
{
$s = new Zend_Session_Namespace('somenamespace');
$result = '';
foreach ($s->getIterator() as $key => $val) {
$result .= "$key === $val;";
}
$this->assertTrue(empty($result), "tearDown failure, found keys in 'somenamespace' namespace: '$result'");
$s->a = 'apple';
$s->lock();
$s->unlock();
$s->p = 'papaya';
$s->c = 'cherry';
$s = new Zend_Session_Namespace('somenamespace');
$result = '';
foreach ($s->getIterator() as $key => $val) {
$result .= "$key === $val;";
}
$this->assertTrue($result === 'a === apple;p === papaya;c === cherry;',
"unsetAll() setup for test failed: '$result'");
$s->unsetAll();
$result = '';
foreach ($s->getIterator() as $key => $val) {
$result .= "$key === $val;";
}
$this->assertTrue(empty($result), "unsetAll() did not remove keys from namespace: '$result'");
}
/**
* test expiration of namespaces and namespace variables by seconds; expect expiration of specified keys/namespace
*
* @return void
*/
public function testSetExpirationSeconds()
{
// Calculate common script execution time
$startTime = time();
exec($this->_script, $result, $returnValue);
$execTime = time() - $startTime;
$s = new Zend_Session_Namespace('expireAll');
$s->a = 'apple';
$s->p = 'pear';
$s->o = 'orange';
$s->setExpirationSeconds($execTime*2 + 5);
Zend_Session::regenerateId();
$id = Zend_Session::getId();
sleep(4); // not long enough for things to expire
session_write_close(); // release session so process below can use it
exec("$this->_script expireAll $id expireAll", $result, $returnValue);
session_start(); // resume artificially suspended session
$result = $this->sortResult($result);
$expect = ';a === apple;o === orange;p === pear';
$this->assertTrue($result === $expect,
"iteration over default Zend_Session namespace failed; expecting result === '$expect', but got '$result'");
sleep($execTime*2 + 2); // long enough for things to expire (total of $execTime*2 + 6 seconds waiting, but expires in $execTime*2 + 5)
session_write_close(); // release session so process below can use it
exec("$this->_script expireAll $id expireAll", $result, $returnValue);
session_start(); // resume artificially suspended session
$this->assertNull(array_pop($result));
// We could split this into a separate test, but actually, if anything leftover from above
// contaminates the tests below, that is also a bug that we want to know about.
$s = new Zend_Session_Namespace('expireGuava');
$s->setExpirationSeconds(5, 'g'); // now try to expire only 1 of the keys in the namespace
$s->g = 'guava';
$s->p = 'peach';
$s->p = 'plum';
sleep(6); // not long enough for things to expire
session_write_close(); // release session so process below can use it
exec("$this->_script expireAll $id expireGuava", $result, $returnValue);
session_start(); // resume artificially suspended session
$result = $this->sortResult($result);
$this->assertTrue($result === ';p === plum',
"iteration over named Zend_Session namespace failed (result=$result)");
}
/**
* test expiration of namespaces by hops; expect expiration of specified namespace in the proper number of hops
*
* @runInSeparateProcess
* @return void
*/
public function testSetExpireSessionHops()
{
$s = new Zend_Session_Namespace('expireAll');
$s->a = 'apple';
$s->p = 'pear';
$s->o = 'orange';
$expireBeforeHop = 3;
$s->setExpirationHops($expireBeforeHop);
$id = session_id();
for ($i = 1; $i <= ($expireBeforeHop + 2); $i++) {
session_write_close(); // release session so process below can use it
exec("$this->_script expireAll $id expireAll", $result, $returnValue);
session_start(); // resume artificially suspended session
$result = $this->sortResult($result);
if ($i > $expireBeforeHop) {
$this->assertTrue($result === '',
"iteration over default Zend_Session namespace failed (result='$result'; hop #$i)");
} else {
$this->assertTrue($result === ';a === apple;o === orange;p === pear',
"iteration over default Zend_Session namespace failed (result='$result'; hop #$i)");
}
}
}
/**
* test expiration of namespace variables by hops; expect expiration of specified keys in the proper number of hops
*
* @runInSeparateProcess
* @return void
*/
public function testSetExpireSessionVarsByHops1()
{
$this->setExpireSessionVarsByHops();
}
/**
* sanity check .. we should be able to repeat this test without problems
*
* @runInSeparateProcess
* @return void
*/
public function testSetExpireSessionVarsByHops2()
{
$this->setExpireSessionVarsByHops();
}
/**
* @group ZF-7196
* @runInSeparateProcess
*/
public function testUnsettingNamespaceKeyWithoutUnsettingCompleteExpirationData()
{
$namespace = new Zend_Session_Namespace('DummyNamespace');
$namespace->foo = 23;
$namespace->bar = 42;
$namespace->setExpirationHops(1);
$sessionId = session_id();
session_write_close();
exec($this->_script . ' expireAll ' . $sessionId . ' DummyNamespace ZF-7196', $result, $returnValue);
session_start();
$result = $this->sortResult($result);
$this->assertSame(';bar === 42', $result);
}
/**
* test expiration of namespace variables by hops; expect expiration of specified keys in the proper number of hops
*
* @return void
*/
public function setExpireSessionVarsByHops()
{
$s = new Zend_Session_Namespace('expireGuava');
$expireBeforeHop = 4;
$s->setExpirationHops($expireBeforeHop, 'g');
$s->g = 'guava';
$s->p = 'peach';
$s->p = 'plum';
$id = session_id();
for ($i = 1; $i <= ($expireBeforeHop + 2); $i++) {
session_write_close(); // release session so process below can use it
exec("$this->_script expireAll $id expireGuava", $result);
session_start(); // resume artificially suspended session
$result = $this->sortResult($result);
if ($i > $expireBeforeHop) {
$this->assertTrue($result === ';p === plum',
"iteration over named Zend_Session namespace failed (result='$result'; hop #$i)");
} else {
$this->assertTrue($result === ';g === guava;p === plum',
"iteration over named Zend_Session namespace failed (result='$result'; hop #$i)");
}
}
}
/**
* @todo PHP 5.2.1 is required (fixes a bug with magic __get() returning by reference)
* @see http://framework.zend.com/issues/browse/ZF-800
*/
public function testArrays()
{
$this->markTestIncomplete();
$s = new Zend_Session_Namespace('aspace');
$id = Zend_Session::getId();
$this->assertSame($id, session_id());
$s->top = 'begin';
session_write_close(); // release session so process below can use it
exec("$this->_script setArray $id aspace 1 2 3 4 5", $result);
exec("$this->_script getArray $id aspace", $result);
session_start(); // resume artificially suspended session
$result = array_pop($result);
$expect = 'top === begin;astring === happy;someArray === Array;(;[0]=>aspace;[1]=>1;[2]=>2;[3]=>3;[4]=>4;[5]=>5;[bee]=>honey;[ant]=>sugar;[dog]=>cat;);;serializedArray === a:8:{i:0;s:6:"aspace";i:1;s:1:"1";i:2;s:1:"2";i:3;s:1:"3";i:4;s:1:"4";i:5;s:1:"5";s:3:"ant";s:5:"sugar";s:3:"dog";s:3:"cat";};';
$this->assertTrue($result === $expect,
"iteration over default Zend_Session namespace failed; expecting result ===\n$expect\n, but got\n$result\n)");
}
/**
* test expiration of namespace variables by hops; expect expiration of specified keys in the proper number of hops
*
* @runInSeparateProcess
* @return void
*/
public function testSetExpireSessionVarsByHopsOnUse()
{
$s = new Zend_Session_Namespace('expireGuava');
$expireBeforeHop = 2;
$s->setExpirationHops($expireBeforeHop, 'g', true); // only count a hop, when namespace is used
$s->g = 'guava';
$s->p = 'peach';
$s->p = 'plum';
$id = session_id();
// we are not accessing (using) the "expireGuava" namespace, so these hops should have no effect
for ($i = 1; $i <= ($expireBeforeHop + 2); $i++) {
session_write_close(); // release session so process below can use it
exec("$this->_script expireAll $id notused", $result);
session_start(); // resume artificially suspended session
$result = $this->sortResult($result);
$this->assertTrue($result === '',
"iteration over named Zend_Session namespace failed (result='$result'; hop #$i)");
}
for ($i = 1; $i <= ($expireBeforeHop + 2); $i++) {
session_write_close(); // release session so process below can use it
exec("$this->_script expireAll $id expireGuava", $result);
session_start(); // resume artificially suspended session
$result = $this->sortResult($result);
if ($i > $expireBeforeHop) {