forked from Exiv2/exiv2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_futils.cpp
173 lines (146 loc) · 5.04 KB
/
test_futils.cpp
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
// File under test
#include <exiv2/futils.hpp>
// Auxiliary headers
#include <fstream>
#include <cstdio>
#include <cerrno>
#include <stdexcept>
#include <gtest/gtest.h>
#include <gmock/gmock.h>
using namespace Exiv2;
TEST(strError, returnSuccessAfterClosingFile)
{
// previous system calls can fail, but errno is not guaranteed to be reset
// by a successful system call
// -> reset errno so that a real failure is only detected here
errno = 0;
std::string tmpFile("tmp.dat");
std::ofstream auxFile(tmpFile.c_str());
auxFile.close();
ASSERT_THAT(strError(), ::testing::EndsWith("(errno = 0)"));
std::remove(tmpFile.c_str());
}
TEST(strError, returnNoSuchFileOrDirectoryWhenTryingToOpenNonExistingFile)
{
std::ifstream auxFile("nonExistingFile");
ASSERT_STREQ("No such file or directory (errno = 2)", strError().c_str());
}
TEST(strError, doNotRecognizeUnknownError)
{
errno = 9999;
ASSERT_THAT(strError(), ::testing::EndsWith("(errno = 9999)"));
}
TEST(getEnv, getsDefaultValueWhenExpectedEnvVariableDoesNotExist)
{
ASSERT_STREQ("/exiv2.php", getEnv(envHTTPPOST).c_str());
ASSERT_STREQ("40", getEnv(envTIMEOUT).c_str());
}
TEST(getEnv, getsProperValuesWhenExpectedEnvVariableExists)
{
const char * expectedValue = "test";
#ifdef _WIN32
ASSERT_EQ(0, _putenv_s("EXIV2_HTTP_POST", expectedValue));
#else
ASSERT_EQ(0, setenv("EXIV2_HTTP_POST", expectedValue, 1));
#endif
ASSERT_STREQ(expectedValue, getEnv(envHTTPPOST).c_str());
#ifndef _WIN32
ASSERT_EQ(0, unsetenv("EXIV2_HTTP_POST"));
#endif
}
TEST(getEnv, throwsWhenKeyDoesNotExist)
{
ASSERT_THROW(getEnv(static_cast<EnVar>(3)), std::out_of_range);
}
TEST(urlencode, encodesGivenUrl)
{
const std::string url = urlencode("http://www.geekhideout.com/urlcode.shtml");
ASSERT_STREQ("http%3a%2f%2fwww.geekhideout.com%2furlcode.shtml", url.c_str());
}
TEST(urlencode, encodesGivenUrlWithSpace)
{
const std::string url = urlencode("http://www.geekhideout.com/url code.shtml");
ASSERT_STREQ("http%3a%2f%2fwww.geekhideout.com%2furl+code.shtml", url.c_str());
}
TEST(urldecode, decodesGivenUrl)
{
const std::string expectedDecodedUrl ("http://www.geekhideout.com/urlcode.shtml");
const std::string url ("http%3a%2f%2fwww.geekhideout.com%2furlcode.shtml");
char * url3 = urldecode(url.c_str());
ASSERT_STREQ(expectedDecodedUrl.c_str(), url3);
delete [] url3;
}
TEST(urldecode, decodesGivenUrlInPlace)
{
const std::string expectedDecodedUrl ("http://www.geekhideout.com/urlcode.shtml");
std::string url ("http%3a%2f%2fwww.geekhideout.com%2furlcode.shtml");
urldecode(url);
ASSERT_STREQ(expectedDecodedUrl.c_str(), url.c_str());
}
TEST(base64encode, encodesValidString)
{
const std::string original ("This is a unit test");
const std::string expected ("VGhpcyBpcyBhIHVuaXQgdGVzdA==");
size_t encodeLength = ((original.size() + 2) / 3) * 4 + 1;
char * result = new char [encodeLength];
ASSERT_EQ(1, base64encode(original.c_str(), original.size(), result, encodeLength));
ASSERT_STREQ(expected.c_str(), result);
delete [] result;
}
TEST(base64encode, doesNotEncodeWithNotBigEnoughResultSize)
{
const std::string original ("This is a unit test");
size_t encodeLength = (original.size());
char * result = new char [encodeLength];
ASSERT_EQ(0, base64encode(original.c_str(), original.size(), result, encodeLength));
delete [] result;
}
TEST(base64decode, decodesValidString)
{
const std::string original ("VGhpcyBpcyBhIHVuaXQgdGVzdA==");
const std::string expected ("This is a unit test");
char * result = new char [original.size()];
ASSERT_EQ(static_cast<long>(expected.size()+1),
base64decode(original.c_str(), result, original.size()));
ASSERT_STREQ(expected.c_str(), result);
delete [] result;
}
TEST(AUri, parsesAndDecoreUrl)
{
const std::string url("http://www.geekhideout.com/urlcode.shtml");
Uri uri = Uri::Parse(url);
ASSERT_EQ("", uri.QueryString);
ASSERT_EQ("http", uri.Protocol);
ASSERT_EQ("www.geekhideout.com", uri.Host);
ASSERT_EQ("80", uri.Port);
ASSERT_EQ("/urlcode.shtml", uri.Path);
ASSERT_EQ("", uri.Username);
ASSERT_EQ("", uri.Password);
Uri::Decode(uri);
}
// Regression test for https://github.com/Exiv2/exiv2/issues/1065
TEST(AUri, parsesAndDecoreUrlWithQuestionMark)
{
const std::string url("http://example.com?xx/yyy");
Uri uri = Uri::Parse(url);
ASSERT_EQ("", uri.QueryString);
ASSERT_EQ("http", uri.Protocol);
ASSERT_EQ("example.com?xx", uri.Host);
ASSERT_EQ("80", uri.Port);
ASSERT_EQ("/yyy", uri.Path);
ASSERT_EQ("", uri.Username);
ASSERT_EQ("", uri.Password);
Uri::Decode(uri);
}
TEST(getProcessPath, obtainPathOfUnitTestsExecutable)
{
#ifdef _WIN32
const std::string expectedName("bin");
#else
const std::string expectedName("bin");
#endif
const std::string path = getProcessPath();
ASSERT_FALSE(path.empty());
const size_t idxStart = path.size() - expectedName.size();
ASSERT_EQ(expectedName, path.substr(idxStart, expectedName.size()));
}