| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "mojo/runner/url_resolver.h" | 5 #include "mojo/runner/url_resolver.h" |
| 6 | 6 |
| 7 #include "base/files/file_util.h" | 7 #include "base/files/file_util.h" |
| 8 #include "base/files/scoped_temp_dir.h" | 8 #include "base/files/scoped_temp_dir.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "mojo/util/filename_util.h" | 10 #include "mojo/util/filename_util.h" |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 TEST_F(URLResolverTest, PreferDirectory) { | 152 TEST_F(URLResolverTest, PreferDirectory) { |
| 153 base::ScopedTempDir tmp_dir; | 153 base::ScopedTempDir tmp_dir; |
| 154 ASSERT_TRUE(tmp_dir.CreateUniqueTempDir()); | 154 ASSERT_TRUE(tmp_dir.CreateUniqueTempDir()); |
| 155 URLResolver resolver; | 155 URLResolver resolver; |
| 156 // With no directory |mojo:foo| maps to path/foo.mojo. | 156 // With no directory |mojo:foo| maps to path/foo.mojo. |
| 157 resolver.SetMojoBaseURL(util::FilePathToFileURL(tmp_dir.path())); | 157 resolver.SetMojoBaseURL(util::FilePathToFileURL(tmp_dir.path())); |
| 158 const GURL mapped_url = resolver.ResolveMojoURL(GURL("mojo:foo")); | 158 const GURL mapped_url = resolver.ResolveMojoURL(GURL("mojo:foo")); |
| 159 EXPECT_EQ(util::FilePathToFileURL(tmp_dir.path()).spec() + "/foo.mojo", | 159 EXPECT_EQ(util::FilePathToFileURL(tmp_dir.path()).spec() + "/foo.mojo", |
| 160 mapped_url.spec()); | 160 mapped_url.spec()); |
| 161 | 161 |
| 162 // With an empty directory |mojo:foo| maps to path/foo.mojo. | 162 // With a directory |mojo:foo| maps to path/foo/foo.mojo. |
| 163 const base::FilePath foo_file_path( | 163 const base::FilePath foo_file_path( |
| 164 tmp_dir.path().Append(FILE_PATH_LITERAL("foo"))); | 164 tmp_dir.path().Append(FILE_PATH_LITERAL("foo"))); |
| 165 ASSERT_TRUE(base::CreateDirectory(foo_file_path)); | 165 ASSERT_TRUE(base::CreateDirectory(foo_file_path)); |
| 166 const GURL mapped_url_with_dir = resolver.ResolveMojoURL(GURL("mojo:foo")); | 166 const GURL mapped_url_with_dir = resolver.ResolveMojoURL(GURL("mojo:foo")); |
| 167 EXPECT_EQ(util::FilePathToFileURL(tmp_dir.path()).spec() + "/foo.mojo", | 167 EXPECT_EQ(util::FilePathToFileURL(tmp_dir.path()).spec() + "/foo/foo.mojo", |
| 168 mapped_url_with_dir.spec()); | 168 mapped_url_with_dir.spec()); |
| 169 | |
| 170 // When foo.mojo exists in the directory (path/foo/foo.mojo), then it should | |
| 171 // be picked up. | |
| 172 // With an empty directory |mojo:foo| maps to path/foo/foo.mojo. | |
| 173 ASSERT_EQ(1, | |
| 174 base::WriteFile(foo_file_path.Append(FILE_PATH_LITERAL("foo.mojo")), | |
| 175 "a", 1)); | |
| 176 const GURL mapped_url_in_dir = resolver.ResolveMojoURL(GURL("mojo:foo")); | |
| 177 EXPECT_EQ(util::FilePathToFileURL(tmp_dir.path()).spec() + "/foo/foo.mojo", | |
| 178 mapped_url_in_dir.spec()); | |
| 179 } | 169 } |
| 180 | 170 |
| 181 } // namespace | 171 } // namespace |
| 182 } // namespace test | 172 } // namespace test |
| 183 } // namespace runner | 173 } // namespace runner |
| 184 } // namespace mojo | 174 } // namespace mojo |
| OLD | NEW |