OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/basictypes.h" | 5 #include "base/basictypes.h" |
6 #include "base/files/file_path.h" | 6 #include "base/files/file_path.h" |
7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
9 #include "testing/platform_test.h" | 9 #include "testing/platform_test.h" |
10 | 10 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
43 | 43 |
44 struct UTF8TestData { | 44 struct UTF8TestData { |
45 const FilePath::CharType* native; | 45 const FilePath::CharType* native; |
46 const char* utf8; | 46 const char* utf8; |
47 }; | 47 }; |
48 | 48 |
49 // file_util winds up using autoreleased objects on the Mac, so this needs | 49 // file_util winds up using autoreleased objects on the Mac, so this needs |
50 // to be a PlatformTest | 50 // to be a PlatformTest |
51 class FilePathTest : public PlatformTest { | 51 class FilePathTest : public PlatformTest { |
52 protected: | 52 protected: |
53 virtual void SetUp() override { | 53 void SetUp() override { PlatformTest::SetUp(); } |
Nico
2014/12/22 22:05:42
This doesn't have any effect. Can FilePathTest jus
| |
54 PlatformTest::SetUp(); | 54 void TearDown() override { PlatformTest::TearDown(); } |
55 } | |
56 virtual void TearDown() override { | |
57 PlatformTest::TearDown(); | |
58 } | |
59 }; | 55 }; |
60 | 56 |
61 TEST_F(FilePathTest, DirName) { | 57 TEST_F(FilePathTest, DirName) { |
62 const struct UnaryTestData cases[] = { | 58 const struct UnaryTestData cases[] = { |
63 { FPL(""), FPL(".") }, | 59 { FPL(""), FPL(".") }, |
64 { FPL("aa"), FPL(".") }, | 60 { FPL("aa"), FPL(".") }, |
65 { FPL("/aa/bb"), FPL("/aa") }, | 61 { FPL("/aa/bb"), FPL("/aa") }, |
66 { FPL("/aa/bb/"), FPL("/aa") }, | 62 { FPL("/aa/bb/"), FPL("/aa") }, |
67 { FPL("/aa/bb//"), FPL("/aa") }, | 63 { FPL("/aa/bb//"), FPL("/aa") }, |
68 { FPL("/aa/bb/ccc"), FPL("/aa/bb") }, | 64 { FPL("/aa/bb/ccc"), FPL("/aa/bb") }, |
(...skipping 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1275 for (size_t i = 0; i < arraysize(cases); ++i) { | 1271 for (size_t i = 0; i < arraysize(cases); ++i) { |
1276 FilePath input(cases[i].input); | 1272 FilePath input(cases[i].input); |
1277 bool observed = input.IsContentUri(); | 1273 bool observed = input.IsContentUri(); |
1278 EXPECT_EQ(cases[i].expected, observed) << | 1274 EXPECT_EQ(cases[i].expected, observed) << |
1279 "i: " << i << ", input: " << input.value(); | 1275 "i: " << i << ", input: " << input.value(); |
1280 } | 1276 } |
1281 } | 1277 } |
1282 #endif | 1278 #endif |
1283 | 1279 |
1284 } // namespace base | 1280 } // namespace base |
OLD | NEW |