summaryrefslogtreecommitdiff
path: root/test/build_emailTest.php
blob: 89b098962b9f527daa8ecae50fb6fa037ff3f2ae (plain)
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?php

require_once(__DIR__ . '/../src/build_email.php');

class build_email_test extends PHPUnit_Framework_TestCase {
  /** @dataProvider build_email_text_data */
  public function test_build_email_text($text, $edit, $expected) {
    $this->assertEquals($expected, build_email_text($text, $edit));
  }

  public function build_email_text_data() {
    return array(
      array('foo bar', false, 'foo bar'),
      array('foo bar', true, "[This message has been edited.]

foo bar")
    );
  }
 
  public function test_build_email_footer() {
    $this->assertEquals(
      "
_______________________________________________
Read this topic online here:
http://www.example.com/viewtopic.php?p=42#p42",
      build_email_footer(42, 'http://www.example.com')
    );
  }

  /** @dataProvider build_email_from_data */
  public function test_build_email_from($name, $email, $expected) {
    $this->assertEquals($expected, build_email_from($name, $email));
  }

  public function build_email_from_data() {
    return array(
      array('Heizölrückstoßabdämpfung', 'foo@example.com', '=?UTF-8?B?SGVpesO2bHLDvGNrc3Rvw59hYmTDpG1wZnVuZw==?= <foo@example.com>'),
      array('Joel Uckelman', 'uckelman@nomic.net', 'Joel Uckelman <uckelman@nomic.net>'),
      array('L.Tankersley', 'leland53@comcast.net', '"L.Tankersley" <leland53@comcast.net>')
    );
  }

  /** @dataProvider build_email_subject_data */
  public function test_build_email_subject($ftag, $subject, $reply, $edit, $expected) {
    $this->assertEquals(
      $expected,
      build_email_subject($ftag, $subject, $reply, $edit)
    );
  }

  public function build_email_subject_data() {
    return array(
      array('[f]', '', false, false, '[f] (no subject)'),
      array('[f]', '', true, false, 'Re: [f] (no subject)'),
      array('[f]', 'Subject', false, false, '[f] Subject'),
      array('[f]', 'Re: Re: Subject', true, false, 'Re: [f] Subject'),
      array('[f]', '', false, true, 'Edit: [f] (no subject)'),
      array('[f]', '', true, true, 'Edit: Re: [f] (no subject)'),
      array('[f]', 'Subject', false, true, 'Edit: [f] Subject'),
      array('[f]', 'Subject', true, true, 'Edit: Re: [f] Subject')
    );
  }

  protected $default_headers = array( 
    'To'          => 'messages@vassalengine.org',
    'From'        => 'Joel Uckelman <uckelman@nomic.net>',
    'Sender'      => 'forum-bridge@vassalengine.org',
    'Subject'     => 'Test message',
    'Date'        => 'Sun, 31 Oct 2010 08:46:00 -0700', 
    'Message-ID'  => '<20100302094228.33F0310091@charybdis.ellipsis.cx>',
    'X-BeenThere' => 'http://www.example.com',
    'In-Reply-To' => '<1267473003.m2f.17543@www.vassalengine.org>',
    'References'  => '<1267171317.m2f.17507@www.vassalengine.org> <1267473003.m2f.17543@www.vassalengine.org>'
  );

  protected $default_headers_params = array(
    'Joel Uckelman',
    'uckelman@nomic.net',
    'messages@vassalengine.org',
    'forum-bridge@vassalengine.org',
    'Test message',
    1288539960,
    '<20100302094228.33F0310091@charybdis.ellipsis.cx>',
    'http://www.example.com',
    '<1267473003.m2f.17543@www.vassalengine.org>',
    '<1267171317.m2f.17507@www.vassalengine.org> <1267473003.m2f.17543@www.vassalengine.org>'
  );

  protected function call_build_email_headers(array $headers, array $params) {
    date_default_timezone_set('America/Phoenix');
    $this->assertEquals(
      $headers,
      build_email_headers(
        $params[0],
        $params[1],
        $params[2],
        $params[3],
        $params[4],
        $params[5],
        $params[6],
        $params[7],
        $params[8],
        $params[9]
      )
    );
  }

  public function test_build_email_headers() {
    $headers = $this->default_headers;
    $headers_params = $this->default_headers_params;
    $this->call_build_email_headers($headers, $headers_params);
  }

  public function test_build_email_headers_no_in_reply_to() {
    $headers = $this->default_headers;
    $headers_params = $this->default_headers_params;

    unset($headers['In-Reply-To']);
    $headers_params[8] = null;

    $this->call_build_email_headers($headers, $headers_params);
  }

  public function test_build_email_headers_no_references() {
    $headers = $this->default_headers;
    $headers_params = $this->default_headers_params;

    unset($headers['References']);
    $headers_params[9] = null;

    $this->call_build_email_headers($headers, $headers_params);
  }

  public function test_build_email_headers_utf8_subject() {
    $headers = $this->default_headers;
    $headers_params = $this->default_headers_params;
    
    $headers['Subject'] = '=?UTF-8?B?SGVpesO2bHLDvGNrc3Rvw59hYmTDpG1wZnVuZw==?=';
    $headers_params[4] = 'Heizölrückstoßabdämpfung';

    $this->call_build_email_headers($headers, $headers_params);
  }

  public function test_build_email_headers_utf8_username() {
    $headers = $this->default_headers;
    $headers_params = $this->default_headers_params;
    
    $headers['From'] = '=?UTF-8?B?SGVpesO2bHLDvGNrc3Rvw59hYmTDpG1wZnVuZw==?= <uckelman@nomic.net>'; 
    $headers_params[0] = 'Heizölrückstoßabdämpfung';

    $this->call_build_email_headers($headers, $headers_params);
  }

  public function test_build_email_body_no_attachments() {
    $headers = array();
    $text = 'This is some test text.';
    $footer = "
_______________________________________________
Read this topic online here:
http://www.example.com/viewtopic.php?p=42#p42";
    $attachments = null;

    $body = build_email_body($headers, $text, $attachments, $footer);


    $this->assertEquals('text/plain; charset=UTF-8; format=flowed', $headers['Content-Type']);
    $this->assertEquals('8bit', $headers['Content-Transfer-Encoding']);
    $this->assertEquals("$text\n$footer", $body);
  }

  public function test_build_email_body_attachments() {
    // FIXME: This is kind of a complex test to write, because the result
    // is a Mail_mimePart object.
    $this->markTestIncomplete();
  }
}

?>