Skip to content

Commit 35f2ba6

Browse files
committed
Modernize smoke tests of recently touched classes
1 parent b39b9a5 commit 35f2ba6

3 files changed

+49
-1
lines changed

tests/CallbackTransformIterator_000.phpt

+24
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ $global_vars = array();
88
$cr_okay = FALSE;
99

1010
$source = file_get_contents("CallbackTransformIterator.php");
11+
$lines = preg_split('/(\\x0a|\\x0d)+/', $source, 0, PREG_SPLIT_NO_EMPTY);
12+
1113
if(preg_match('/\?>\s*$/', $source))
1214
echo "CallbackTransformIterator has closing PHP tag at end\n";
1315
else
@@ -51,9 +53,31 @@ else
5153
print "CallbackTransformIterator added these variables to global space: ".
5254
implode(", ", array_diff(array_keys($GLOBALS), $global_vars)).
5355
"\n";
56+
57+
$class_defs = array();
58+
foreach($lines as $line) {
59+
if(preg_match('/^\s*((abstract)\s+)?(class|interface|trait)\s+([a-z0-9_]+)/i', $line, $matches)) {
60+
$new_def = "$matches[3] $matches[4]";
61+
if($matches[3] == 'class'
62+
&& preg_match('/Exception$/', $matches[4])) {
63+
foreach($class_defs as $class_def) {
64+
if(preg_match("/^".preg_replace("/^(trait|interface)/", "class", $class_def)."/", $new_def))
65+
continue 2;
66+
}
67+
}
68+
$class_defs[] = $new_def;
69+
}
70+
}
71+
if(count($class_defs) <= 1) {
72+
print "CallbackTransformIterator contains at most one class, interface, or trait (except for Exception classes)\n";
73+
} else {
74+
print "CallbackTransformIterator contains multiple classes/interfaces/traits:\n";
75+
print " ".implode("\n ", $class_defs)."\n";
76+
}
5477
?>
5578
--EXPECT--
5679
CallbackTransformIterator has closing PHP tag at end
5780
CallbackTransformIterator does not contain CR characters (or is consistent and in a folder marked with DOS_LINE_ENDINGS)
5881
Parsing of CallbackTransformIterator was silent
5982
CallbackTransformIterator did not pollute global variable space
83+
CallbackTransformIterator contains at most one class, interface, or trait (except for Exception classes)

tests/CartesianProductIterator_000.phpt

+24
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ $global_vars = array();
88
$cr_okay = FALSE;
99

1010
$source = file_get_contents("CartesianProductIterator.php");
11+
$lines = preg_split('/(\\x0a|\\x0d)+/', $source, 0, PREG_SPLIT_NO_EMPTY);
12+
1113
if(preg_match('/\?>\s*$/', $source))
1214
echo "CartesianProductIterator has closing PHP tag at end\n";
1315
else
@@ -51,9 +53,31 @@ else
5153
print "CartesianProductIterator added these variables to global space: ".
5254
implode(", ", array_diff(array_keys($GLOBALS), $global_vars)).
5355
"\n";
56+
57+
$class_defs = array();
58+
foreach($lines as $line) {
59+
if(preg_match('/^\s*((abstract)\s+)?(class|interface|trait)\s+([a-z0-9_]+)/i', $line, $matches)) {
60+
$new_def = "$matches[3] $matches[4]";
61+
if($matches[3] == 'class'
62+
&& preg_match('/Exception$/', $matches[4])) {
63+
foreach($class_defs as $class_def) {
64+
if(preg_match("/^".preg_replace("/^(trait|interface)/", "class", $class_def)."/", $new_def))
65+
continue 2;
66+
}
67+
}
68+
$class_defs[] = $new_def;
69+
}
70+
}
71+
if(count($class_defs) <= 1) {
72+
print "CartesianProductIterator contains at most one class, interface, or trait (except for Exception classes)\n";
73+
} else {
74+
print "CartesianProductIterator contains multiple classes/interfaces/traits:\n";
75+
print " ".implode("\n ", $class_defs)."\n";
76+
}
5477
?>
5578
--EXPECT--
5679
CartesianProductIterator has closing PHP tag at end
5780
CartesianProductIterator does not contain CR characters (or is consistent and in a folder marked with DOS_LINE_ENDINGS)
5881
Parsing of CartesianProductIterator was silent
5982
CartesianProductIterator did not pollute global variable space
83+
CartesianProductIterator contains at most one class, interface, or trait (except for Exception classes)

tests/traitIteratorCountableEmpty_000.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ foreach($lines as $line) {
6161
if($matches[3] == 'class'
6262
&& preg_match('/Exception$/', $matches[4])) {
6363
foreach($class_defs as $class_def) {
64-
if(preg_match("/^$class_def/", $new_def))
64+
if(preg_match("/^".preg_replace("/^(trait|interface)/", "class", $class_def)."/", $new_def))
6565
continue 2;
6666
}
6767
}

0 commit comments

Comments
 (0)