-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathClient.t.php
120 lines (107 loc) · 3.78 KB
/
Client.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
<?php
if (isset($argv)) {
print "Usage:\n";
print 'phpunit ' . $argv[0] . "\n";
print "or:\n";
print 'MAILBOX=... USER=... PASS=... phpunit ' . $argv[0] . "\n";
class PHPUnit_Framework_TestCase {}
}
getenv('MAILBOX') && define('IMAP_TEST_MAILBOX', getenv('MAILBOX'));
getenv('USER') && define('IMAP_TEST_USER', getenv('USER'));
getenv('PASS') && define('IMAP_TEST_PASS', getenv('PASS'));
if (!defined('IMAP_TEST_MAILBOX')) {
define('IMAP_TEST_MAILBOX', '{pop.zoho.com:995/pop3/ssl/novalidate-cert}'); # free mail service
}
class Test extends PHPUnit_Framework_TestCase {
const CLASS_NAME = 'IMAP\\Client';
const FILE_NAME = '../src/IMAP/Client.php';
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,
'__call' => ReflectionMethod::IS_PUBLIC,
'__destruct' => ReflectionMethod::IS_PUBLIC,
'headerinfo' => ReflectionMethod::IS_PUBLIC,
'msgno' => ReflectionMethod::IS_PUBLIC,
'uid' => ReflectionMethod::IS_PUBLIC,
#'register' => ReflectionMethod::IS_PUBLIC | ReflectionMethod::IS_STATIC,
);
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() {
if (defined('IMAP_TEST_MAILBOX') && defined('IMAP_TEST_USER') && defined('IMAP_TEST_PASS')) {
$class = static::CLASS_NAME;
$o = new $class(
IMAP_TEST_MAILBOX,
IMAP_TEST_USER,
IMAP_TEST_PASS
);
$this->assertTrue(is_object($o), 'Create object.');
$num_msg = $o->num_msg();
$this->assertEquals('integer', gettype($num_msg), 'Calling num_msgs() returns an int.');
}
}
}
if (isset($argv)) {
require_once(__DIR__ . '/' . Test::FILE_NAME);
$class = Test::CLASS_NAME;
if (defined('IMAP_TEST_MAILBOX') && defined('IMAP_TEST_USER') && defined('IMAP_TEST_PASS')) {
$o = new $class(
IMAP_TEST_MAILBOX,
IMAP_TEST_USER,
IMAP_TEST_PASS,
null,
null,
null,
array(
#'debug' => true
)
);
$num_msg = $o->num_msg();
print "num_msg: $num_msg\n";
#print_r($o->mailboxmsginfo());
#print_r($o->fetch_overview('1:' . $num_msg)); die;
for ($msgno=1; $msgno<=$num_msg; $msgno++) {
print "\nmsgno: $msgno\n";
$uid = $o->uid($msgno);
print "uid from msgno: $uid\n";
print "msgno from uid: " . $o->msgno($uid) . "\n";
$headerinfo = $o->headerinfo($msgno);
$message_id = $headerinfo->message_id;
print "message_id: $message_id\n";
print 'UIDL: ' . $headerinfo->uidl() . "\n";
#print_r($headerinfo);
#print_r(get_object_vars($headerinfo)); die;
print "\n" . $o->fetchheader($msgno, FT_INTERNAL) . "\n"; die;
}
}
else {
print "Required defines missing!\n";
}
}