- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / ui / cocoa / bookmarks / bookmark_sync_promo_controller_unittest.mm
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_sync_promo_controller.h"
6
7 #import <Cocoa/Cocoa.h>
8
9 #include "base/basictypes.h"
10 #include "base/mac/scoped_nsobject.h"
11 #include "chrome/browser/ui/browser.h"
12 #include "chrome/browser/ui/tabs/tab_strip_model.h"
13 #include "chrome/test/base/browser_with_test_window_test.h"
14 #include "testing/gtest/include/gtest/gtest.h"
15
16 namespace {
17
18 typedef BrowserWithTestWindowTest BookmarkSyncPromoControllerTest;
19
20 TEST_F(BookmarkSyncPromoControllerTest, SignInLink) {
21   int starting_tab_count = browser()->tab_strip_model()->count();
22
23   base::scoped_nsobject<BookmarkSyncPromoController> syncPromo(
24       [[BookmarkSyncPromoController alloc] initWithBrowser:browser()]);
25
26   // Simulate clicking the "Sign in" link.
27   [syncPromo textView:nil clickedOnLink:nil atIndex:0u];
28
29   // A new tab should have been opened.
30   int tab_count = browser()->tab_strip_model()->count();
31   EXPECT_EQ(starting_tab_count + 1, tab_count);
32 }
33
34 }  // namespace