|
ferencd@0
|
1 //
|
|
ferencd@0
|
2 // VMime library (http://www.vmime.org)
|
|
ferencd@0
|
3 // Copyright (C) 2002-2013 Vincent Richard <vincent@vmime.org>
|
|
ferencd@0
|
4 //
|
|
ferencd@0
|
5 // This program is free software; you can redistribute it and/or
|
|
ferencd@0
|
6 // modify it under the terms of the GNU General Public License as
|
|
ferencd@0
|
7 // published by the Free Software Foundation; either version 3 of
|
|
ferencd@0
|
8 // the License, or (at your option) any later version.
|
|
ferencd@0
|
9 //
|
|
ferencd@0
|
10 // This program is distributed in the hope that it will be useful,
|
|
ferencd@0
|
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
ferencd@0
|
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
ferencd@0
|
13 // General Public License for more details.
|
|
ferencd@0
|
14 //
|
|
ferencd@0
|
15 // You should have received a copy of the GNU General Public License along
|
|
ferencd@0
|
16 // with this program; if not, write to the Free Software Foundation, Inc.,
|
|
ferencd@0
|
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
ferencd@0
|
18 //
|
|
ferencd@0
|
19 // Linking this library statically or dynamically with other modules is making
|
|
ferencd@0
|
20 // a combined work based on this library. Thus, the terms and conditions of
|
|
ferencd@0
|
21 // the GNU General Public License cover the whole combination.
|
|
ferencd@0
|
22 //
|
|
ferencd@0
|
23
|
|
ferencd@0
|
24 #include "tests/testUtils.hpp"
|
|
ferencd@0
|
25
|
|
ferencd@0
|
26 #include "vmime/utility/outputStreamByteArrayAdapter.hpp"
|
|
ferencd@0
|
27
|
|
ferencd@0
|
28
|
|
ferencd@0
|
29 VMIME_TEST_SUITE_BEGIN(outputStreamByteArrayAdapterTest)
|
|
ferencd@0
|
30
|
|
ferencd@0
|
31 VMIME_TEST_LIST_BEGIN
|
|
ferencd@0
|
32 VMIME_TEST(testWrite)
|
|
ferencd@0
|
33 VMIME_TEST(testWriteBinary)
|
|
ferencd@0
|
34 VMIME_TEST(testWriteCRLF)
|
|
ferencd@0
|
35 VMIME_TEST_LIST_END
|
|
ferencd@0
|
36
|
|
ferencd@0
|
37
|
|
ferencd@0
|
38 void testWrite()
|
|
ferencd@0
|
39 {
|
|
ferencd@0
|
40 vmime::byteArray bytes;
|
|
ferencd@0
|
41
|
|
ferencd@0
|
42 vmime::utility::outputStreamByteArrayAdapter stream(bytes);
|
|
ferencd@0
|
43 stream << "some data";
|
|
ferencd@0
|
44 stream.flush();
|
|
ferencd@0
|
45
|
|
ferencd@0
|
46 VASSERT_EQ("Write 1", 0, memcmp("some data", &bytes[0], 9));
|
|
ferencd@0
|
47
|
|
ferencd@0
|
48 stream.write("more data", 9);
|
|
ferencd@0
|
49
|
|
ferencd@0
|
50 VASSERT_EQ("Write 2", 0, memcmp("some datamore data", &bytes[0], 18));
|
|
ferencd@0
|
51 }
|
|
ferencd@0
|
52
|
|
ferencd@0
|
53 void testWriteBinary()
|
|
ferencd@0
|
54 {
|
|
ferencd@0
|
55 const char binaryData[] =
|
|
ferencd@0
|
56 "\xc5\x9a\xc3\xb8\xc9\xb1\xc9\x9b\x20\xc9\x93\xc9\xa8\xc9\xb2\xc9"
|
|
ferencd@0
|
57 "\x91\xc5\x95\xc9\xa3\x20\xc9\x96\xc9\x90\xca\x88\xc9\x92";
|
|
ferencd@0
|
58
|
|
ferencd@0
|
59 vmime::byteArray bytes;
|
|
ferencd@0
|
60
|
|
ferencd@0
|
61 vmime::utility::outputStreamByteArrayAdapter stream(bytes);
|
|
ferencd@0
|
62 stream.write(binaryData, sizeof(binaryData));
|
|
ferencd@0
|
63 stream.flush();
|
|
ferencd@0
|
64
|
|
ferencd@0
|
65 VASSERT_EQ("Write", 0, memcmp(binaryData, &bytes[0], sizeof(binaryData)));
|
|
ferencd@0
|
66 }
|
|
ferencd@0
|
67
|
|
ferencd@0
|
68 void testWriteCRLF()
|
|
ferencd@0
|
69 {
|
|
ferencd@0
|
70 vmime::byteArray bytes;
|
|
ferencd@0
|
71
|
|
ferencd@0
|
72 vmime::utility::outputStreamByteArrayAdapter stream(bytes);
|
|
ferencd@0
|
73 stream << "some data";
|
|
ferencd@0
|
74 stream.flush();
|
|
ferencd@0
|
75
|
|
ferencd@0
|
76 stream << "\nmore\r\ndata\r";
|
|
ferencd@0
|
77 stream.flush();
|
|
ferencd@0
|
78
|
|
ferencd@0
|
79 VASSERT_EQ("Write", 0, memcmp("some data\nmore\r\ndata\r", &bytes[0], 21));
|
|
ferencd@0
|
80 }
|
|
ferencd@0
|
81
|
|
ferencd@0
|
82 VMIME_TEST_SUITE_END
|
|
ferencd@0
|
83
|