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
|
<?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_regex_email_test extends phpbb_test_case
{
protected $regex;
public function setUp()
{
$this->regex = '#^' . get_preg_expression('email') . '$#i';
}
public function positive_match_data()
{
return array(
array('nobody@phpbb.com'),
array('Nobody@sub.phpbb.com'),
array('alice.bob@foo.phpbb.com'),
array('alice-foo@bar.phpbb.com'),
array('alice_foo@bar.phpbb.com'),
array('alice+tag@foo.phpbb.com'),
array('alice&tag@foo.phpbb.com'),
//array('"John Doe"@example.com'),
//array('Alice@[192.168.2.1]'), // IPv4
//array('Bob@[2001:0db8:85a3:08d3:1319:8a2e:0370:7344]'), // IPv6
);
}
public function negative_match_data()
{
return array(
array('foo.example.com'), // @ is missing
array('.foo.example.com'), // . as first character
array('Foo.@example.com'), // . is last in local part
array('foo..123@example.com'), // . doubled
array('a@b@c@example.com'), // @ doubled
array('()[]\;:,<>@example.com'), // invalid characters
array('abc(def@example.com'), // invalid character (
array('abc)def@example.com'), // invalid character )
array('abc[def@example.com'), // invalid character [
array('abc]def@example.com'), // invalid character ]
array('abc\def@example.com'), // invalid character \
array('abc;def@example.com'), // invalid character ;
array('abc:def@example.com'), // invalid character :
array('abc,def@example.com'), // invalid character ,
array('abc<def@example.com'), // invalid character <
array('abc>def@example.com'), // invalid character >
);
}
/**
* @dataProvider positive_match_data
*/
public function test_positive_match($email)
{
$this->assertEquals(1, preg_match($this->regex, $email));
}
/**
* @dataProvider negative_match_data
*/
public function test_negative_match($address)
{
$this->assertEquals(0, preg_match($this->regex, $email));
}
}
|