1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.h"
#include "base/compiler_specific.h"
#include "base/run_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/bookmarks/bookmark_model.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/browser/bookmarks/bookmark_test_helpers.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/gtk/tabstrip_origin_provider.h"
#include "chrome/test/base/test_browser_window.h"
#include "chrome/test/base/testing_profile.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "testing/gtest/include/gtest/gtest.h"
// Dummy implementation that's good enough for the tests; we don't test
// rendering here so all we need is a non-NULL object.
class EmptyTabstripOriginProvider : public TabstripOriginProvider {
public:
virtual gfx::Point GetTabStripOriginForWidget(GtkWidget* widget) OVERRIDE {
return gfx::Point(0, 0);
}
};
class BookmarkBarGtkUnittest : public testing::Test {
protected:
virtual void SetUp() OVERRIDE {
profile_.reset(new TestingProfile());
profile_->CreateBookmarkModel(true);
model_ = BookmarkModelFactory::GetForProfile(profile_.get());
test::WaitForBookmarkModelToLoad(model_);
Browser::CreateParams native_params(profile_.get(),
chrome::GetActiveDesktop());
browser_.reset(
chrome::CreateBrowserWithTestWindowForParams(&native_params));
origin_provider_.reset(new EmptyTabstripOriginProvider);
bookmark_bar_.reset(new BookmarkBarGtk(NULL, browser_.get(),
origin_provider_.get()));
}
virtual void TearDown() OVERRIDE {
base::RunLoop().RunUntilIdle();
bookmark_bar_.reset();
origin_provider_.reset();
browser_.reset();
profile_.reset();
}
BookmarkModel* model_;
content::TestBrowserThreadBundle thread_bundle_;
scoped_ptr<TestingProfile> profile_;
scoped_ptr<Browser> browser_;
scoped_ptr<TabstripOriginProvider> origin_provider_;
scoped_ptr<BookmarkBarGtk> bookmark_bar_;
};
TEST_F(BookmarkBarGtkUnittest, DisplaysHelpMessageOnEmpty) {
bookmark_bar_->BookmarkModelLoaded(model_, false);
// There are no bookmarks in the model by default. Expect that the
// |instructions_label| is shown.
EXPECT_TRUE(bookmark_bar_->show_instructions_);
}
TEST_F(BookmarkBarGtkUnittest, HidesHelpMessageWithBookmark) {
const BookmarkNode* parent = model_->bookmark_bar_node();
model_->AddURL(parent, parent->child_count(),
base::ASCIIToUTF16("title"), GURL("http://one.com"));
bookmark_bar_->BookmarkModelLoaded(model_, false);
EXPECT_FALSE(bookmark_bar_->show_instructions_);
}
TEST_F(BookmarkBarGtkUnittest, BuildsButtons) {
const BookmarkNode* parent = model_->bookmark_bar_node();
model_->AddURL(parent, parent->child_count(),
base::ASCIIToUTF16("title"), GURL("http://one.com"));
model_->AddURL(parent, parent->child_count(),
base::ASCIIToUTF16("other"), GURL("http://two.com"));
bookmark_bar_->BookmarkModelLoaded(model_, false);
// We should expect two children to the bookmark bar's toolbar.
GList* children = gtk_container_get_children(
GTK_CONTAINER(bookmark_bar_->bookmark_toolbar_.get()));
EXPECT_EQ(2U, g_list_length(children));
g_list_free(children);
}
|