-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathPalTests.cpp
229 lines (183 loc) · 5.97 KB
/
PalTests.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
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
//
// Copyright (c) Microsoft Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
//
#include "common/Common.hpp"
#include "pal/PseudoRandomGenerator.hpp"
#include "Version.hpp"
#ifdef HAVE_MAT_LOGGING
#include "pal/PAL.hpp"
#include <gtest/gtest.h>
#include <fstream>
#include <memory>
#include <string>
#include <cstdio>
#if defined(_WIN32) || defined(_WIN64)
#include <windows.h>
#else
#include <unistd.h>
#endif
using namespace PAL::detail;
#endif
using namespace testing;
class PalTests : public Test {};
TEST_F(PalTests, UuidGeneration)
{
std::string uuid0 = PAL::generateUuidString();
EXPECT_THAT(uuid0.length(), 36u);
std::string mask = uuid0;
for (char& ch : mask) {
#ifdef _WIN32
if (::isdigit(ch) || (::isupper(ch) && ::isxdigit(ch)))
#else
if (::isdigit(ch) || (::islower(ch) && ::isxdigit(ch)))
#endif
{
ch = 'x';
}
}
EXPECT_THAT(mask, Eq("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"));
std::string uuid1 = PAL::generateUuidString();
EXPECT_THAT(uuid1.length(), 36u);
size_t diff = 0;
for (size_t i = 0; i < 36; i++) {
diff += (uuid0[i] != uuid1[i]);
}
EXPECT_THAT(diff, Gt(20u));
}
TEST_F(PalTests, PseudoRandomGenerator)
{
PAL::PseudoRandomGenerator prg;
size_t const NumQueries = 1000;
size_t const NumBuckets = 11;
size_t buckets[NumBuckets] = {};
for (size_t i = 0; i < NumQueries; i++) {
double x = prg.getRandomDouble();
buckets[static_cast<int>(x * NumBuckets)]++;
// Check range [0,1)
EXPECT_THAT(x, AllOf(Ge(0.0), Lt(1.0)));
}
// Check somewhat uniform distribution
EXPECT_THAT(buckets, Not(Contains(Lt(NumQueries / NumBuckets / 2))));
EXPECT_THAT(buckets, Not(Contains(Gt(2 * NumQueries / NumBuckets))));
}
TEST_F(PalTests, SystemTime)
{
int64_t t0 = PAL::getUtcSystemTimeMs();
PAL::sleep(369);
int64_t t1 = PAL::getUtcSystemTimeMs();
EXPECT_THAT(t1, Gt(t0 + 360));
EXPECT_THAT(t1, Lt(t0 + 550));
}
TEST_F(PalTests, FormatUtcTimestampMsAsISO8601)
{
EXPECT_THAT(PAL::formatUtcTimestampMsAsISO8601(0ll), Eq("1970-01-01T00:00:00.000Z"));
EXPECT_THAT(PAL::formatUtcTimestampMsAsISO8601(1234567890123ll), Eq("2009-02-13T23:31:30.123Z"));
EXPECT_THAT(PAL::formatUtcTimestampMsAsISO8601(2147483647999ll), Eq("2038-01-19T03:14:07.999Z"));
}
TEST_F(PalTests, MonotonicTime)
{
int64_t t0 = PAL::getMonotonicTimeMs();
PAL::sleep(789);
int64_t t1 = PAL::getMonotonicTimeMs();
EXPECT_THAT(t1 - t0, Gt(780));
EXPECT_THAT(t1 - t0, Lt(950));
}
TEST_F(PalTests, SemanticContextPopulation)
{
/* MockISemanticContext context;
EXPECT_CALL(context, SetAppId(Not(IsEmpty()))).WillOnce(DoDefault());
EXPECT_CALL(context, SetAppVersion(_)).WillOnce(DoDefault());
EXPECT_CALL(context, SetAppLanguage(_)).WillOnce(DoDefault());
EXPECT_CALL(context, SetUserLanguage(_)).WillOnce(DoDefault());
EXPECT_CALL(context, SetUserTimeZone(Not(IsEmpty()))).WillOnce(DoDefault());
//EXPECT_CALL(context, SetUserAdvertisingId(_)).WillOnce(DoDefault());
PAL::registerSemanticContext(&context);
PAL::sleep(500);
PAL::unregisterSemanticContext(&context);
*/
}
TEST_F(PalTests, SdkVersion)
{
std::string v = PAL::getSdkVersion();
// <Prefix>-<Platform>-<SKU>-<Projection>-<BuildVersion>
EXPECT_THAT(std::count(v.cbegin(), v.cend(), '-'), Eq(4));
EXPECT_THAT(v, StartsWith(EVTSDK_VERSION_PREFIX "-"));
EXPECT_THAT(v.at(v.find('-', 0) + 1), Ne('-'));
EXPECT_THAT(v, HasSubstr(std::string("-C++-" ECS_SUPP "-")));
EXPECT_THAT(v, EndsWith(BUILD_VERSION_STR));
EXPECT_THAT(PAL::getSdkVersion(), Eq(v));
}
#ifdef HAVE_MAT_LOGGING
class LogInitTest : public Test
{
protected:
const std::string validPath = "valid/path/";
void SetUp() override
{
// Create the valid path directory and any intermediate directories
#if defined(_WIN32) || defined(_WIN64)
CreateDirectoryA("valid", NULL);
CreateDirectoryA(validPath.c_str(), NULL);
#else
mkdir("valid", 0777);
mkdir(validPath.c_str(), 0777);
#endif
}
void TearDown() override
{
PAL::detail::log_done();
if (!PAL::detail::getDebugLogPath().empty())
{
std::remove(PAL::detail::getDebugLogPath().c_str());
}
// Remove the valid path directory
#if defined(_WIN32) || defined(_WIN64)
RemoveDirectoryA(validPath.c_str());
RemoveDirectoryA("valid");
#else
rmdir(validPath.c_str());
rmdir("valid");
#endif
}
};
TEST_F(LogInitTest, LogInitDisabled)
{
EXPECT_FALSE(log_init(false, validPath));
}
TEST_F(LogInitTest, LogInitValidPath)
{
EXPECT_TRUE(PAL::detail::log_init(true, validPath));
EXPECT_TRUE(PAL::detail::getDebugLogStream()->is_open());
}
TEST_F(LogInitTest, LogInitParentDirectoryInvalidPath)
{
EXPECT_FALSE(PAL::detail::log_init(true, "invalid/../path/"));
}
TEST_F(LogInitTest, LogInitPathDoesNotExist)
{
EXPECT_FALSE(PAL::detail::log_init(true, "nonexistent/path/"));
}
TEST_F(LogInitTest, LogInitAlreadyInitialized)
{
EXPECT_TRUE(PAL::detail::log_init(true, validPath));
EXPECT_TRUE(PAL::detail::getDebugLogStream()->is_open());
EXPECT_TRUE(PAL::detail::log_init(true, validPath)); // Should return true as it's already initialized
}
TEST_F(LogInitTest, LogInitPathWithoutTrailingSlash)
{
std::string pathWithoutSlash = "valid/path";
EXPECT_TRUE(PAL::detail::log_init(true, pathWithoutSlash));
EXPECT_TRUE(PAL::detail::getDebugLogStream()->is_open());
}
TEST_F(LogInitTest, LogInitPathWithoutTrailingBackslash)
{
#if defined(_WIN32) || defined(_WIN64)
std::string pathWithoutBackslash = "valid\\path";
#else
std::string pathWithoutBackslash = "valid//path";
#endif
EXPECT_TRUE(PAL::detail::log_init(true, pathWithoutBackslash));
EXPECT_TRUE(PAL::detail::getDebugLogStream()->is_open());
}
#endif