-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHeaderInfo.t.php
122 lines (111 loc) · 3.58 KB
/
HeaderInfo.t.php
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?php
if (isset($argv)) {
print "Running outside of phpunit. Consider using phpunit.\n";
class PHPUnit_Framework_TestCase {}
}
class Test extends PHPUnit_Framework_TestCase {
const CLASS_NAME = 'IMAP\\HeaderInfo';
const FILE_NAME = '../src/IMAP/HeaderInfo.php';
public static function get_test_data() {
return (object) array(
'date' => 'Wed, 26 Aug 2015 02:41:35 +0200',
'Date' => 'Wed, 26 Aug 2015 02:41:35 +0200',
'subject' => 'Test message',
'Subject' => 'Test message',
'message_id' => '<[email protected]>',
'toaddress' => '[email protected]',
'to' => array(
(object) array(
'mailbox' => 'bla',
'host' => 'zoho.com',
),
),
'fromaddress' => 'Mr. Bean <[email protected]>',
'from' => array(
(object) array(
'personal' => 'Mr. Bean',
'mailbox' => 'beanbag',
'host' => 'bean.org',
),
),
'reply_toaddress' => 'Mr. Bean <[email protected]>',
'reply_to' => array(
(object) array(
'personal' => 'Mr. Bean',
'mailbox' => 'beanbag',
'host' => 'bean.org',
),
),
'senderaddress' => 'Mr. Bean <[email protected]>',
'sender' => array(
(object) array(
'personal' => 'Mr. Bean',
'mailbox' => 'beanbag',
'host' => 'bean.org',
),
),
'Recent' => 'N',
'Unseen' => ' ',
'Flagged' => ' ',
'Answered' => ' ',
'Deleted' => ' ',
'Draft' => ' ',
'Msgno' => ' 1',
'MailDate' => '26-Aug-2015 02:41:35 +0200',
'Size' => '589',
'udate' => 1440549695,
'uidl' => '<[email protected]>.ebb003572fb7275f4d56de37104fa58e',
);
}
public function testRequire() {
$file = __DIR__ . '/' . static::FILE_NAME;
$this->assertFileExists($file);
$this->assertTrue((boolean) include $file, 'Check include result');
}
public function testClassExists() {
$class = static::CLASS_NAME;
$this->assertTrue(class_exists($class), 'Check that class name "' . $class . '" exists.');
}
public function testMethodsExist() {
$class = static::CLASS_NAME;
$methods = array(
'__construct' => ReflectionMethod::IS_PUBLIC,
'__set' => ReflectionMethod::IS_PUBLIC,
'headerinfo_to_uidl' => ReflectionMethod::IS_PUBLIC | ReflectionMethod::IS_STATIC,
'uidl' => ReflectionMethod::IS_PUBLIC,
);
foreach ($methods as $name => $expected_modifiers) {
$exists = method_exists($class, $name);
$this->assertTrue($exists, "Check method $class::$name() exists.");
if ($exists) {
$method = new ReflectionMethod($class, $name);
$actual_modifiers = $method->getModifiers() & (
ReflectionMethod::IS_STATIC |
ReflectionMethod::IS_PUBLIC |
ReflectionMethod::IS_PROTECTED |
ReflectionMethod::IS_PRIVATE |
ReflectionMethod::IS_ABSTRACT |
ReflectionMethod::IS_FINAL
);
#error_log("$name expected: " . $expected_modifiers);
#error_log("$name actual: " . $actual_modifiers);
$this->assertEquals($expected_modifiers, $actual_modifiers, "Expected $class::$name() modifiers to be \"" . join(' ', Reflection::getModifierNames($expected_modifiers)) . '" but got "' . join(' ', Reflection::getModifierNames($actual_modifiers)) . '" instead.');
}
}
}
public function testCreate() {
$class = static::CLASS_NAME;
$o = new $class(static::get_test_data());
$this->assertTrue(is_object($o), 'Create object.');
$uidl = $o->uidl();
$this->assertEquals('string', gettype($uidl), 'Calling uidl() returns a string.');
}
}
if (isset($argv)) {
require_once(__DIR__ . '/' . Test::FILE_NAME);
$class = Test::CLASS_NAME;
$data = Test::get_test_data();
$o = new $class($data);
$uidl = $o->uidl();
print "UIDL: $uidl\n";
}