-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimpletest.php
3045 lines (2734 loc) · 85.7 KB
/
simpletest.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
/**
* @file
* Provides e107TestCase, e107UnitTestCase, and e107WebTestCase classes.
*/
e107_require_once(e_PLUGIN . 'simpletest/includes/helpers.php');
e107_require_once(e_PLUGIN . 'simpletest/includes/e107.php');
/**
* Global variable that holds information about the tests being run.
*
* An array, with the following keys:
* - 'test_run_id': the ID of the test being run
*
* @var array
*/
global $e107_test_info;
/**
* Base class for e107 tests.
*
* Do not extend this class, use one of the subclasses in this file.
*/
abstract class e107TestCase
{
/**
* The test run ID.
*
* @var string
*/
protected $testId;
/**
* The database prefix of this test run.
*
* @var string
*/
protected $databasePrefix = null;
/**
* The original file directory, before it was changed for testing purposes.
*
* @var string
*/
protected $originalSystemDirectory = null;
/**
* Time limit for the test.
*/
protected $timeLimit = 500;
/**
* Current results of this test case.
*
* @var array
*/
public $results = array(
'#pass' => 0,
'#fail' => 0,
'#exception' => 0,
'#debug' => 0,
);
/**
* Assertions thrown in that test case.
*
* @var array
*/
protected $assertions = array();
/**
* This class is skipped when looking for the source of an assertion.
*
* When displaying which function an assert comes from, it's not too useful to see "e107WebTestCase->e107Login()',
* we would like to see the test that called it. So we need to skip the classes defining these helper methods.
*/
protected $skipClasses = array(__CLASS__ => true);
/**
* Constructor for e107TestCase.
*
* @param $test_id
* Tests with the same id are reported together.
*/
public function __construct($test_id = null)
{
$this->testId = $test_id;
}
/**
* Internal helper: stores the assert.
*
* @param mixed $status
* Can be 'pass', 'fail', 'exception'. TRUE is a synonym for 'pass', FALSE for 'fail'.
* @param string $message
* The message string.
* @param $group
* Which group this assert belongs to.
* @param $caller
* By default, the assert comes from a function whose name starts with 'test'. Instead, you can specify where
* this assert originates from by passing in an associative array as $caller. Key 'file' is the name of the
* source file, 'line' is the line number and 'function' is the caller function itself.
*
* @return bool
*/
protected function assert($status, $message = '', $group = 'Other', array $caller = null) // TODO lans.
{
// Convert boolean status to string status.
if(is_bool($status))
{
$status = $status ? 'pass' : 'fail';
}
// Increment summary result counter.
$this->results['#' . $status]++;
// Get the function information about the call to the assertion method.
if(!$caller)
{
$caller = $this->getAssertionCall();
}
// Creation assertion array that can be displayed while tests are running.
$this->assertions[] = $assertion = array(
'test_id' => $this->testId,
'test_class' => get_class($this),
'status' => $status,
'message' => $message,
'message_group' => $group,
'function' => $caller['function'],
'line' => $caller['line'],
'file' => $caller['file'],
);
// Store assertion for display after the test has completed.
e107::getDb('SimpleTestE107TestCase')->insert('simpletest', $assertion, false);
// We do not use a ternary operator here to allow a breakpoint on test failure.
if($status == 'pass')
{
return true;
}
return false;
}
/**
* Store an assertion from outside the testing context.
*
* This is useful for inserting assertions that can only be recorded after the test case has been destroyed, such
* as PHP fatal errors. The caller information is not automatically gathered since the caller is most likely
* inserting the assertion on behalf of other code. In all other respects the method behaves just like
* e107TestCase::assert() in terms of storing the assertion.
*
* @return int|bool
* Message ID of the stored assertion.
*
* @see e107TestCase::assert()
* @see e107TestCase::deleteAssert()
*/
public static function insertAssert($test_id, $test_class, $status, $message = '', $group = 'Other', array $caller = array()) // TODO lans.
{
// Convert boolean status to string status.
if(is_bool($status))
{
$status = $status ? 'pass' : 'fail';
}
$caller += array(
'function' => 'Unknown', // TODO lans.
'line' => 0,
'file' => 'Unknown', // TODO lans.
);
$assertion = array(
'test_id' => $test_id,
'test_class' => $test_class,
'status' => $status,
'message' => $message,
'message_group' => $group,
'function' => $caller['function'],
'line' => $caller['line'],
'file' => $caller['file'],
);
return e107::getDb('SimpleTestE107TestCase')->insert('simpletest', $assertion, false);
}
/**
* Delete an assertion record by message ID.
*
* @param $message_id
* Message ID of the assertion to delete.
*
* @return bool
* TRUE if the assertion was deleted, FALSE otherwise.
*
* @see e107TestCase::insertAssert()
*/
public static function deleteAssert($message_id)
{
return e107::getDb('SimpleTestE107TestCase')->delete('simpletest', 'message_id = ' . (int) $message_id, false);
}
/**
* Cycles through backtrace until the first non-assertion method is found.
*
* @return array
* Array representing the true caller.
*/
protected function getAssertionCall()
{
$backtrace = debug_backtrace();
// The first element is the call. The second element is the caller.
// We skip calls that occurred in one of the methods of our base classes or in an assertion function.
while(($caller = $backtrace[1]) && ((isset($caller['class']) && isset($this->skipClasses[$caller['class']])) || substr($caller['function'], 0, 6) == 'assert'))
{
// We remove that call.
array_shift($backtrace);
}
return simpletest_get_last_caller($backtrace);
}
/**
* Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
*
* @param $value
* The value on which the assertion is to be done.
* @param $message
* The message to display along with the assertion.
* @param $group
* The type of assertion - examples are "Browser", "PHP".
*
* @return bool
* TRUE if the assertion succeeded, FALSE otherwise.
*/
protected function assertTrue($value, $message = '', $group = 'Other') // TODO lans.
{
// TODO lans.
$default_message = e107::getParser()->lanVars('Value [x] is TRUE.', array(
'x' => var_export($value, true),
));
return $this->assert((bool) $value, $message ? $message : $default_message, $group);
}
/**
* Check to see if a value is false (an empty string, 0, NULL, or FALSE).
*
* @param $value
* The value on which the assertion is to be done.
* @param $message
* The message to display along with the assertion.
* @param $group
* The type of assertion - examples are "Browser", "PHP".
*
* @return bool
* TRUE if the assertion succeeded, FALSE otherwise.
*/
protected function assertFalse($value, $message = '', $group = 'Other') // TODO lans.
{
// TODO lans.
$default_message = e107::getParser()->lanVars('Value [x] is FALSE.', array(
'x' => var_export($value, true),
));
return $this->assert(!$value, $message ? $message : $default_message, $group);
}
/**
* Check to see if a value is NULL.
*
* @param $value
* The value on which the assertion is to be done.
* @param $message
* The message to display along with the assertion.
* @param $group
* The type of assertion - examples are "Browser", "PHP".
*
* @return bool
* TRUE if the assertion succeeded, FALSE otherwise.
*/
protected function assertNull($value, $message = '', $group = 'Other') // TODO lans.
{
// TODO lans.
$default_message = e107::getParser()->lanVars('Value [x] is NULL.', array(
'x' => var_export($value, true),
));
return $this->assert(!isset($value), $message ? $message : $default_message, $group);
}
/**
* Check to see if a value is not NULL.
*
* @param $value
* The value on which the assertion is to be done.
* @param $message
* The message to display along with the assertion.
* @param $group
* The type of assertion - examples are "Browser", "PHP".
*
* @return bool
* TRUE if the assertion succeeded, FALSE otherwise.
*/
protected function assertNotNull($value, $message = '', $group = 'Other') // TODO lans.
{
// TODO lans.
$default_message = e107::getParser()->lanVars('Value [x] is not NULL.', array(
'x' => var_export($value, true),
));
return $this->assert(isset($value), $message ? $message : $default_message, $group);
}
/**
* Check to see if two values are equal.
*
* @param $first
* The first value to check.
* @param $second
* The second value to check.
* @param $message
* The message to display along with the assertion.
* @param $group
* The type of assertion - examples are "Browser", "PHP".
*
* @return bool
* TRUE if the assertion succeeded, FALSE otherwise.
*/
protected function assertEqual($first, $second, $message = '', $group = 'Other') // TODO lans.
{
// TODO lans.
$default_message = e107::getParser()->lanVars('Value [x] is equal to value [y].', array(
'x' => var_export($first, true),
'y' => var_export($second, true),
));
return $this->assert($first == $second, $message ? $message : $default_message, $group);
}
/**
* Check to see if two values are not equal.
*
* @param $first
* The first value to check.
* @param $second
* The second value to check.
* @param $message
* The message to display along with the assertion.
* @param $group
* The type of assertion - examples are "Browser", "PHP".
*
* @return bool
* TRUE if the assertion succeeded, FALSE otherwise.
*/
protected function assertNotEqual($first, $second, $message = '', $group = 'Other') // TODO lans.
{
// TODO lans.
$default_message = e107::getParser()->lanVars('Value [x] is not equal to value [y].', array(
'x' => var_export($first, true),
'y' => var_export($second, true),
));
return $this->assert($first != $second, $message ? $message : $default_message, $group);
}
/**
* Check to see if two values are identical.
*
* @param $first
* The first value to check.
* @param $second
* The second value to check.
* @param $message
* The message to display along with the assertion.
* @param $group
* The type of assertion - examples are "Browser", "PHP".
*
* @return bool
* TRUE if the assertion succeeded, FALSE otherwise.
*/
protected function assertIdentical($first, $second, $message = '', $group = 'Other') // TODO lans.
{
// TODO lans.
$default_message = e107::getParser()->lanVars('Value [x] is identical to value [y].', array(
'x' => var_export($first, true),
'y' => var_export($second, true),
));
return $this->assert($first === $second, $message ? $message : $default_message, $group);
}
/**
* Check to see if two values are not identical.
*
* @param $first
* The first value to check.
* @param $second
* The second value to check.
* @param $message
* The message to display along with the assertion.
* @param $group
* The type of assertion - examples are "Browser", "PHP".
*
* @return bool
* TRUE if the assertion succeeded, FALSE otherwise.
*/
protected function assertNotIdentical($first, $second, $message = '', $group = 'Other') // TODO lans.
{
// TODO lans.
$default_message = e107::getParser()->lanVars('Value [x] is not identical to value [y].', array(
'x' => var_export($first, true),
'y' => var_export($second, true),
));
return $this->assert($first !== $second, $message ? $message : $default_message, $group);
}
/**
* Fire an assertion that is always positive.
*
* @param $message
* The message to display along with the assertion.
* @param $group
* The type of assertion - examples are "Browser", "PHP".
*
* @return bool
* TRUE.
*/
protected function pass($message = null, $group = 'Other') // TODO lans.
{
return $this->assert(true, $message, $group);
}
/**
* Fire an assertion that is always negative.
*
* @param $message
* The message to display along with the assertion.
* @param $group
* The type of assertion - examples are "Browser", "PHP".
* @return bool
* FALSE.
*/
protected function fail($message = null, $group = 'Other') // TODO lans.
{
return $this->assert(false, $message, $group);
}
/**
* Fire an error assertion.
*
* @param $message
* The message to display along with the assertion.
* @param $group
* The type of assertion - examples are "Browser", "PHP".
* @param $caller
* The caller of the error.
*
* @return bool
* FALSE.
*/
protected function error($message = '', $group = 'Other', array $caller = null) // TODO lans.
{
if($group == 'User notice')
{
// Since 'User notice' is set by trigger_error() which is used for debug set the message to a status of
// 'debug'.
return $this->assert('debug', $message, 'Debug', $caller); // TODO lans... 'Debug'
}
return $this->assert('exception', $message, $group, $caller);
}
/**
* Logs verbose message in a text file.
*
* The link to the verbose message will be placed in the test results via
* as a passing assertion with the text '[verbose message]'.
*
* @param $message
* The verbose message to be stored.
*
* @see simpletest_verbose()
*/
protected function verbose($message)
{
global $SYSTEM_DIRECTORY;
if($id = simpletest_verbose($message))
{
$url = SITEURLBASE . '/' . $SYSTEM_DIRECTORY . 'simpletest/verbose/' . get_class($this) . '-' . $id . '.html';
// TODO lans.
$link = '<a href="' . $url . '" target="_blank">' . 'Verbose message' . '</a>';
$this->error($link, 'User notice');
}
}
/**
* Run all tests in this class.
*
* Regardless of whether $methods are passed or not, only method names starting with "test" are executed.
*
* @param $methods
* (optional) A list of method names in the test case class to run; e.g., array('testFoo', 'testBar').
* By default, all methods of the class are taken into account, but it can be useful to only run a few selected
* test methods during debugging.
*/
public function run(array $methods = array())
{
$prefs = e107::getPlugConfig('simpletest')->getPref();
$original_file_directory = rtrim(e_SYSTEM_BASE, '/');
// Initialize verbose debugging.
simpletest_verbose(null, $original_file_directory, get_class($this));
// HTTP auth settings (<username>:<password>) for the simpletest browser
// when sending requests to the test site.
$this->httpauth_method = !empty($prefs['httpauth_method']) ? $prefs['httpauth_method'] : CURLAUTH_BASIC;
$username = !empty($prefs['httpauth_username']) ? $prefs['httpauth_username'] : null;
$password = !empty($prefs['httpauth_password']) ? $prefs['httpauth_password'] : null;
if($username && $password)
{
$this->httpauth_credentials = $username . ':' . $password;
}
set_error_handler(array($this, 'errorHandler'));
$class = get_class($this);
// Iterate through all the methods in this class, unless a specific list of methods to run was passed.
$class_methods = get_class_methods($class);
if($methods)
{
$class_methods = array_intersect($class_methods, $methods);
}
foreach($class_methods as $method)
{
// If the current method starts with "test", run it - it's a test.
if(strtolower(substr($method, 0, 4)) == 'test')
{
// Insert a fail record. This will be deleted on completion to ensure that testing completed.
$method_info = new ReflectionMethod($class, $method);
$caller = array(
'file' => $method_info->getFileName(),
'line' => $method_info->getStartLine(),
'function' => $class . '->' . $method . '()',
);
// TODO lans.
$message = 'The test did not complete due to a fatal error.';
$completion_check_id = e107TestCase::insertAssert($this->testId, $class, false, $message, 'Completion check', $caller); // TODO lans.
$this->setUp();
try
{
$this->$method();
// Finish up.
} catch(Exception $e)
{
$this->exceptionHandler($e);
}
$this->tearDown();
// Remove the completion check record.
e107TestCase::deleteAssert($completion_check_id);
}
}
// Clear out the error messages and restore error handler.
e107::getMessage()->reset(false, false, true);
restore_error_handler();
}
/**
* Handle errors during test runs.
*
* Because this is registered in set_error_handler(), it has to be public.
*
* @see set_error_handler
*/
public function errorHandler($severity, $message, $file = null, $line = null)
{
if($severity & error_reporting())
{
// TODO lans.
$error_map = array(
E_STRICT => 'Run-time notice',
E_WARNING => 'Warning',
E_NOTICE => 'Notice',
E_CORE_ERROR => 'Core error',
E_CORE_WARNING => 'Core warning',
E_USER_ERROR => 'User error',
E_USER_WARNING => 'User warning',
E_USER_NOTICE => 'User notice',
E_RECOVERABLE_ERROR => 'Recoverable error',
);
$backtrace = debug_backtrace();
$this->error($message, $error_map[$severity], simpletest_get_last_caller($backtrace));
}
return true;
}
/**
* Handle exceptions.
*
* @see set_exception_handler
*/
protected function exceptionHandler($exception)
{
$backtrace = $exception->getTrace();
// Push on top of the backtrace the call that generated the exception.
array_unshift($backtrace, array(
'line' => $exception->getLine(),
'file' => $exception->getFile(),
));
$decoded = simpletest_decode_exception($exception);
// The exception message is run through simpletest_check_plain() by simpletest_decode_exception().
// TODO lans.
$message = e107::getParser()->lanVars('[type]: [message] in [function] (line [line] of [file]).', array(
'type' => $decoded['type'],
'message' => $decoded['message'],
'function' => $decoded['function'],
'line' => $decoded['line'],
'file' => $decoded['file'],
));
// TODO lans.
$this->error($message, 'Uncaught exception', simpletest_get_last_caller($backtrace));
}
/**
* Generates a random string of ASCII characters of codes 32 to 126.
*
* The generated string includes alpha-numeric characters and common misc characters. Use this method when testing
* general input where the content is not restricted.
*
* @param int $length
* Length of random string to generate.
*
* @return string
* Randomly generated string.
*/
public static function randomString($length = 8)
{
$str = '';
for($i = 0; $i < $length; $i++)
{
$str .= chr(mt_rand(32, 126));
}
return $str;
}
/**
* Generates a random string containing letters and numbers.
*
* The string will always start with a letter. The letters may be upper or lower case. This method is better for
* restricted inputs that do not accept certain characters. For example, when testing input fields that require
* machine readable values (i.e. without spaces and non-standard characters) this method is best.
*
* @param int $length
* Length of random string to generate.
*
* @return string
* Randomly generated string.
*/
public static function randomName($length = 8)
{
$values = array_merge(range(65, 90), range(97, 122), range(48, 57));
$max = count($values) - 1;
$str = chr(mt_rand(97, 122));
for($i = 1; $i < $length; $i++)
{
$str .= chr($values[mt_rand(0, $max)]);
}
return $str;
}
/**
* Converts a list of possible parameters into a stack of permutations.
*
* Takes a list of parameters containing possible values, and converts all of them into a list of items containing
* every possible permutation.
*
* Example:
* @code
* $parameters = array(
* 'one' => array(0, 1),
* 'two' => array(2, 3),
* );
*
* $permutations = $this->permute($parameters);
*
* // Result:
* $permutations == array(
* array('one' => 0, 'two' => 2),
* array('one' => 1, 'two' => 2),
* array('one' => 0, 'two' => 3),
* array('one' => 1, 'two' => 3),
* )
* @endcode
*
* @param array $parameters
* An associative array of parameters, keyed by parameter name, and whose values are arrays of parameter values.
*
* @return array
* A list of permutations, which is an array of arrays. Each inner array contains the full list of parameters
* that have been passed, but with a single value only.
*/
public static function generatePermutations($parameters)
{
$all_permutations = array(array());
foreach($parameters as $parameter => $values)
{
$new_permutations = array();
// Iterate over all values of the parameter.
foreach($values as $value)
{
// Iterate over all existing permutations.
foreach($all_permutations as $permutation)
{
// Add the new parameter value to existing permutations.
$new_permutations[] = $permutation + array($parameter => $value);
}
}
// Replace the old permutations with the new permutations.
$all_permutations = $new_permutations;
}
return $all_permutations;
}
}
/**
* Test case for e107 unit tests.
*
* These tests can not access the database nor files. Calling any e107 function that needs the database will throw
* exceptions.
*/
class e107UnitTestCase extends e107TestCase
{
/**
* The original prefix for MySQL connections.
*
* @var string
*/
protected $originalMySQLPrefix;
/**
* @var
*/
protected $originalSiteHash;
/**
* @var string
*/
protected $siteHash;
/**
* Constructor for e107UnitTestCase.
*/
function __construct($test_id = null)
{
parent::__construct($test_id);
global $mySQLprefix;
// Replace MySQL prefix on DB instances.
$this->originalMySQLPrefix = $mySQLprefix;
$this->originalSiteHash = e107::getInstance()->site_path;
$this->skipClasses[__CLASS__] = true;
// Generate a temporary prefixed database to ensure that tests have a clean starting point.
$this->databasePrefix = 'simpletest' . mt_rand(1000, 1000000);
$this->siteHash = 'simpletest/' . substr($this->databasePrefix, 10);
}
/**
* Sets up unit test environment.
*
* Unlike e107WebTestCase::setUp(), e107UnitTestCase::setUp() does not install plugins because tests are performed
* without accessing the database. Any required files must be explicitly included by the child class setUp() method.
*/
protected function setUp()
{
// Get path for test (media) directory.
$media_files_directory = rtrim(e_MEDIA_BASE, '/') . '/' . $this->siteHash;
// Get path for test (system) directory.
$system_files_directory = rtrim(e_SYSTEM_BASE, '/') . '/' . $this->siteHash;
// Prepare directories.
simpletest_file_prepare_directory($media_files_directory, 1);
simpletest_file_prepare_directory($system_files_directory, 1);
simpletest_rewrite_paths(array(
$this->originalSiteHash => $this->siteHash,
));
// Replace table prefixes on DB instances in order to avoid any kind of data modification on the current DB.
// Get all registered instances.
$instances = e107::getRegistry('_all_');
// Find DB instances and replace MySQL prefix on them.
foreach($instances as $instance_id => $instance)
{
// If the instance is a DB instance.
if(strpos($instance_id, 'SimpleTestE107TestCase') === false && strpos($instance_id, 'core/e107/singleton/db') === 0)
{
// Change MySQL prefix.
$instance->mySQLPrefix = $this->databasePrefix . '_';
}
}
simpletest_replace_constant('MPREFIX', $this->originalMySQLPrefix, $this->databasePrefix . '_');
// Set user agent to be consistent with web test case.
$_SERVER['HTTP_USER_AGENT'] = $this->databasePrefix;
}
protected function tearDown()
{
// Get back to the original connection prefix.
// Get all registered instances.
$instances = e107::getRegistry('_all_');
// Find DB instances and replace MySQL prefix on them.
foreach($instances as $instance_id => $instance)
{
// If the instance is a DB instance.
if(strpos($instance_id, 'SimpleTestE107TestCase') === false && strpos($instance_id, 'core/e107/singleton/db') === 0)
{
// Change MySQL prefix.
$instance->mySQLPrefix = $this->originalMySQLPrefix;
}
}
simpletest_restore_constant('MPREFIX');
// Get path for test (media) directory.
$media_files_directory = rtrim(e_MEDIA_BASE, '/') . '/' . $this->siteHash;
// Get path for test (system) directory.
$system_files_directory = rtrim(e_SYSTEM_BASE, '/') . '/' . $this->siteHash;
// Delete test files directories.
simpletest_file_delete_recursive($media_files_directory);
simpletest_file_delete_recursive($system_files_directory);
simpletest_restore_paths();
// Empty user agent.
$_SERVER['HTTP_USER_AGENT'] = '';
}
}
/**
* Test case for typical e107 tests.
*/
class e107WebTestCase extends e107TestCase
{
/**
* The new prefix for MySQL connections.
*
* @var string
*/
protected $databasePrefix;
/**
* The original prefix for MySQL connections.
*
* @var string
*/
protected $originalMySQLPrefix;
/**
* The current user logged in using the internal browser.
*
* @var bool
*/
protected $loggedInUser = false;
/**
* Additional cURL options.
*
* e107WebTestCase itself never sets this but always obeys what is set.
*/
protected $additionalCurlOptions = array();
/**
* The current cookie file used by cURL.
*
* We do not reuse the cookies in further runs, so we do not need a file
* but we still need cookie handling, so we set the jar to NULL.
*/
protected $cookieFile = null;
/**
* HTTP authentication method
*/
protected $httpauth_method = CURLAUTH_BASIC;
/**
* HTTP authentication credentials (<username>:<password>).
*/
protected $httpauth_credentials = null;
/**
* The handle of the current cURL connection.
*
* @var resource
*/
protected $curlHandle;
/**
* The current session name, if available.
*/
protected $session_name = null;
/**
* The current session ID, if available.
*/
protected $session_id = null;
/**
* The headers of the page currently loaded in the internal browser.
*
* @var array
*/
protected $headers;
/**
* @var
*/
protected $cookies;
/**
* The number of redirects followed during the handling of a request.
*/
protected $redirect_count;
/**
* The URL currently loaded in the internal browser.
*
* @var string
*/
protected $url;
/**
* The content of the page currently loaded in the internal browser.
*
* @var string
*/
protected $content;
/**
* The content of the page currently loaded in the internal browser (plain text version).
*
* @var string
*/
protected $plainTextContent;
/**
* The value of the e107.settings JavaScript variable for the page currently loaded in the internal browser.
*
* @var array
*/
protected $e107Settings;
/**
* The parsed version of the page.
*