diff options
author | Andreas Fischer <bantu@phpbb.com> | 2010-04-09 00:39:12 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2010-05-25 12:08:51 +0200 |
commit | 222173adae59af660c18ce89c606b3ee212d9a4a (patch) | |
tree | 979aa15ec849a7565854f44b5fb733626c20a41a /tests/regex | |
parent | 6d7e30ae995fe0791c2bced0974b0445fa769ee9 (diff) | |
download | forums-222173adae59af660c18ce89c606b3ee212d9a4a.tar forums-222173adae59af660c18ce89c606b3ee212d9a4a.tar.gz forums-222173adae59af660c18ce89c606b3ee212d9a4a.tar.bz2 forums-222173adae59af660c18ce89c606b3ee212d9a4a.tar.xz forums-222173adae59af660c18ce89c606b3ee212d9a4a.zip |
[ticket/9626] Adding tests for regular expressions.
Adding tests for the IPv6 regular expression returned by get_preg_expression()
PHPBB3-9626
Diffstat (limited to 'tests/regex')
-rw-r--r-- | tests/regex/all_tests.php | 40 | ||||
-rw-r--r-- | tests/regex/ipv6.php | 85 |
2 files changed, 125 insertions, 0 deletions
diff --git a/tests/regex/all_tests.php b/tests/regex/all_tests.php new file mode 100644 index 0000000000..aeb242b78b --- /dev/null +++ b/tests/regex/all_tests.php @@ -0,0 +1,40 @@ +<?php +/** +* +* @package testing +* @copyright (c) 2010 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ + +if (!defined('PHPUnit_MAIN_METHOD')) +{ + define('PHPUnit_MAIN_METHOD', 'phpbb_regex_all_tests::main'); +} + +require_once 'test_framework/framework.php'; +require_once 'PHPUnit/TextUI/TestRunner.php'; + +require_once 'regex/ipv6.php'; + +class phpbb_regex_all_tests +{ + public static function main() + { + PHPUnit_TextUI_TestRunner::run(self::suite()); + } + + public static function suite() + { + $suite = new PHPUnit_Framework_TestSuite('phpBB Regular Expressions'); + + $suite->addTestSuite('phpbb_ipv6_test'); + + return $suite; + } +} + +if (PHPUnit_MAIN_METHOD == 'phpbb_regex_all_tests::main') +{ + phpbb_regex_all_tests::main(); +} diff --git a/tests/regex/ipv6.php b/tests/regex/ipv6.php new file mode 100644 index 0000000000..7b0a48833f --- /dev/null +++ b/tests/regex/ipv6.php @@ -0,0 +1,85 @@ +<?php +/** +* +* @package testing +* @copyright (c) 2010 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ + +require_once 'test_framework/framework.php'; +require_once '../phpBB/includes/functions.php'; + +class phpbb_ipv6_test extends phpbb_test_case +{ + protected $regex; + + public function setUp() + { + $this->regex = get_preg_expression('ipv6'); + } + + public function positive_match_data() + { + return array( + // Full length IPv6 address + array('2001:0db8:85a3:0000:0000:8a2e:0370:1337'), + + // No leading zeroes in the group + array('2001:db8:85a3:0:0:8a2e:370:1337'), + array('2001:db8:85a3:c:d:8a2e:370:1337'), + + // Consecutive all-zero groups + array('2001:db8:85a3::8a2e:370:1337'), + + // Last 32bit in dotted quad notation + array('2001:db8:0:1::192.168.0.2'), + + // Mapped IPv4 + array('::ffff:c000:280'), + array('::ffff:192.0.2.128'), + + // More tests + array('::'), + array('0:0:0:0:0:0:0:0'), + + array('::1'), + array('0:0::0:0:1'), + array('0:0:0:0:0:0:0:1'), + ); + } + + public function negative_match_data() + { + return array( + // IPv4 address + array('192.168.0.2'), + + // Out of hex scope + array('abcd:efgh:0000::0'), + + // Double :: + array('2001::23de::2002'), + + // Too many blocks + array('2001:0db8:85a3:08d3:1319:8a2e:0370:1337:4430'), + ); + } + + /** + * @dataProvider positive_match_data + */ + public function test_positive_match($address) + { + $this->assertEquals(1, preg_match($this->regex, $address)); + } + + /** + * @dataProvider negative_match_data + */ + public function test_negative_match($address) + { + $this->assertEquals(0, preg_match($this->regex, $address)); + } +} + |