blob: e3724822cc979c9d0cb1b38e7dad08e0ab41dda4 (
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
|
/* vim: set sw=4 sts=4 et foldmethod=syntax : */
/*
* Copyright (c) 2006 Ciaran McCreesh <ciaranm@ciaranm.org>
*
* This file is part of the Paludis package manager. Paludis is free software;
* you can redistribute it and/or modify it under the terms of the GNU General
* Public License version 2, as published by the Free Software Foundation.
*
* Paludis is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <paludis/qa/glep_31_check.hh>
#include <sstream>
#include <test/test_framework.hh>
#include <test/test_runner.hh>
using namespace paludis;
using namespace paludis::qa;
using namespace test;
namespace test_cases
{
struct Utf8Test : TestCase
{
Utf8Test() : TestCase("utf8") { }
void check_valid(const std::string & s)
{
std::stringstream ss(s);
CheckResult r("glep_31_check_TEST.cc", "test");
TEST_CHECK(r.empty());
Glep31Check::check_utf8(ss, r);
TEST_CHECK(r.empty());
}
void check_invalid(const std::string & s)
{
std::stringstream ss(s);
CheckResult r("glep_31_check_TEST.cc", "test");
TEST_CHECK(r.empty());
Glep31Check::check_utf8(ss, r);
TEST_CHECK(! r.empty());
}
void run()
{
check_valid("");
check_valid("abcde");
check_valid("abc""\xc2""\xa3""de");
check_valid("abc""\xd7""\x90""de");
check_valid("abc""\xe2""\x82""\xac""de");
check_valid("abc""\xf0""\xa1""\xa1""\xa1""de");
check_invalid("abc""\xff""de");
check_invalid("abc""\xc2""\x2a""de");
check_invalid("abc""\xe1""\x2a""\x2a""de");
check_invalid("abc""\xe1""\xaa""\x2a""de");
check_invalid("abc""\xf0""\x2a""\x2a""\x2a""de");
check_invalid("abc""\xf0""\xaa""\x2a""\x2a""de");
check_invalid("abc""\xf0""\xa1""\xa1""\x2a""de");
check_invalid("abc""\xc2");
check_invalid("abc""\xd7");
check_invalid("abc""\xe2""\x82");
check_invalid("abc""\xf0""\xa1""\xa1");
}
} test_utf8;
}
|