OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #import "chrome/browser/ui/cocoa/one_click_signin_dialog_controller.h" | 5 #import "chrome/browser/ui/cocoa/one_click_signin_dialog_controller.h" |
6 | 6 |
7 #include "chrome/browser/ui/browser.h" | 7 #include "chrome/browser/ui/browser.h" |
8 #include "chrome/browser/ui/browser_list.h" | 8 #include "chrome/browser/ui/browser_finder.h" |
9 #import "chrome/browser/ui/cocoa/one_click_signin_view_controller.h" | 9 #import "chrome/browser/ui/cocoa/one_click_signin_view_controller.h" |
10 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 10 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
11 #include "chrome/test/base/in_process_browser_test.h" | 11 #include "chrome/test/base/in_process_browser_test.h" |
12 #import "testing/gtest_mac.h" | 12 #import "testing/gtest_mac.h" |
13 | 13 |
14 class OneClickSigninDialogControllerTest : public InProcessBrowserTest { | 14 class OneClickSigninDialogControllerTest : public InProcessBrowserTest { |
15 public: | 15 public: |
16 OneClickSigninDialogControllerTest() | 16 OneClickSigninDialogControllerTest() |
17 : InProcessBrowserTest(), | 17 : InProcessBrowserTest(), |
18 controller_(NULL), | 18 controller_(NULL), |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 // Test that the dialog calls the callback if the bubble is closed. | 73 // Test that the dialog calls the callback if the bubble is closed. |
74 // Callback should be called to setup sync with default settings. | 74 // Callback should be called to setup sync with default settings. |
75 IN_PROC_BROWSER_TEST_F(OneClickSigninDialogControllerTest, Close) { | 75 IN_PROC_BROWSER_TEST_F(OneClickSigninDialogControllerTest, Close) { |
76 controller_->constrained_window()->CloseWebContentsModalDialog(); | 76 controller_->constrained_window()->CloseWebContentsModalDialog(); |
77 EXPECT_EQ(OneClickSigninSyncStarter::SYNC_WITH_DEFAULT_SETTINGS, sync_mode_); | 77 EXPECT_EQ(OneClickSigninSyncStarter::SYNC_WITH_DEFAULT_SETTINGS, sync_mode_); |
78 EXPECT_EQ(1, callback_count_); | 78 EXPECT_EQ(1, callback_count_); |
79 } | 79 } |
80 | 80 |
81 // Test that clicking the learn more link opens a new window. | 81 // Test that clicking the learn more link opens a new window. |
82 IN_PROC_BROWSER_TEST_F(OneClickSigninDialogControllerTest, LearnMore) { | 82 IN_PROC_BROWSER_TEST_F(OneClickSigninDialogControllerTest, LearnMore) { |
83 EXPECT_EQ(1u, BrowserList::size()); | 83 EXPECT_EQ(1u, chrome::GetTotalBrowserCount()); |
84 [controller_->view_controller() textView:nil | 84 [controller_->view_controller() textView:nil |
85 clickedOnLink:nil | 85 clickedOnLink:nil |
86 atIndex:0]; | 86 atIndex:0]; |
87 EXPECT_EQ(2u, BrowserList::size()); | 87 EXPECT_EQ(2u, chrome::GetTotalBrowserCount()); |
88 } | 88 } |
OLD | NEW |