forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimap_headerinfo_basic.phpt
132 lines (118 loc) · 2.29 KB
/
imap_headerinfo_basic.phpt
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
123
124
125
126
127
128
129
130
131
132
--TEST--
imap_headerinfo() function : basic functionality
--CREDITS--
Olivier Doucet
--EXTENSIONS--
imap
--SKIPIF--
<?php
require_once(__DIR__.'/setup/skipif.inc');
?>
--FILE--
<?php
require_once(__DIR__.'/setup/imap_include.inc');
$stream_id = setup_test_mailbox('imapheaderinfobasic', 1);
$z = imap_headerinfo($stream_id, 1);
$fields = array ('toaddress','to','fromaddress','from',
'reply_toaddress','reply_to',
'senderaddress', 'sender',
'subject','Subject',
'Recent','Unseen','Flagged','Answered','Deleted','Draft',
'Msgno','MailDate','Size','udate');
echo "Check general fields\n";
foreach ($fields as $key) {
var_dump(isset($z->$key));
}
echo "Check type\n";
var_dump($z->toaddress);
var_dump($z->fromaddress);
var_dump($z->reply_toaddress);
var_dump($z->senderaddress);
var_dump($z->subject);
var_dump($z->Subject);
if ($z->Recent == 'R' || $z->Recent == 'N' || $z->Recent == ' ') {
echo "Recent: OK";
} else {
echo "Recent: error: ".$z->Recent;
}
echo "\n";
if ($z->Unseen == 'U' || $z->Unseen == ' ') {
echo "Unseen: OK";
} else {
echo "Unseen: error: ".$z->Unseen;
}
echo "\n";
if ($z->Flagged == 'F' || $z->Flagged == ' ') {
echo "Flagged: OK";
} else {
echo "Flagged: error: ".$z->Flagged;
}
echo "\n";
if ($z->Answered == 'A' || $z->Answered == ' ') {
echo "Answered: OK";
} else {
echo "Answered: error";
}
echo "\n";
if ($z->Deleted == 'D' || $z->Deleted == ' ') {
echo "Deleted: OK";
} else {
echo "Deleted: error";
}
echo "\n";
if ($z->Draft == 'X' || $z->Draft == ' ') {
echo "Draft: OK";
} else {
echo "Draft: error";
}
echo "\n";
var_dump($z->Msgno);
var_dump($z->Size);
var_dump($z->udate);
imap_close($stream_id);
?>
--CLEAN--
<?php
$mailbox_suffix = 'imapheaderinfobasic';
require_once('setup/clean.inc');
?>
--EXPECTF--
Create a temporary mailbox and add 1 msgs
New mailbox created
Check general fields
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
bool(true)
Check type
string(%d) "%s"
string(%d) "%s"
string(%d) "%s"
string(%d) "%s"
string(%d) "%s"
string(%d) "%s"
Recent: OK
Unseen: OK
Flagged: OK
Answered: OK
Deleted: OK
Draft: OK
string(%d) "%s"
string(%d) "%d"
int(%d)