| 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 "chrome/browser/web_applications/web_app.h" | 5 #include "chrome/browser/web_applications/web_app.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/strings/string_util.h" | 8 #include "base/strings/string_util.h" |
| 9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 10 #include "chrome/browser/extensions/tab_helper.h" | 10 #include "chrome/browser/extensions/tab_helper.h" |
| 11 #include "chrome/browser/favicon/favicon_tab_helper.h" | 11 #include "chrome/browser/favicon/favicon_tab_helper.h" |
| 12 #include "chrome/browser/ui/web_applications/web_app_ui.h" | 12 #include "chrome/browser/ui/web_applications/web_app_ui.h" |
| 13 #include "chrome/browser/web_applications/web_app.h" |
| 13 #include "chrome/common/extensions/chrome_extension_messages.h" | 14 #include "chrome/common/extensions/chrome_extension_messages.h" |
| 14 #include "chrome/test/base/chrome_render_view_host_test_harness.h" | 15 #include "chrome/test/base/chrome_render_view_host_test_harness.h" |
| 15 #include "content/public/test/test_renderer_host.h" | 16 #include "content/public/test/test_renderer_host.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 17 | 18 |
| 18 using content::RenderViewHostTester; | 19 using content::RenderViewHostTester; |
| 19 | 20 |
| 20 class WebApplicationTest : public ChromeRenderViewHostTestHarness { | 21 class WebApplicationTest : public ChromeRenderViewHostTestHarness { |
| 21 protected: | 22 protected: |
| 22 virtual void SetUp() OVERRIDE { | 23 virtual void SetUp() OVERRIDE { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 } | 62 } |
| 62 | 63 |
| 63 TEST_F(WebApplicationTest, AppDirWithUrl) { | 64 TEST_F(WebApplicationTest, AppDirWithUrl) { |
| 64 base::FilePath profile_path(FILE_PATH_LITERAL("profile")); | 65 base::FilePath profile_path(FILE_PATH_LITERAL("profile")); |
| 65 base::FilePath result(web_app::GetWebAppDataDirectory( | 66 base::FilePath result(web_app::GetWebAppDataDirectory( |
| 66 profile_path, std::string(), GURL("http://example.com"))); | 67 profile_path, std::string(), GURL("http://example.com"))); |
| 67 base::FilePath expected = profile_path.AppendASCII("Web Applications") | 68 base::FilePath expected = profile_path.AppendASCII("Web Applications") |
| 68 .AppendASCII("example.com").AppendASCII("http_80"); | 69 .AppendASCII("example.com").AppendASCII("http_80"); |
| 69 EXPECT_EQ(expected, result); | 70 EXPECT_EQ(expected, result); |
| 70 } | 71 } |
| OLD | NEW |