gtest-filepath_test.cc 23.6 KB
Newer Older
shiqian's avatar
shiqian committed
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
// Copyright 2008, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
//     * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Authors: keith.ray@gmail.com (Keith Ray)
//
// Google Test filepath utilities
//
// This file tests classes and functions used internally by
// Google Test.  They are subject to change without notice.
//
// This file is #included from gtest_unittest.cc, to avoid changing
// build or make-files for some existing Google Test clients. Do not
// #include this file anywhere else!

41
42
#include "gtest/internal/gtest-filepath.h"
#include "gtest/gtest.h"
shiqian's avatar
shiqian committed
43
44
45
46
47
48

// Indicates that this translation unit is part of Google Test's
// implementation.  It must come before gtest-internal-inl.h is
// included, or there will be a compiler error.  This trick is to
// prevent a user from accidentally including gtest-internal-inl.h in
// his code.
zhanyong.wan's avatar
zhanyong.wan committed
49
#define GTEST_IMPLEMENTATION_ 1
shiqian's avatar
shiqian committed
50
#include "src/gtest-internal-inl.h"
zhanyong.wan's avatar
zhanyong.wan committed
51
#undef GTEST_IMPLEMENTATION_
shiqian's avatar
shiqian committed
52

53
#if GTEST_OS_WINDOWS_MOBILE
54
# include <windows.h>  // NOLINT
55
#elif GTEST_OS_WINDOWS
56
# include <direct.h>  // NOLINT
57
#endif  // GTEST_OS_WINDOWS_MOBILE
shiqian's avatar
shiqian committed
58
59
60
61
62

namespace testing {
namespace internal {
namespace {

63
#if GTEST_OS_WINDOWS_MOBILE
64
65
66
// TODO(wan@google.com): Move these to the POSIX adapter section in
// gtest-port.h.

67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Windows CE doesn't have the remove C function.
int remove(const char* path) {
  LPCWSTR wpath = String::AnsiToUtf16(path);
  int ret = DeleteFile(wpath) ? 0 : -1;
  delete [] wpath;
  return ret;
}
// Windows CE doesn't have the _rmdir C function.
int _rmdir(const char* path) {
  FilePath filepath(path);
  LPCWSTR wpath = String::AnsiToUtf16(
      filepath.RemoveTrailingPathSeparator().c_str());
  int ret = RemoveDirectory(wpath) ? 0 : -1;
  delete [] wpath;
  return ret;
}

84
#else
85
86

TEST(GetCurrentDirTest, ReturnsCurrentDir) {
87
88
  const FilePath original_dir = FilePath::GetCurrentDir();
  EXPECT_FALSE(original_dir.IsEmpty());
89

90
  posix::ChDir(GTEST_PATH_SEP_);
91
  const FilePath cwd = FilePath::GetCurrentDir();
92
  posix::ChDir(original_dir.c_str());
93

94
95
# if GTEST_OS_WINDOWS

96
97
98
  // Skips the ":".
  const char* const cwd_without_drive = strchr(cwd.c_str(), ':');
  ASSERT_TRUE(cwd_without_drive != NULL);
zhanyong.wan's avatar
zhanyong.wan committed
99
  EXPECT_STREQ(GTEST_PATH_SEP_, cwd_without_drive + 1);
100
101
102

# else

103
  EXPECT_STREQ(GTEST_PATH_SEP_, cwd.c_str());
104
105

# endif
106
107
}

108
#endif  // GTEST_OS_WINDOWS_MOBILE
109
110
111
112
113
114
115
116
117
118
119
120
121

TEST(IsEmptyTest, ReturnsTrueForEmptyPath) {
  EXPECT_TRUE(FilePath("").IsEmpty());
  EXPECT_TRUE(FilePath(NULL).IsEmpty());
}

TEST(IsEmptyTest, ReturnsFalseForNonEmptyPath) {
  EXPECT_FALSE(FilePath("a").IsEmpty());
  EXPECT_FALSE(FilePath(".").IsEmpty());
  EXPECT_FALSE(FilePath("a/b").IsEmpty());
  EXPECT_FALSE(FilePath("a\\b\\").IsEmpty());
}

shiqian's avatar
shiqian committed
122
123
124
125
126
127
128
129
130
131
132
133
134
135
// RemoveDirectoryName "" -> ""
TEST(RemoveDirectoryNameTest, WhenEmptyName) {
  EXPECT_STREQ("", FilePath("").RemoveDirectoryName().c_str());
}

// RemoveDirectoryName "afile" -> "afile"
TEST(RemoveDirectoryNameTest, ButNoDirectory) {
  EXPECT_STREQ("afile",
      FilePath("afile").RemoveDirectoryName().c_str());
}

// RemoveDirectoryName "/afile" -> "afile"
TEST(RemoveDirectoryNameTest, RootFileShouldGiveFileName) {
  EXPECT_STREQ("afile",
zhanyong.wan's avatar
zhanyong.wan committed
136
      FilePath(GTEST_PATH_SEP_ "afile").RemoveDirectoryName().c_str());
shiqian's avatar
shiqian committed
137
138
139
140
141
}

// RemoveDirectoryName "adir/" -> ""
TEST(RemoveDirectoryNameTest, WhereThereIsNoFileName) {
  EXPECT_STREQ("",
zhanyong.wan's avatar
zhanyong.wan committed
142
      FilePath("adir" GTEST_PATH_SEP_).RemoveDirectoryName().c_str());
shiqian's avatar
shiqian committed
143
144
145
146
147
}

// RemoveDirectoryName "adir/afile" -> "afile"
TEST(RemoveDirectoryNameTest, ShouldGiveFileName) {
  EXPECT_STREQ("afile",
zhanyong.wan's avatar
zhanyong.wan committed
148
      FilePath("adir" GTEST_PATH_SEP_ "afile").RemoveDirectoryName().c_str());
shiqian's avatar
shiqian committed
149
150
151
152
153
}

// RemoveDirectoryName "adir/subdir/afile" -> "afile"
TEST(RemoveDirectoryNameTest, ShouldAlsoGiveFileName) {
  EXPECT_STREQ("afile",
zhanyong.wan's avatar
zhanyong.wan committed
154
      FilePath("adir" GTEST_PATH_SEP_ "subdir" GTEST_PATH_SEP_ "afile")
shiqian's avatar
shiqian committed
155
156
157
      .RemoveDirectoryName().c_str());
}

158
159
#if GTEST_HAS_ALT_PATH_SEP_

160
161
// Tests that RemoveDirectoryName() works with the alternate separator
// on Windows.
162

163
// RemoveDirectoryName("/afile") -> "afile"
164
165
TEST(RemoveDirectoryNameTest, RootFileShouldGiveFileNameForAlternateSeparator) {
  EXPECT_STREQ("afile",
166
               FilePath("/afile").RemoveDirectoryName().c_str());
167
168
}

169
// RemoveDirectoryName("adir/") -> ""
170
171
TEST(RemoveDirectoryNameTest, WhereThereIsNoFileNameForAlternateSeparator) {
  EXPECT_STREQ("",
172
               FilePath("adir/").RemoveDirectoryName().c_str());
173
174
}

175
// RemoveDirectoryName("adir/afile") -> "afile"
176
177
TEST(RemoveDirectoryNameTest, ShouldGiveFileNameForAlternateSeparator) {
  EXPECT_STREQ("afile",
178
               FilePath("adir/afile").RemoveDirectoryName().c_str());
179
180
}

181
// RemoveDirectoryName("adir/subdir/afile") -> "afile"
182
183
TEST(RemoveDirectoryNameTest, ShouldAlsoGiveFileNameForAlternateSeparator) {
  EXPECT_STREQ("afile",
184
               FilePath("adir/subdir/afile").RemoveDirectoryName().c_str());
185
186
187
}

#endif
shiqian's avatar
shiqian committed
188
189
190

// RemoveFileName "" -> "./"
TEST(RemoveFileNameTest, EmptyName) {
191
#if GTEST_OS_WINDOWS_MOBILE
192
  // On Windows CE, we use the root as the current directory.
zhanyong.wan's avatar
zhanyong.wan committed
193
  EXPECT_STREQ(GTEST_PATH_SEP_,
194
195
      FilePath("").RemoveFileName().c_str());
#else
zhanyong.wan's avatar
zhanyong.wan committed
196
  EXPECT_STREQ("." GTEST_PATH_SEP_,
shiqian's avatar
shiqian committed
197
      FilePath("").RemoveFileName().c_str());
198
#endif
shiqian's avatar
shiqian committed
199
200
201
202
}

// RemoveFileName "adir/" -> "adir/"
TEST(RemoveFileNameTest, ButNoFile) {
zhanyong.wan's avatar
zhanyong.wan committed
203
204
  EXPECT_STREQ("adir" GTEST_PATH_SEP_,
      FilePath("adir" GTEST_PATH_SEP_).RemoveFileName().c_str());
shiqian's avatar
shiqian committed
205
206
207
208
}

// RemoveFileName "adir/afile" -> "adir/"
TEST(RemoveFileNameTest, GivesDirName) {
zhanyong.wan's avatar
zhanyong.wan committed
209
210
  EXPECT_STREQ("adir" GTEST_PATH_SEP_,
      FilePath("adir" GTEST_PATH_SEP_ "afile")
shiqian's avatar
shiqian committed
211
212
213
214
215
      .RemoveFileName().c_str());
}

// RemoveFileName "adir/subdir/afile" -> "adir/subdir/"
TEST(RemoveFileNameTest, GivesDirAndSubDirName) {
zhanyong.wan's avatar
zhanyong.wan committed
216
217
  EXPECT_STREQ("adir" GTEST_PATH_SEP_ "subdir" GTEST_PATH_SEP_,
      FilePath("adir" GTEST_PATH_SEP_ "subdir" GTEST_PATH_SEP_ "afile")
shiqian's avatar
shiqian committed
218
219
220
221
222
      .RemoveFileName().c_str());
}

// RemoveFileName "/afile" -> "/"
TEST(RemoveFileNameTest, GivesRootDir) {
zhanyong.wan's avatar
zhanyong.wan committed
223
224
  EXPECT_STREQ(GTEST_PATH_SEP_,
      FilePath(GTEST_PATH_SEP_ "afile").RemoveFileName().c_str());
shiqian's avatar
shiqian committed
225
226
}

227
228
#if GTEST_HAS_ALT_PATH_SEP_

229
230
// Tests that RemoveFileName() works with the alternate separator on
// Windows.
231

232
// RemoveFileName("adir/") -> "adir/"
233
234
TEST(RemoveFileNameTest, ButNoFileForAlternateSeparator) {
  EXPECT_STREQ("adir" GTEST_PATH_SEP_,
235
               FilePath("adir/").RemoveFileName().c_str());
236
237
}

238
// RemoveFileName("adir/afile") -> "adir/"
239
240
TEST(RemoveFileNameTest, GivesDirNameForAlternateSeparator) {
  EXPECT_STREQ("adir" GTEST_PATH_SEP_,
241
               FilePath("adir/afile").RemoveFileName().c_str());
242
243
}

244
// RemoveFileName("adir/subdir/afile") -> "adir/subdir/"
245
246
TEST(RemoveFileNameTest, GivesDirAndSubDirNameForAlternateSeparator) {
  EXPECT_STREQ("adir" GTEST_PATH_SEP_ "subdir" GTEST_PATH_SEP_,
247
               FilePath("adir/subdir/afile").RemoveFileName().c_str());
248
249
}

250
// RemoveFileName("/afile") -> "\"
251
252
TEST(RemoveFileNameTest, GivesRootDirForAlternateSeparator) {
  EXPECT_STREQ(GTEST_PATH_SEP_,
253
               FilePath("/afile").RemoveFileName().c_str());
254
255
256
}

#endif
shiqian's avatar
shiqian committed
257
258
259
260

TEST(MakeFileNameTest, GenerateWhenNumberIsZero) {
  FilePath actual = FilePath::MakeFileName(FilePath("foo"), FilePath("bar"),
      0, "xml");
zhanyong.wan's avatar
zhanyong.wan committed
261
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar.xml", actual.c_str());
shiqian's avatar
shiqian committed
262
263
264
265
266
}

TEST(MakeFileNameTest, GenerateFileNameNumberGtZero) {
  FilePath actual = FilePath::MakeFileName(FilePath("foo"), FilePath("bar"),
      12, "xml");
zhanyong.wan's avatar
zhanyong.wan committed
267
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar_12.xml", actual.c_str());
shiqian's avatar
shiqian committed
268
269
270
}

TEST(MakeFileNameTest, GenerateFileNameWithSlashNumberIsZero) {
zhanyong.wan's avatar
zhanyong.wan committed
271
  FilePath actual = FilePath::MakeFileName(FilePath("foo" GTEST_PATH_SEP_),
shiqian's avatar
shiqian committed
272
      FilePath("bar"), 0, "xml");
zhanyong.wan's avatar
zhanyong.wan committed
273
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar.xml", actual.c_str());
shiqian's avatar
shiqian committed
274
275
276
}

TEST(MakeFileNameTest, GenerateFileNameWithSlashNumberGtZero) {
zhanyong.wan's avatar
zhanyong.wan committed
277
  FilePath actual = FilePath::MakeFileName(FilePath("foo" GTEST_PATH_SEP_),
shiqian's avatar
shiqian committed
278
      FilePath("bar"), 12, "xml");
zhanyong.wan's avatar
zhanyong.wan committed
279
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar_12.xml", actual.c_str());
shiqian's avatar
shiqian committed
280
281
}

282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
TEST(MakeFileNameTest, GenerateWhenNumberIsZeroAndDirIsEmpty) {
  FilePath actual = FilePath::MakeFileName(FilePath(""), FilePath("bar"),
      0, "xml");
  EXPECT_STREQ("bar.xml", actual.c_str());
}

TEST(MakeFileNameTest, GenerateWhenNumberIsNotZeroAndDirIsEmpty) {
  FilePath actual = FilePath::MakeFileName(FilePath(""), FilePath("bar"),
      14, "xml");
  EXPECT_STREQ("bar_14.xml", actual.c_str());
}

TEST(ConcatPathsTest, WorksWhenDirDoesNotEndWithPathSep) {
  FilePath actual = FilePath::ConcatPaths(FilePath("foo"),
                                          FilePath("bar.xml"));
zhanyong.wan's avatar
zhanyong.wan committed
297
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar.xml", actual.c_str());
298
299
300
}

TEST(ConcatPathsTest, WorksWhenPath1EndsWithPathSep) {
zhanyong.wan's avatar
zhanyong.wan committed
301
  FilePath actual = FilePath::ConcatPaths(FilePath("foo" GTEST_PATH_SEP_),
302
                                          FilePath("bar.xml"));
zhanyong.wan's avatar
zhanyong.wan committed
303
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar.xml", actual.c_str());
304
305
306
307
308
309
310
311
312
313
314
}

TEST(ConcatPathsTest, Path1BeingEmpty) {
  FilePath actual = FilePath::ConcatPaths(FilePath(""),
                                          FilePath("bar.xml"));
  EXPECT_STREQ("bar.xml", actual.c_str());
}

TEST(ConcatPathsTest, Path2BeingEmpty) {
  FilePath actual = FilePath::ConcatPaths(FilePath("foo"),
                                          FilePath(""));
zhanyong.wan's avatar
zhanyong.wan committed
315
  EXPECT_STREQ("foo" GTEST_PATH_SEP_, actual.c_str());
316
317
318
319
320
321
322
323
324
}

TEST(ConcatPathsTest, BothPathBeingEmpty) {
  FilePath actual = FilePath::ConcatPaths(FilePath(""),
                                          FilePath(""));
  EXPECT_STREQ("", actual.c_str());
}

TEST(ConcatPathsTest, Path1ContainsPathSep) {
zhanyong.wan's avatar
zhanyong.wan committed
325
  FilePath actual = FilePath::ConcatPaths(FilePath("foo" GTEST_PATH_SEP_ "bar"),
326
                                          FilePath("foobar.xml"));
zhanyong.wan's avatar
zhanyong.wan committed
327
328
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar" GTEST_PATH_SEP_ "foobar.xml",
               actual.c_str());
329
330
331
}

TEST(ConcatPathsTest, Path2ContainsPathSep) {
zhanyong.wan's avatar
zhanyong.wan committed
332
333
334
335
336
  FilePath actual = FilePath::ConcatPaths(
      FilePath("foo" GTEST_PATH_SEP_),
      FilePath("bar" GTEST_PATH_SEP_ "bar.xml"));
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar" GTEST_PATH_SEP_ "bar.xml",
               actual.c_str());
337
338
339
340
}

TEST(ConcatPathsTest, Path2EndsWithPathSep) {
  FilePath actual = FilePath::ConcatPaths(FilePath("foo"),
zhanyong.wan's avatar
zhanyong.wan committed
341
342
                                          FilePath("bar" GTEST_PATH_SEP_));
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar" GTEST_PATH_SEP_, actual.c_str());
343
}
shiqian's avatar
shiqian committed
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358

// RemoveTrailingPathSeparator "" -> ""
TEST(RemoveTrailingPathSeparatorTest, EmptyString) {
  EXPECT_STREQ("",
      FilePath("").RemoveTrailingPathSeparator().c_str());
}

// RemoveTrailingPathSeparator "foo" -> "foo"
TEST(RemoveTrailingPathSeparatorTest, FileNoSlashString) {
  EXPECT_STREQ("foo",
      FilePath("foo").RemoveTrailingPathSeparator().c_str());
}

// RemoveTrailingPathSeparator "foo/" -> "foo"
TEST(RemoveTrailingPathSeparatorTest, ShouldRemoveTrailingSeparator) {
zhanyong.wan's avatar
zhanyong.wan committed
359
360
361
  EXPECT_STREQ(
      "foo",
      FilePath("foo" GTEST_PATH_SEP_).RemoveTrailingPathSeparator().c_str());
362
#if GTEST_HAS_ALT_PATH_SEP_
363
364
  EXPECT_STREQ("foo",
               FilePath("foo/").RemoveTrailingPathSeparator().c_str());
365
#endif
shiqian's avatar
shiqian committed
366
367
368
369
}

// RemoveTrailingPathSeparator "foo/bar/" -> "foo/bar/"
TEST(RemoveTrailingPathSeparatorTest, ShouldRemoveLastSeparator) {
zhanyong.wan's avatar
zhanyong.wan committed
370
371
372
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar",
               FilePath("foo" GTEST_PATH_SEP_ "bar" GTEST_PATH_SEP_)
               .RemoveTrailingPathSeparator().c_str());
shiqian's avatar
shiqian committed
373
374
375
376
}

// RemoveTrailingPathSeparator "foo/bar" -> "foo/bar"
TEST(RemoveTrailingPathSeparatorTest, ShouldReturnUnmodified) {
zhanyong.wan's avatar
zhanyong.wan committed
377
378
379
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar",
               FilePath("foo" GTEST_PATH_SEP_ "bar")
               .RemoveTrailingPathSeparator().c_str());
shiqian's avatar
shiqian committed
380
381
}

shiqian's avatar
shiqian committed
382
TEST(DirectoryTest, RootDirectoryExists) {
zhanyong.wan's avatar
zhanyong.wan committed
383
#if GTEST_OS_WINDOWS  // We are on Windows.
384
  char current_drive[_MAX_PATH];  // NOLINT
385
  current_drive[0] = static_cast<char>(_getdrive() + 'A' - 1);
shiqian's avatar
shiqian committed
386
387
388
389
390
391
392
393
394
  current_drive[1] = ':';
  current_drive[2] = '\\';
  current_drive[3] = '\0';
  EXPECT_TRUE(FilePath(current_drive).DirectoryExists());
#else
  EXPECT_TRUE(FilePath("/").DirectoryExists());
#endif  // GTEST_OS_WINDOWS
}

zhanyong.wan's avatar
zhanyong.wan committed
395
#if GTEST_OS_WINDOWS
shiqian's avatar
shiqian committed
396
397
398
399
400
TEST(DirectoryTest, RootOfWrongDriveDoesNotExists) {
  const int saved_drive_ = _getdrive();
  // Find a drive that doesn't exist. Start with 'Z' to avoid common ones.
  for (char drive = 'Z'; drive >= 'A'; drive--)
    if (_chdrive(drive - 'A' + 1) == -1) {
401
      char non_drive[_MAX_PATH];  // NOLINT
shiqian's avatar
shiqian committed
402
403
404
405
406
407
408
409
410
      non_drive[0] = drive;
      non_drive[1] = ':';
      non_drive[2] = '\\';
      non_drive[3] = '\0';
      EXPECT_FALSE(FilePath(non_drive).DirectoryExists());
      break;
    }
  _chdrive(saved_drive_);
}
411
#endif  // GTEST_OS_WINDOWS
shiqian's avatar
shiqian committed
412

413
#if !GTEST_OS_WINDOWS_MOBILE
shiqian's avatar
shiqian committed
414
// Windows CE _does_ consider an empty directory to exist.
shiqian's avatar
shiqian committed
415
416
417
TEST(DirectoryTest, EmptyPathDirectoryDoesNotExist) {
  EXPECT_FALSE(FilePath("").DirectoryExists());
}
418
#endif  // !GTEST_OS_WINDOWS_MOBILE
shiqian's avatar
shiqian committed
419
420

TEST(DirectoryTest, CurrentDirectoryExists) {
zhanyong.wan's avatar
zhanyong.wan committed
421
#if GTEST_OS_WINDOWS  // We are on Windows.
422
423
# ifndef _WIN32_CE  // Windows CE doesn't have a current directory.

shiqian's avatar
shiqian committed
424
425
  EXPECT_TRUE(FilePath(".").DirectoryExists());
  EXPECT_TRUE(FilePath(".\\").DirectoryExists());
426
427

# endif  // _WIN32_CE
shiqian's avatar
shiqian committed
428
429
430
431
432
433
434
435
436
437
438
439
440
#else
  EXPECT_TRUE(FilePath(".").DirectoryExists());
  EXPECT_TRUE(FilePath("./").DirectoryExists());
#endif  // GTEST_OS_WINDOWS
}

TEST(NormalizeTest, NullStringsEqualEmptyDirectory) {
  EXPECT_STREQ("", FilePath(NULL).c_str());
  EXPECT_STREQ("", FilePath(String(NULL)).c_str());
}

// "foo/bar" == foo//bar" == "foo///bar"
TEST(NormalizeTest, MultipleConsecutiveSepaparatorsInMidstring) {
zhanyong.wan's avatar
zhanyong.wan committed
441
442
443
444
445
446
447
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar",
               FilePath("foo" GTEST_PATH_SEP_ "bar").c_str());
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar",
               FilePath("foo" GTEST_PATH_SEP_ GTEST_PATH_SEP_ "bar").c_str());
  EXPECT_STREQ("foo" GTEST_PATH_SEP_ "bar",
               FilePath("foo" GTEST_PATH_SEP_ GTEST_PATH_SEP_
                        GTEST_PATH_SEP_ "bar").c_str());
shiqian's avatar
shiqian committed
448
449
450
451
}

// "/bar" == //bar" == "///bar"
TEST(NormalizeTest, MultipleConsecutiveSepaparatorsAtStringStart) {
zhanyong.wan's avatar
zhanyong.wan committed
452
453
454
455
456
457
  EXPECT_STREQ(GTEST_PATH_SEP_ "bar",
    FilePath(GTEST_PATH_SEP_ "bar").c_str());
  EXPECT_STREQ(GTEST_PATH_SEP_ "bar",
    FilePath(GTEST_PATH_SEP_ GTEST_PATH_SEP_ "bar").c_str());
  EXPECT_STREQ(GTEST_PATH_SEP_ "bar",
    FilePath(GTEST_PATH_SEP_ GTEST_PATH_SEP_ GTEST_PATH_SEP_ "bar").c_str());
shiqian's avatar
shiqian committed
458
459
460
461
}

// "foo/" == foo//" == "foo///"
TEST(NormalizeTest, MultipleConsecutiveSepaparatorsAtStringEnd) {
zhanyong.wan's avatar
zhanyong.wan committed
462
463
464
465
466
467
  EXPECT_STREQ("foo" GTEST_PATH_SEP_,
    FilePath("foo" GTEST_PATH_SEP_).c_str());
  EXPECT_STREQ("foo" GTEST_PATH_SEP_,
    FilePath("foo" GTEST_PATH_SEP_ GTEST_PATH_SEP_).c_str());
  EXPECT_STREQ("foo" GTEST_PATH_SEP_,
    FilePath("foo" GTEST_PATH_SEP_ GTEST_PATH_SEP_ GTEST_PATH_SEP_).c_str());
shiqian's avatar
shiqian committed
468
469
}

470
471
#if GTEST_HAS_ALT_PATH_SEP_

472
473
474
// Tests that separators at the end of the string are normalized
// regardless of their combination (e.g. "foo\" =="foo/\" ==
// "foo\\/").
475
476
477
478
479
480
481
482
483
484
485
TEST(NormalizeTest, MixAlternateSeparatorAtStringEnd) {
  EXPECT_STREQ("foo" GTEST_PATH_SEP_,
               FilePath("foo/").c_str());
  EXPECT_STREQ("foo" GTEST_PATH_SEP_,
               FilePath("foo" GTEST_PATH_SEP_ "/").c_str());
  EXPECT_STREQ("foo" GTEST_PATH_SEP_,
               FilePath("foo//" GTEST_PATH_SEP_).c_str());
}

#endif

shiqian's avatar
shiqian committed
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
TEST(AssignmentOperatorTest, DefaultAssignedToNonDefault) {
  FilePath default_path;
  FilePath non_default_path("path");
  non_default_path = default_path;
  EXPECT_STREQ("", non_default_path.c_str());
  EXPECT_STREQ("", default_path.c_str());  // RHS var is unchanged.
}

TEST(AssignmentOperatorTest, NonDefaultAssignedToDefault) {
  FilePath non_default_path("path");
  FilePath default_path;
  default_path = non_default_path;
  EXPECT_STREQ("path", default_path.c_str());
  EXPECT_STREQ("path", non_default_path.c_str());  // RHS var is unchanged.
}

TEST(AssignmentOperatorTest, ConstAssignedToNonConst) {
  const FilePath const_default_path("const_path");
  FilePath non_default_path("path");
  non_default_path = const_default_path;
  EXPECT_STREQ("const_path", non_default_path.c_str());
}
shiqian's avatar
shiqian committed
508
509
510
511
512
513

class DirectoryCreationTest : public Test {
 protected:
  virtual void SetUp() {
    testdata_path_.Set(FilePath(String::Format("%s%s%s",
        TempDir().c_str(), GetCurrentExecutableName().c_str(),
zhanyong.wan's avatar
zhanyong.wan committed
514
        "_directory_creation" GTEST_PATH_SEP_ "test" GTEST_PATH_SEP_)));
shiqian's avatar
shiqian committed
515
516
517
518
519
520
521
522
523
524
    testdata_file_.Set(testdata_path_.RemoveTrailingPathSeparator());

    unique_file0_.Set(FilePath::MakeFileName(testdata_path_, FilePath("unique"),
        0, "txt"));
    unique_file1_.Set(FilePath::MakeFileName(testdata_path_, FilePath("unique"),
        1, "txt"));

    remove(testdata_file_.c_str());
    remove(unique_file0_.c_str());
    remove(unique_file1_.c_str());
525
    posix::RmDir(testdata_path_.c_str());
shiqian's avatar
shiqian committed
526
527
528
529
530
531
  }

  virtual void TearDown() {
    remove(testdata_file_.c_str());
    remove(unique_file0_.c_str());
    remove(unique_file1_.c_str());
532
    posix::RmDir(testdata_path_.c_str());
shiqian's avatar
shiqian committed
533
534
535
  }

  String TempDir() const {
536
#if GTEST_OS_WINDOWS_MOBILE
shiqian's avatar
shiqian committed
537
    return String("\\temp\\");
zhanyong.wan's avatar
zhanyong.wan committed
538
#elif GTEST_OS_WINDOWS
539
    const char* temp_dir = posix::GetEnv("TEMP");
shiqian's avatar
shiqian committed
540
541
542
543
544
545
546
547
    if (temp_dir == NULL || temp_dir[0] == '\0')
      return String("\\temp\\");
    else if (String(temp_dir).EndsWith("\\"))
      return String(temp_dir);
    else
      return String::Format("%s\\", temp_dir);
#else
    return String("/tmp/");
548
#endif  // GTEST_OS_WINDOWS_MOBILE
shiqian's avatar
shiqian committed
549
550
551
  }

  void CreateTextFile(const char* filename) {
552
    FILE* f = posix::FOpen(filename, "w");
shiqian's avatar
shiqian committed
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
    fprintf(f, "text\n");
    fclose(f);
  }

  // Strings representing a directory and a file, with identical paths
  // except for the trailing separator character that distinquishes
  // a directory named 'test' from a file named 'test'. Example names:
  FilePath testdata_path_;  // "/tmp/directory_creation/test/"
  FilePath testdata_file_;  // "/tmp/directory_creation/test"
  FilePath unique_file0_;  // "/tmp/directory_creation/test/unique.txt"
  FilePath unique_file1_;  // "/tmp/directory_creation/test/unique_1.txt"
};

TEST_F(DirectoryCreationTest, CreateDirectoriesRecursively) {
  EXPECT_FALSE(testdata_path_.DirectoryExists()) << testdata_path_.c_str();
  EXPECT_TRUE(testdata_path_.CreateDirectoriesRecursively());
  EXPECT_TRUE(testdata_path_.DirectoryExists());
}

TEST_F(DirectoryCreationTest, CreateDirectoriesForAlreadyExistingPath) {
  EXPECT_FALSE(testdata_path_.DirectoryExists()) << testdata_path_.c_str();
  EXPECT_TRUE(testdata_path_.CreateDirectoriesRecursively());
  // Call 'create' again... should still succeed.
  EXPECT_TRUE(testdata_path_.CreateDirectoriesRecursively());
}

TEST_F(DirectoryCreationTest, CreateDirectoriesAndUniqueFilename) {
  FilePath file_path(FilePath::GenerateUniqueFileName(testdata_path_,
      FilePath("unique"), "txt"));
  EXPECT_STREQ(unique_file0_.c_str(), file_path.c_str());
  EXPECT_FALSE(file_path.FileOrDirectoryExists());  // file not there

  testdata_path_.CreateDirectoriesRecursively();
  EXPECT_FALSE(file_path.FileOrDirectoryExists());  // file still not there
  CreateTextFile(file_path.c_str());
  EXPECT_TRUE(file_path.FileOrDirectoryExists());

  FilePath file_path2(FilePath::GenerateUniqueFileName(testdata_path_,
      FilePath("unique"), "txt"));
  EXPECT_STREQ(unique_file1_.c_str(), file_path2.c_str());
  EXPECT_FALSE(file_path2.FileOrDirectoryExists());  // file not there
  CreateTextFile(file_path2.c_str());
  EXPECT_TRUE(file_path2.FileOrDirectoryExists());
}

TEST_F(DirectoryCreationTest, CreateDirectoriesFail) {
  // force a failure by putting a file where we will try to create a directory.
  CreateTextFile(testdata_file_.c_str());
  EXPECT_TRUE(testdata_file_.FileOrDirectoryExists());
  EXPECT_FALSE(testdata_file_.DirectoryExists());
  EXPECT_FALSE(testdata_file_.CreateDirectoriesRecursively());
}

TEST(NoDirectoryCreationTest, CreateNoDirectoriesForDefaultXmlFile) {
  const FilePath test_detail_xml("test_detail.xml");
  EXPECT_FALSE(test_detail_xml.CreateDirectoriesRecursively());
}

TEST(FilePathTest, DefaultConstructor) {
  FilePath fp;
  EXPECT_STREQ("", fp.c_str());
}

TEST(FilePathTest, CharAndCopyConstructors) {
  const FilePath fp("spicy");
  EXPECT_STREQ("spicy", fp.c_str());

  const FilePath fp_copy(fp);
  EXPECT_STREQ("spicy", fp_copy.c_str());
}

TEST(FilePathTest, StringConstructor) {
  const FilePath fp(String("cider"));
  EXPECT_STREQ("cider", fp.c_str());
}

TEST(FilePathTest, Set) {
  const FilePath apple("apple");
  FilePath mac("mac");
  mac.Set(apple);  // Implement Set() since overloading operator= is forbidden.
  EXPECT_STREQ("apple", mac.c_str());
  EXPECT_STREQ("apple", apple.c_str());
}

TEST(FilePathTest, ToString) {
  const FilePath file("drink");
  String str(file.ToString());
  EXPECT_STREQ("drink", str.c_str());
}

TEST(FilePathTest, RemoveExtension) {
  EXPECT_STREQ("app", FilePath("app.exe").RemoveExtension("exe").c_str());
  EXPECT_STREQ("APP", FilePath("APP.EXE").RemoveExtension("exe").c_str());
}

TEST(FilePathTest, RemoveExtensionWhenThereIsNoExtension) {
  EXPECT_STREQ("app", FilePath("app").RemoveExtension("exe").c_str());
}

TEST(FilePathTest, IsDirectory) {
  EXPECT_FALSE(FilePath("cola").IsDirectory());
zhanyong.wan's avatar
zhanyong.wan committed
654
  EXPECT_TRUE(FilePath("koala" GTEST_PATH_SEP_).IsDirectory());
655
656
657
#if GTEST_HAS_ALT_PATH_SEP_
  EXPECT_TRUE(FilePath("koala/").IsDirectory());
#endif
shiqian's avatar
shiqian committed
658
659
}

660
TEST(FilePathTest, IsAbsolutePath) {
zhanyong.wan's avatar
zhanyong.wan committed
661
  EXPECT_FALSE(FilePath("is" GTEST_PATH_SEP_ "relative").IsAbsolutePath());
662
  EXPECT_FALSE(FilePath("").IsAbsolutePath());
zhanyong.wan's avatar
zhanyong.wan committed
663
664
665
666
#if GTEST_OS_WINDOWS
  EXPECT_TRUE(FilePath("c:\\" GTEST_PATH_SEP_ "is_not"
                       GTEST_PATH_SEP_ "relative").IsAbsolutePath());
  EXPECT_FALSE(FilePath("c:foo" GTEST_PATH_SEP_ "bar").IsAbsolutePath());
667
668
  EXPECT_TRUE(FilePath("c:/" GTEST_PATH_SEP_ "is_not"
                       GTEST_PATH_SEP_ "relative").IsAbsolutePath());
669
#else
zhanyong.wan's avatar
zhanyong.wan committed
670
  EXPECT_TRUE(FilePath(GTEST_PATH_SEP_ "is_not" GTEST_PATH_SEP_ "relative")
671
672
673
674
              .IsAbsolutePath());
#endif  // GTEST_OS_WINDOWS
}

675
676
677
678
679
680
681
682
683
684
685
686
TEST(FilePathTest, IsRootDirectory) {
#if GTEST_OS_WINDOWS
  EXPECT_TRUE(FilePath("a:\\").IsRootDirectory());
  EXPECT_TRUE(FilePath("Z:/").IsRootDirectory());
  EXPECT_TRUE(FilePath("e://").IsRootDirectory());
  EXPECT_FALSE(FilePath("").IsRootDirectory());
  EXPECT_FALSE(FilePath("b:").IsRootDirectory());
  EXPECT_FALSE(FilePath("b:a").IsRootDirectory());
  EXPECT_FALSE(FilePath("8:/").IsRootDirectory());
  EXPECT_FALSE(FilePath("c|/").IsRootDirectory());
#else
  EXPECT_TRUE(FilePath("/").IsRootDirectory());
687
  EXPECT_TRUE(FilePath("//").IsRootDirectory());
688
689
690
691
692
693
  EXPECT_FALSE(FilePath("").IsRootDirectory());
  EXPECT_FALSE(FilePath("\\").IsRootDirectory());
  EXPECT_FALSE(FilePath("/x").IsRootDirectory());
#endif
}

shiqian's avatar
shiqian committed
694
695
696
}  // namespace
}  // namespace internal
}  // namespace testing