diff options
Diffstat (limited to 'ext/filter/tests')
| -rw-r--r-- | ext/filter/tests/005.phpt | 2 | ||||
| -rw-r--r-- | ext/filter/tests/bug39763.phpt | 4 | ||||
| -rw-r--r-- | ext/filter/tests/bug44779.phpt | 2 | ||||
| -rw-r--r-- | ext/filter/tests/bug46973.phpt | 2 | ||||
| -rw-r--r-- | ext/filter/tests/bug47435.phpt | 2 | ||||
| -rw-r--r-- | ext/filter/tests/bug47745.phpt | 2 | ||||
| -rw-r--r-- | ext/filter/tests/bug48762.phpt | 2 | ||||
| -rw-r--r-- | ext/filter/tests/bug50158.phpt | 2 | ||||
| -rw-r--r-- | ext/filter/tests/bug55478.phpt | 11 |
9 files changed, 28 insertions, 1 deletions
diff --git a/ext/filter/tests/005.phpt b/ext/filter/tests/005.phpt index f44379153..b3735f562 100644 --- a/ext/filter/tests/005.phpt +++ b/ext/filter/tests/005.phpt @@ -1,5 +1,7 @@ --TEST-- GET/REQUEST Test with fifa example data +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> --INI-- filter.default=stripped --GET-- diff --git a/ext/filter/tests/bug39763.phpt b/ext/filter/tests/bug39763.phpt index 36ee41561..69d451bbd 100644 --- a/ext/filter/tests/bug39763.phpt +++ b/ext/filter/tests/bug39763.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #39763 (filter applies magic_quotes twice in parse_str()) +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> --INI-- magic_quotes_gpc=1 filter.default= @@ -14,4 +16,4 @@ echo $val . "\n"; --EXPECT-- Deprecated: Directive 'magic_quotes_gpc' is deprecated in PHP 5.3 and greater in Unknown on line 0 \"probably a bug\" -\"probably a bug\"
\ No newline at end of file +\"probably a bug\" diff --git a/ext/filter/tests/bug44779.phpt b/ext/filter/tests/bug44779.phpt index 33a4fe4ff..65a1e094e 100644 --- a/ext/filter/tests/bug44779.phpt +++ b/ext/filter/tests/bug44779.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #44779 (filter returns NULL in CLI when it shouldn't) +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> --FILE-- <?php var_dump(filter_input(INPUT_SERVER, "PHP_SELF")); diff --git a/ext/filter/tests/bug46973.phpt b/ext/filter/tests/bug46973.phpt index 01a5118cf..eacacf5b3 100644 --- a/ext/filter/tests/bug46973.phpt +++ b/ext/filter/tests/bug46973.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #46973 (IPv6 address filter rejects valid address) +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> --FILE-- <?php diff --git a/ext/filter/tests/bug47435.phpt b/ext/filter/tests/bug47435.phpt index 42705fdc6..957a00194 100644 --- a/ext/filter/tests/bug47435.phpt +++ b/ext/filter/tests/bug47435.phpt @@ -1,5 +1,7 @@ --TEST--
Bug #47435 (FILTER_FLAG_NO_PRIV_RANGE and FILTER_FLAG_NO_RES_RANGE don't work with ipv6)
+--SKIPIF--
+<?php if (!extension_loaded("filter")) die("skip"); ?>
--FILE--
<?php
var_dump(filter_var("FC00::1", FILTER_VALIDATE_IP, FILTER_FLAG_IPV6));
diff --git a/ext/filter/tests/bug47745.phpt b/ext/filter/tests/bug47745.phpt index a8656fd93..feb0c2b6d 100644 --- a/ext/filter/tests/bug47745.phpt +++ b/ext/filter/tests/bug47745.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #47745 (FILTER_VALIDATE_INT doesn't allow minimum integer) +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> --FILE-- <?php $s = (string)(-PHP_INT_MAX-1); diff --git a/ext/filter/tests/bug48762.phpt b/ext/filter/tests/bug48762.phpt index 1737f0a75..195a61664 100644 --- a/ext/filter/tests/bug48762.phpt +++ b/ext/filter/tests/bug48762.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #48762 (IPv6 address filter still rejects valid address) +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> --FILE-- <?php diff --git a/ext/filter/tests/bug50158.phpt b/ext/filter/tests/bug50158.phpt index fbe2ca3af..72c31a720 100644 --- a/ext/filter/tests/bug50158.phpt +++ b/ext/filter/tests/bug50158.phpt @@ -1,5 +1,7 @@ --TEST-- Bug #50158 (FILTER_VALIDATE_EMAIL fails with valid addresses containing = or ?) +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> --FILE-- <?php diff --git a/ext/filter/tests/bug55478.phpt b/ext/filter/tests/bug55478.phpt new file mode 100644 index 000000000..243d7078e --- /dev/null +++ b/ext/filter/tests/bug55478.phpt @@ -0,0 +1,11 @@ +--TEST-- +Bug #55478 (FILTER_VALIDATE_EMAIL fails with internationalized domain name addresses containing >1 -) +--SKIPIF-- +<?php if (!extension_loaded("filter")) die("skip"); ?> +--FILE-- +<?php +$email_address = "test@xn--example--7za.de"; // "example-รค.de" +var_dump(filter_var($email_address, FILTER_VALIDATE_EMAIL)); +?> +--EXPECT-- +string(24) "test@xn--example--7za.de" |
