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
|
// Copyright (c) 2009 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/gtk/bookmark_bar_gtk.h"
#include "chrome/browser/browser.h"
#include "chrome/browser/chrome_thread.h"
#include "chrome/browser/gtk/tabstrip_origin_provider.h"
#include "base/task.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "chrome/test/testing_profile.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) {
return gfx::Point(0, 0);
}
};
class BookmarkBarGtkUnittest : public ::testing::Test {
protected:
BookmarkBarGtkUnittest()
: ui_thread_(ChromeThread::UI, &message_loop_),
file_thread_(ChromeThread::FILE, &message_loop_) {
profile_.reset(new TestingProfile());
profile_->CreateBookmarkModel(true);
profile_->BlockUntilBookmarkModelLoaded();
browser_.reset(new Browser(Browser::TYPE_NORMAL, profile_.get()));
origin_provider_.reset(new EmptyTabstripOriginProvider);
bookmark_bar_.reset(new BookmarkBarGtk(NULL, profile_.get(), browser_.get(),
origin_provider_.get()));
}
scoped_ptr<TestingProfile> profile_;
scoped_ptr<Browser> browser_;
scoped_ptr<TabstripOriginProvider> origin_provider_;
scoped_ptr<BookmarkBarGtk> bookmark_bar_;
MessageLoopForUI message_loop_;
ChromeThread ui_thread_;
ChromeThread file_thread_;
};
TEST_F(BookmarkBarGtkUnittest, DisplaysHelpMessageOnEmpty) {
BookmarkModel* model = profile_->GetBookmarkModel();
bookmark_bar_->Loaded(model);
// 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) {
BookmarkModel* model = profile_->GetBookmarkModel();
const BookmarkNode* parent = model->GetBookmarkBarNode();
model->AddURL(parent, parent->GetChildCount(),
L"title", GURL("http://one.com"));
bookmark_bar_->Loaded(model);
EXPECT_FALSE(bookmark_bar_->show_instructions_);
}
TEST_F(BookmarkBarGtkUnittest, BuildsButtons) {
BookmarkModel* model = profile_->GetBookmarkModel();
const BookmarkNode* parent = model->GetBookmarkBarNode();
model->AddURL(parent, parent->GetChildCount(),
L"title", GURL("http://one.com"));
model->AddURL(parent, parent->GetChildCount(),
L"other", GURL("http://two.com"));
bookmark_bar_->Loaded(model);
// 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);
}
|