少年修仙传客户端基础资源
hch
2024-04-01 d01413b00ef631ac20347716b23818b0b811f65f
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
#if ENABLE_UNIT_TESTS
 
#include "il2cpp-config.h"
 
#include "UnitTest++.h"
 
#include "../Path-c-api.h"
#include "../../Path.h"
#include "../../../utils/PathUtils.h"
 
SUITE(Path)
{
    TEST(GetTempPathNotNull)
    {
        CHECK_NOT_NULL(UnityPalGetTempPath());
    }
 
    TEST(GetTempPathSanity)
    {
        // Path will never be the same depeding on user, platform,machine etc.  Check if the string is
        // at least a few chars long
        CHECK(strlen(UnityPalGetTempPath()) > 3);
    }
 
    TEST(GetTempPathTestMatchesClass)
    {
        CHECK_EQUAL(il2cpp::os::Path::GetTempPath().c_str(), UnityPalGetTempPath());
    }
 
    TEST(GetExecutablePathNotNull)
    {
        CHECK_NOT_NULL(UnityPalGetExecutablePath());
    }
 
#if !IL2CPP_TARGET_PS4 && !IL2CPP_TARGET_PS5 // PS4 doesn't have an executable path concept - it returns an empty string.
    TEST(GetExecutablePathIsEmpty)
    {
        // Path will never be the same depeding on user, platform,machine etc.  Check if the string is
        // at least a few chars long
        CHECK(strlen(UnityPalGetExecutablePath()) > 5);
    }
#else
    TEST(GetExecutablePathIsEmpty)
    {
        CHECK_EQUAL(UnityPalGetExecutablePath(), "");
    }
#endif
 
    TEST(GetExecutablePathMatchesClass)
    {
        CHECK_EQUAL(il2cpp::os::Path::GetExecutablePath().c_str(), UnityPalGetExecutablePath());
    }
 
    static std::string FormatExpectedAbsolutePathMessage(const char* input)
    {
        return std::string("The path '") + std::string(input) + std::string("' is not reported as absolute, which is not expected.");
    }
 
    static std::string FormatExpectedNotAbsolutePathMessage(const char* input)
    {
        return std::string("The path '") + std::string(input) + std::string("' is reported as absolute, which is not expected.");
    }
 
    enum PathType
    {
        kAbsolute,
        kRelative
    };
 
    static void VerifyPathIs(PathType type, const char* input)
    {
        if (type == kAbsolute)
            CHECK_MSG(UnityPalIsAbsolutePath(input), FormatExpectedAbsolutePathMessage(input).c_str());
        else
            CHECK_MSG(!UnityPalIsAbsolutePath(input), FormatExpectedNotAbsolutePathMessage(input).c_str());
    }
 
    TEST(PathThatIsNull_IsNotAbsolute)
    {
        VerifyPathIs(kRelative, NULL);
    }
 
#if defined(WINDOWS)
    TEST(PathThatIsEmpty_IsNotAbsolute)
    {
        VerifyPathIs(kRelative, "");
    }
 
    TEST(PathThatIsWithoutDriveLetter_IsNotAbsolute)
    {
        VerifyPathIs(kRelative, "home\test");
    }
 
    TEST(PathThatIsDriveLetterWithSeparator_IsNotAbsolute)
    {
        VerifyPathIs(kRelative, "C:");
    }
 
    TEST(PathThatIsDriveLetterWithBackslash_IsAbsolute)
    {
        VerifyPathIs(kAbsolute, "C:\\");
    }
 
    TEST(PathThatIsDriveLetterWithBackslashFollowedByAnything_IsAbsolute)
    {
        VerifyPathIs(kAbsolute, "C:\\bar");
    }
 
    TEST(PathThatIsDriveLetterWithForwardslash_IsAbsolute)
    {
        VerifyPathIs(kAbsolute, "C:/");
    }
 
    TEST(PathThatIsDoubleBackslash_IsNotAbsolute)
    {
        VerifyPathIs(kRelative, "\\\\");
    }
 
    TEST(PathThatIsDoubleBackslashFollowedByAnything_IsAbsolute)
    {
        VerifyPathIs(kAbsolute, "\\\\bar");
    }
 
    TEST(IsAbsoluteMatchesForAbsolutePathClass)
    {
        std::string input = "C:\\";
        CHECK_EQUAL(static_cast<int32_t>(il2cpp::os::Path::IsAbsolute(input)), UnityPalIsAbsolutePath(input.c_str()));
    }
 
    TEST(IsAbsoluteMatchesForRelativePathClass)
    {
        std::string input = "test\\path";
        CHECK_EQUAL(static_cast<int32_t>(il2cpp::os::Path::IsAbsolute(input)), UnityPalIsAbsolutePath(input.c_str()));
    }
#else
    TEST(PathThatIsOnlyForwardSlash_IsAbsolute)
    {
        VerifyPathIs(kAbsolute, "/");
    }
 
    TEST(PathThatStartWithForwardSlash_IsAbsolute)
    {
        VerifyPathIs(kAbsolute, "/test/path/foo");
    }
 
    TEST(PathThatDoesNotStartWithAForwardSlash_INotAbsolute)
    {
        VerifyPathIs(kRelative, "test/path/foo");
    }
 
    TEST(IsAbsoluteMatchesForAbsolutePathClass)
    {
        std::string input = "/home/foo";
        CHECK_EQUAL(static_cast<int32_t>(il2cpp::os::Path::IsAbsolute(input)), UnityPalIsAbsolutePath(input.c_str()));
    }
 
    TEST(IsAbsoluteMatchesForRelativePathClass)
    {
        std::string input = "home/path";
        CHECK_EQUAL(static_cast<int32_t>(il2cpp::os::Path::IsAbsolute(input)), UnityPalIsAbsolutePath(input.c_str()));
    }
#endif
 
    TEST(BasenameForNullPath_ReturnsNull)
    {
        CHECK_NULL(UnityPalBasename(NULL));
    }
 
    TEST(BasenameForEmptyPath_ReturnsDot)
    {
        char* basename = UnityPalBasename("");
        CHECK_EQUAL(".", basename);
        free(basename);
    }
 
    TEST(BasenameForEmptyPath_MatchesClass)
    {
        std::string input = "";
        char* basename = UnityPalBasename(input.c_str());
        CHECK_EQUAL(il2cpp::utils::PathUtils::Basename(input), basename);
        free(basename);
    }
#if defined(WINDOWS)
    TEST(BasenameWithBackslashes_ReturnsLastPathElement)
    {
        char* basename = UnityPalBasename("test\\path\\foo");
        CHECK_EQUAL("foo", basename);
        free(basename);
    }
 
    TEST(BasenameWithBackslashes_MatchesClass)
    {
        std::string input = "test\\path\\foo";
        char* basename = UnityPalBasename(input.c_str());
        CHECK_EQUAL(il2cpp::utils::PathUtils::Basename(input), basename);
        free(basename);
    }
#else
    TEST(BasenameWithForwardslashes_ReturnsLastPathElement)
    {
        char* basename = UnityPalBasename("test/path/foo");
        CHECK_EQUAL("foo", basename);
        free(basename);
    }
 
    TEST(BasenameWithForwardslashes_MatchesClass)
    {
        std::string input = "test/path/foo";
        char* basename = UnityPalBasename(input.c_str());
        CHECK_EQUAL(il2cpp::utils::PathUtils::Basename(input), basename);
        free(basename);
    }
#endif
 
    TEST(BasenameWithoutSeparators_ReturnsInput)
    {
        char* basename = UnityPalBasename("bar");
        CHECK_EQUAL("bar", basename);
        free(basename);
    }
 
    TEST(BasenameWithoutSeparators_MatchesClass)
    {
        std::string input = "bar";
        char* basename = UnityPalBasename(input.c_str());
        CHECK_EQUAL(il2cpp::utils::PathUtils::Basename(input), basename);
        free(basename);
    }
 
    TEST(DirectoryNameForNullPath_ReturnsNull)
    {
        CHECK_NULL(UnityPalDirectoryName(NULL));
    }
 
    TEST(DirectoryNameForEmptyPath_ReturnsEmptyString)
    {
        char* DirectoryName = UnityPalDirectoryName("");
        CHECK_EQUAL("", DirectoryName);
        free(DirectoryName);
    }
 
    TEST(DirectoryNameForEmptyPath_MatchesClass)
    {
        std::string input = "";
        char* DirectoryName = UnityPalDirectoryName(input.c_str());
        CHECK_EQUAL(il2cpp::utils::PathUtils::DirectoryName(input), DirectoryName);
        free(DirectoryName);
    }
#if defined(WINDOWS)
    TEST(DirectoryNameWithBackslashes_ReturnsLastPathElement)
    {
        char* DirectoryName = UnityPalDirectoryName("test\\path\\foo");
        CHECK_EQUAL("test\\path", DirectoryName);
        free(DirectoryName);
    }
 
    TEST(DirectoryNameWithBackslashes_MatchesClass)
    {
        std::string input = "test\\path\\foo";
        char* DirectoryName = UnityPalDirectoryName(input.c_str());
        CHECK_EQUAL(il2cpp::utils::PathUtils::DirectoryName(input), DirectoryName);
        free(DirectoryName);
    }
#else
    TEST(DirectoryNameWithForwardslashes_ReturnsLastPathElement)
    {
        char* DirectoryName = UnityPalDirectoryName("test/path/foo");
        CHECK_EQUAL("test/path", DirectoryName);
        free(DirectoryName);
    }
 
    TEST(DirectoryNameWithForwardslashes_MatchesClass)
    {
        std::string input = "test/path/foo";
        char* DirectoryName = UnityPalDirectoryName(input.c_str());
        CHECK_EQUAL(il2cpp::utils::PathUtils::DirectoryName(input), DirectoryName);
        free(DirectoryName);
    }
#endif
 
    TEST(DirectoryNameWithoutSeparators_ReturnsDot)
    {
        char* DirectoryName = UnityPalDirectoryName("bar");
        CHECK_EQUAL(".", DirectoryName);
        free(DirectoryName);
    }
 
    TEST(DirectoryNameWithoutSeparators_MatchesClass)
    {
        std::string input = "bar";
        char* DirectoryName = UnityPalDirectoryName(input.c_str());
        CHECK_EQUAL(il2cpp::utils::PathUtils::DirectoryName(input), DirectoryName);
        free(DirectoryName);
    }
}
 
#endif // ENABLE_UNIT_TESTS