| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "SkOSFile.h" | 8 #include "SkOSFile.h" |
| 9 #include "SkString.h" | 9 #include "SkString.h" |
| 10 #include "Test.h" | 10 #include "Test.h" |
| 11 | 11 |
| 12 /** | 12 /** |
| 13 * Test SkPathJoin and SkBasename. | 13 * Test SkOSPath::Join and SkOSPath::Basename. |
| 14 * Will use SkPathJoin to append filename to dir, test that it works correctly, | 14 * Will use SkOSPath::Join to append filename to dir, test that it works correc
tly, |
| 15 * and tests using SkBasename on the result. | 15 * and tests using SkOSPath::Basename on the result. |
| 16 * @param reporter Reporter for test conditions. | 16 * @param reporter Reporter for test conditions. |
| 17 * @param dir String representing the path to a folder. May or may not | 17 * @param dir String representing the path to a folder. May or may not |
| 18 * end with SkPATH_SEPARATOR. | 18 * end with SkPATH_SEPARATOR. |
| 19 * @param filename String representing the basename of a file. Must NOT | 19 * @param filename String representing the basename of a file. Must NOT |
| 20 * contain SkPATH_SEPARATOR. | 20 * contain SkPATH_SEPARATOR. |
| 21 */ | 21 */ |
| 22 static void test_dir_with_file(skiatest::Reporter* reporter, SkString dir, | 22 static void test_dir_with_file(skiatest::Reporter* reporter, SkString dir, |
| 23 SkString filename) { | 23 SkString filename) { |
| 24 // If filename contains SkPATH_SEPARATOR, the tests will fail. | 24 // If filename contains SkPATH_SEPARATOR, the tests will fail. |
| 25 SkASSERT(!filename.contains(SkPATH_SEPARATOR)); | 25 SkASSERT(!filename.contains(SkPATH_SEPARATOR)); |
| 26 | 26 |
| 27 // Tests for SkOSPath::SkPathJoin and SkOSPath::SkBasename | 27 // Tests for SkOSPath::Join and SkOSPath::Basename |
| 28 | 28 |
| 29 // fullName should be "dir<SkPATH_SEPARATOR>file" | 29 // fullName should be "dir<SkPATH_SEPARATOR>file" |
| 30 SkString fullName = SkOSPath::SkPathJoin(dir.c_str(), filename.c_str()); | 30 SkString fullName = SkOSPath::Join(dir.c_str(), filename.c_str()); |
| 31 | 31 |
| 32 // fullName should be the combined size of dir and file, plus one if | 32 // fullName should be the combined size of dir and file, plus one if |
| 33 // dir did not include the final path separator. | 33 // dir did not include the final path separator. |
| 34 size_t expectedSize = dir.size() + filename.size(); | 34 size_t expectedSize = dir.size() + filename.size(); |
| 35 if (!dir.endsWith(SkPATH_SEPARATOR)) { | 35 if (!dir.endsWith(SkPATH_SEPARATOR)) { |
| 36 expectedSize++; | 36 expectedSize++; |
| 37 } | 37 } |
| 38 REPORTER_ASSERT(reporter, fullName.size() == expectedSize); | 38 REPORTER_ASSERT(reporter, fullName.size() == expectedSize); |
| 39 | 39 |
| 40 SkString basename = SkOSPath::SkBasename(fullName.c_str()); | 40 SkString basename = SkOSPath::Basename(fullName.c_str()); |
| 41 | 41 |
| 42 // basename should be the same as filename | 42 // basename should be the same as filename |
| 43 REPORTER_ASSERT(reporter, basename.equals(filename)); | 43 REPORTER_ASSERT(reporter, basename.equals(filename)); |
| 44 | 44 |
| 45 // basename will not contain a path separator | 45 // basename will not contain a path separator |
| 46 REPORTER_ASSERT(reporter, !basename.contains(SkPATH_SEPARATOR)); | 46 REPORTER_ASSERT(reporter, !basename.contains(SkPATH_SEPARATOR)); |
| 47 | 47 |
| 48 // Now take the basename of filename, which should be the same as filename. | 48 // Now take the basename of filename, which should be the same as filename. |
| 49 basename = SkOSPath::SkBasename(filename.c_str()); | 49 basename = SkOSPath::Basename(filename.c_str()); |
| 50 REPORTER_ASSERT(reporter, basename.equals(filename)); | 50 REPORTER_ASSERT(reporter, basename.equals(filename)); |
| 51 } | 51 } |
| 52 | 52 |
| 53 DEF_TEST(OSPath, reporter) { | 53 DEF_TEST(OSPath, reporter) { |
| 54 SkString dir("dir"); | 54 SkString dir("dir"); |
| 55 SkString filename("file"); | 55 SkString filename("file"); |
| 56 test_dir_with_file(reporter, dir, filename); | 56 test_dir_with_file(reporter, dir, filename); |
| 57 | 57 |
| 58 // Now make sure this works with a path separator at the end of dir. | 58 // Now make sure this works with a path separator at the end of dir. |
| 59 dir.appendUnichar(SkPATH_SEPARATOR); | 59 dir.appendUnichar(SkPATH_SEPARATOR); |
| 60 test_dir_with_file(reporter, dir, filename); | 60 test_dir_with_file(reporter, dir, filename); |
| 61 | 61 |
| 62 // Test using no filename. | 62 // Test using no filename. |
| 63 test_dir_with_file(reporter, dir, SkString()); | 63 test_dir_with_file(reporter, dir, SkString()); |
| 64 | 64 |
| 65 // Testing using no directory. | 65 // Testing using no directory. |
| 66 test_dir_with_file(reporter, SkString(), filename); | 66 test_dir_with_file(reporter, SkString(), filename); |
| 67 | 67 |
| 68 // Test with a sub directory. | 68 // Test with a sub directory. |
| 69 dir.append("subDir"); | 69 dir.append("subDir"); |
| 70 test_dir_with_file(reporter, dir, filename); | 70 test_dir_with_file(reporter, dir, filename); |
| 71 | 71 |
| 72 // Basename of a directory with a path separator at the end is empty. | 72 // Basename of a directory with a path separator at the end is empty. |
| 73 dir.appendUnichar(SkPATH_SEPARATOR); | 73 dir.appendUnichar(SkPATH_SEPARATOR); |
| 74 SkString baseOfDir = SkOSPath::SkBasename(dir.c_str()); | 74 SkString baseOfDir = SkOSPath::Basename(dir.c_str()); |
| 75 REPORTER_ASSERT(reporter, baseOfDir.size() == 0); | 75 REPORTER_ASSERT(reporter, baseOfDir.size() == 0); |
| 76 | 76 |
| 77 // Basename of NULL is an empty string. | 77 // Basename of NULL is an empty string. |
| 78 SkString empty = SkOSPath::SkBasename(NULL); | 78 SkString empty = SkOSPath::Basename(NULL); |
| 79 REPORTER_ASSERT(reporter, empty.size() == 0); | 79 REPORTER_ASSERT(reporter, empty.size() == 0); |
| 80 | 80 |
| 81 // Test that NULL can be used for the directory and filename. | 81 // Test that NULL can be used for the directory and filename. |
| 82 SkString emptyPath = SkOSPath::SkPathJoin(NULL, NULL); | 82 SkString emptyPath = SkOSPath::Join(NULL, NULL); |
| 83 REPORTER_ASSERT(reporter, emptyPath.size() == 1); | 83 REPORTER_ASSERT(reporter, emptyPath.size() == 1); |
| 84 REPORTER_ASSERT(reporter, emptyPath.contains(SkPATH_SEPARATOR)); | 84 REPORTER_ASSERT(reporter, emptyPath.contains(SkPATH_SEPARATOR)); |
| 85 } | 85 } |
| OLD | NEW |