add option to forward environment to pipestream
[libi2ncommon] / test / stringfunc_imaputf7.cpp
CommitLineData
652f47a7
TJ
1/*
2The software in this package is distributed under the GNU General
3Public License version 2 (with a special exception described below).
4
5A copy of GNU General Public License (GPL) is included in this distribution,
6in the file COPYING.GPL.
7
8As a special exception, if other files instantiate templates or use macros
9or inline functions from this file, or you compile this file and link it
10with other works to produce a work based on this file, this file
11does not by itself cause the resulting work to be covered
12by the GNU General Public License.
13
14However the source code for this file must still be made available
15in accordance with section (3) of the GNU General Public License.
16
17This exception does not invalidate any other reasons why a work based
18on this file might be covered by the GNU General Public License.
19*/
20/***************************************************************************
21 * Copyright (C) 2011 by Intra2net AG *
22 * *
23 ***************************************************************************/
24
25#include <string>
26
27#define BOOST_TEST_DYN_LINK
28#include <boost/test/unit_test.hpp>
29
30#include <stringfunc.hxx>
31
32using namespace std;
33using namespace I2n;
34
35BOOST_AUTO_TEST_SUITE(stringfunc_imaputf7)
36
37BOOST_AUTO_TEST_CASE(imaputf7_to_utf8)
38{
39 string output = utf7imap_to_utf8("Sp&AOQ-m");
40 BOOST_CHECK_EQUAL(string("Späm"), output);
41}
42
43BOOST_AUTO_TEST_CASE(utf8_to_imaputf7)
44{
45 string output = utf8_to_utf7imap("Späm");
46 BOOST_CHECK_EQUAL(string("Sp&AOQ-m"), output);
47}
48
49BOOST_AUTO_TEST_SUITE_END()