Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: chrome/browser/web_applications/web_app_unittest.cc

Issue 349713002: Android: Remove events extensions API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/web_applications/web_app.cc ('k') | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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"
11 #include "chrome/browser/favicon/favicon_tab_helper.h"
12 #include "chrome/browser/web_applications/web_app.h" 10 #include "chrome/browser/web_applications/web_app.h"
13 #include "chrome/common/extensions/chrome_extension_messages.h" 11 #include "chrome/common/extensions/chrome_extension_messages.h"
14 #include "chrome/test/base/chrome_render_view_host_test_harness.h" 12 #include "chrome/test/base/chrome_render_view_host_test_harness.h"
15 #include "content/public/test/test_renderer_host.h" 13 #include "content/public/test/test_renderer_host.h"
16 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
17 15
16 #if defined(TOOLKIT_VIEWS)
17 #include "chrome/browser/extensions/tab_helper.h"
18 #include "chrome/browser/favicon/favicon_tab_helper.h"
19 #endif
20
18 using content::RenderViewHostTester; 21 using content::RenderViewHostTester;
19 22
20 class WebApplicationTest : public ChromeRenderViewHostTestHarness { 23 class WebApplicationTest : public ChromeRenderViewHostTestHarness {
21 protected: 24 protected:
22 virtual void SetUp() OVERRIDE { 25 virtual void SetUp() OVERRIDE {
23 ChromeRenderViewHostTestHarness::SetUp(); 26 ChromeRenderViewHostTestHarness::SetUp();
27 #if defined(TOOLKIT_VIEWS)
24 extensions::TabHelper::CreateForWebContents(web_contents()); 28 extensions::TabHelper::CreateForWebContents(web_contents());
25 FaviconTabHelper::CreateForWebContents(web_contents()); 29 FaviconTabHelper::CreateForWebContents(web_contents());
30 #endif
26 } 31 }
27 }; 32 };
28 33
29 #if defined(OS_MACOSX) 34 #if defined(TOOLKIT_VIEWS)
30 #define MAYBE_GetShortcutInfoForTab DISABLED_GetShortcutInfoForTab 35 TEST_F(WebApplicationTest, GetShortcutInfoForTab) {
31 #else
32 #define MAYBE_GetShortcutInfoForTab GetShortcutInfoForTab
33 #endif
34 TEST_F(WebApplicationTest, MAYBE_GetShortcutInfoForTab) {
35 const base::string16 title = base::ASCIIToUTF16("TEST_TITLE"); 36 const base::string16 title = base::ASCIIToUTF16("TEST_TITLE");
36 const base::string16 description = base::ASCIIToUTF16("TEST_DESCRIPTION"); 37 const base::string16 description = base::ASCIIToUTF16("TEST_DESCRIPTION");
37 const GURL url("http://www.foo.com/bar"); 38 const GURL url("http://www.foo.com/bar");
38 WebApplicationInfo web_app_info; 39 WebApplicationInfo web_app_info;
39 web_app_info.title = title; 40 web_app_info.title = title;
40 web_app_info.description = description; 41 web_app_info.description = description;
41 web_app_info.app_url = url; 42 web_app_info.app_url = url;
42 43
43 RenderViewHostTester::TestOnMessageReceived( 44 RenderViewHostTester::TestOnMessageReceived(
44 rvh(), 45 rvh(),
45 ChromeExtensionHostMsg_DidGetApplicationInfo(0, 0, web_app_info)); 46 ChromeExtensionHostMsg_DidGetApplicationInfo(0, 0, web_app_info));
46 web_app::ShortcutInfo info; 47 web_app::ShortcutInfo info;
47 web_app::GetShortcutInfoForTab(web_contents(), &info); 48 web_app::GetShortcutInfoForTab(web_contents(), &info);
48 49
49 EXPECT_EQ(title, info.title); 50 EXPECT_EQ(title, info.title);
50 EXPECT_EQ(description, info.description); 51 EXPECT_EQ(description, info.description);
51 EXPECT_EQ(url, info.url); 52 EXPECT_EQ(url, info.url);
52 } 53 }
54 #endif
53 55
54 TEST_F(WebApplicationTest, AppDirWithId) { 56 TEST_F(WebApplicationTest, AppDirWithId) {
55 base::FilePath profile_path(FILE_PATH_LITERAL("profile")); 57 base::FilePath profile_path(FILE_PATH_LITERAL("profile"));
56 base::FilePath result( 58 base::FilePath result(
57 web_app::GetWebAppDataDirectory(profile_path, "123", GURL())); 59 web_app::GetWebAppDataDirectory(profile_path, "123", GURL()));
58 base::FilePath expected = profile_path.AppendASCII("Web Applications") 60 base::FilePath expected = profile_path.AppendASCII("Web Applications")
59 .AppendASCII("_crx_123"); 61 .AppendASCII("_crx_123");
60 EXPECT_EQ(expected, result); 62 EXPECT_EQ(expected, result);
61 } 63 }
62 64
63 TEST_F(WebApplicationTest, AppDirWithUrl) { 65 TEST_F(WebApplicationTest, AppDirWithUrl) {
64 base::FilePath profile_path(FILE_PATH_LITERAL("profile")); 66 base::FilePath profile_path(FILE_PATH_LITERAL("profile"));
65 base::FilePath result(web_app::GetWebAppDataDirectory( 67 base::FilePath result(web_app::GetWebAppDataDirectory(
66 profile_path, std::string(), GURL("http://example.com"))); 68 profile_path, std::string(), GURL("http://example.com")));
67 base::FilePath expected = profile_path.AppendASCII("Web Applications") 69 base::FilePath expected = profile_path.AppendASCII("Web Applications")
68 .AppendASCII("example.com").AppendASCII("http_80"); 70 .AppendASCII("example.com").AppendASCII("http_80");
69 EXPECT_EQ(expected, result); 71 EXPECT_EQ(expected, result);
70 } 72 }
OLDNEW
« no previous file with comments | « chrome/browser/web_applications/web_app.cc ('k') | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698