Lines Matching full:test
13 array('_foo@test.com', true), // FS#1049
25 array('test@example', true), // we allow local addresses
29 array('test@example.com', true),
30 array('TEST@example.com', true),
32 array('test+test@example.com', true),
33 array('test-test@example.com', true),
37 array('"[[ test ]]"@example.com', true),
38 array('test.test@example.com', true),
39 array('test."test"@example.com', true),
40 array('"test@test"@example.com', true),
41 array('test@123.123.123.123', true),
42 array('test@[123.123.123.123]', true),
43 array('test@example.example.com', true),
44 array('test@example.example.example.com', true),
46 array('test.example.com', false),
47 array('test.@example.com', false),
48 array('test..test@example.com', false),
49 array('.test@example.com', false),
50 array('test@test@example.com', false),
51 array('test@@example.com', false),
52 array('-- test --@example.com', false), // No spaces allowed in local part
53 array('[test]@example.com', false), // Square brackets only allowed within quotes
54 array('"test\test"@example.com', false), // Quotes cannot contain backslash
55 array('"test"test"@example.com', false), // Quotes cannot be nested
57 array('test@.', false),
58 array('test@example.', false),
59 array('test@.org', false),
61 …array('test@12345678901234567890123456789012345678901234567890123456789012345678901234567890123456…
62 array('test@[123.123.123.123', false),
63 array('test@123.123.123.123]', false),