aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/qutil.cc
blob: 3a1fc8aa90fdbdee35081bfa10c8fc2782fc2eb9 (plain) (blame)
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199

#include <iostream>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <qpdf/QUtil.hh>

#ifdef _WIN32
# include <io.h>
#else
# include <unistd.h>
#endif

void string_conversion_test()
{
    std::cout << QUtil::int_to_string(16059) << std::endl
	      << QUtil::int_to_string(16059, 7) << std::endl
	      << QUtil::int_to_string(16059, -7) << std::endl
	      << QUtil::double_to_string(3.14159) << std::endl
	      << QUtil::double_to_string(3.14159, 3) << std::endl
	      << QUtil::double_to_string(1000.123, -1024) << std::endl;

    try
    {
	// int_to_string bounds error
	std::cout << QUtil::int_to_string(1, 50) << std::endl;
    }
    catch(QEXC::Internal &e)
    {
	std::cout << "exception 1: " << e.unparse() << std::endl;
    }

    try
    {
	// QUtil::int_to_string bounds error
	std::cout << QUtil::int_to_string(1, -50) << std::endl;
    }
    catch(QEXC::Internal &e)
    {
	std::cout << "exception 2: " << e.unparse() << std::endl;
    }

    try
    {
	// QUtil::int_to_string bounds error
	std::cout << QUtil::int_to_string(-1, 49) << std::endl;
    }
    catch(QEXC::Internal &e)
    {
	std::cout << "exception 3: " << e.unparse() << std::endl;
    }


    try
    {
	// QUtil::double_to_string bounds error
	std::cout << QUtil::double_to_string(3.14159, 1024) << std::endl;
    }
    catch(QEXC::Internal &e)
    {
	std::cout << "exception 4: " << e.unparse() << std::endl;
    }

    try
    {
	// QUtil::double_to_string bounds error
	std::cout << QUtil::double_to_string(1000.0, 95) << std::endl;
    }
    catch(QEXC::Internal &e)
    {
	std::cout << "exception 5: " << e.unparse() << std::endl;
    }

    std::string embedded_null = "one";
    embedded_null += '\0';
    embedded_null += "two";
    std::cout << embedded_null.c_str() << std::endl;
    std::cout << embedded_null.length() << std::endl;
    char* tmp = QUtil::copy_string(embedded_null);
    if (memcmp(tmp, embedded_null.c_str(), 7) == 0)
    {
	std::cout << "compare okay" << std::endl;
    }
    else
    {
	std::cout << "compare failed" << std::endl;
    }
    delete [] tmp;
}

void os_wrapper_test()
{
    int fd = -1;
    try
    {
	std::cout << "before open" << std::endl;
	fd = QUtil::os_wrapper("open file",
			       open("/this/file/does/not/exist", O_RDONLY));
	std::cout << "after open" << std::endl;
	(void) close(fd);
    }
    catch (QEXC::System& s)
    {
	std::cout << "exception: " << s.unparse() << std::endl;
    }
}

void fopen_wrapper_test()
{
    FILE* f = 0;
    try
    {
	std::cout << "before fopen" << std::endl;
	f = QUtil::fopen_wrapper("fopen file",
				 fopen("/this/file/does/not/exist", "r"));
	std::cout << "after fopen" << std::endl;
	(void) fclose(f);
    }
    catch (QEXC::System& s)
    {
	std::cout << "exception: " << s.unparse() << std::endl;
    }
}

void getenv_test()
{
    std::string val;
    std::cout << "IN_TESTSUITE: " << QUtil::get_env("IN_TESTSUITE", &val)
	      << ": " << val << std::endl;
    // Hopefully this environment variable is not defined.
    std::cout << "HAGOOGAMAGOOGLE: " << QUtil::get_env("HAGOOGAMAGOOGLE")
	      << std::endl;
}

static void print_utf8(unsigned long val)
{
    char t[20];
    sprintf(t, "%lx", val);
    std::string result = QUtil::toUTF8(val);
    std::cout << "0x" << t << " ->";
    if (val < 0xfffe)
    {
	std::cout << " " << result;
    }
    else
    {
	// Emacs has trouble with utf-8 encoding files with characters
	// outside the 16-bit portion, so just show the character
	// values.
	for (std::string::iterator iter = result.begin();
	     iter != result.end(); ++iter)
	{
	    char t[3];
	    sprintf(t, "%02x", (unsigned char) (*iter));
	    std::cout << " " << t;
	}
    }
    std::cout << std::endl;
}

void to_utf8_test()
{
    print_utf8(0x41UL);
    print_utf8(0xF7UL);
    print_utf8(0x3c0UL);
    print_utf8(0x16059UL);
    print_utf8(0x7fffffffUL);
    try
    {
	print_utf8(0x80000000UL);
    }
    catch (QEXC::General& e)
    {
	std::cout << "0x80000000: " << e.what() << std::endl;
    }
}

int main(int argc, char* argv[])
{
    try
    {
	string_conversion_test();
	std::cout << "----" << std::endl;
	os_wrapper_test();
	std::cout << "----" << std::endl;
	fopen_wrapper_test();
	std::cout << "----" << std::endl;
	getenv_test();
	std::cout << "----" << std::endl;
	to_utf8_test();
    }
    catch (std::exception& e)
    {
	std::cout << "unexpected exception: " << e.what() << std::endl;
    }

    return 0;
}