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 747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 const struct UnaryTestData double_extension_cases[] = { | 758 const struct UnaryTestData double_extension_cases[] = { |
759 { FPL("/foo.tar.gz"), FPL(".tar.gz") }, | 759 { FPL("/foo.tar.gz"), FPL(".tar.gz") }, |
760 { FPL("/foo.tar.Z"), FPL(".tar.Z") }, | 760 { FPL("/foo.tar.Z"), FPL(".tar.Z") }, |
761 { FPL("/foo.tar.bz2"), FPL(".tar.bz2") }, | 761 { FPL("/foo.tar.bz2"), FPL(".tar.bz2") }, |
762 { FPL("/foo.1234.gz"), FPL(".1234.gz") }, | 762 { FPL("/foo.1234.gz"), FPL(".1234.gz") }, |
763 { FPL("/foo.1234.tar.gz"), FPL(".tar.gz") }, | 763 { FPL("/foo.1234.tar.gz"), FPL(".tar.gz") }, |
764 { FPL("/foo.tar.tar.gz"), FPL(".tar.gz") }, | 764 { FPL("/foo.tar.tar.gz"), FPL(".tar.gz") }, |
765 { FPL("/foo.tar.gz.gz"), FPL(".gz.gz") }, | 765 { FPL("/foo.tar.gz.gz"), FPL(".gz.gz") }, |
766 { FPL("/foo.1234.user.js"), FPL(".user.js") }, | 766 { FPL("/foo.1234.user.js"), FPL(".user.js") }, |
767 { FPL("foo.user.js"), FPL(".user.js") }, | 767 { FPL("foo.user.js"), FPL(".user.js") }, |
| 768 { FPL("/foo.tar.bz"), FPL(".tar.bz") }, |
768 }; | 769 }; |
769 for (unsigned int i = 0; i < arraysize(cases); ++i) { | 770 for (unsigned int i = 0; i < arraysize(cases); ++i) { |
770 FilePath path(cases[i].input); | 771 FilePath path(cases[i].input); |
771 FilePath::StringType extension = path.Extension(); | 772 FilePath::StringType extension = path.Extension(); |
772 FilePath::StringType final_extension = path.FinalExtension(); | 773 FilePath::StringType final_extension = path.FinalExtension(); |
773 EXPECT_STREQ(cases[i].expected, extension.c_str()) << "i: " << i << | 774 EXPECT_STREQ(cases[i].expected, extension.c_str()) << "i: " << i << |
774 ", path: " << path.value(); | 775 ", path: " << path.value(); |
775 EXPECT_STREQ(cases[i].expected, final_extension.c_str()) << "i: " << i << | 776 EXPECT_STREQ(cases[i].expected, final_extension.c_str()) << "i: " << i << |
776 ", path: " << path.value(); | 777 ", path: " << path.value(); |
777 } | 778 } |
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1274 for (size_t i = 0; i < arraysize(cases); ++i) { | 1275 for (size_t i = 0; i < arraysize(cases); ++i) { |
1275 FilePath input(cases[i].input); | 1276 FilePath input(cases[i].input); |
1276 bool observed = input.IsContentUri(); | 1277 bool observed = input.IsContentUri(); |
1277 EXPECT_EQ(cases[i].expected, observed) << | 1278 EXPECT_EQ(cases[i].expected, observed) << |
1278 "i: " << i << ", input: " << input.value(); | 1279 "i: " << i << ", input: " << input.value(); |
1279 } | 1280 } |
1280 } | 1281 } |
1281 #endif | 1282 #endif |
1282 | 1283 |
1283 } // namespace base | 1284 } // namespace base |
OLD | NEW |