This source file includes following definitions.
- CreateProfile
- CreateTemplateURLService
- TEST_F
#include "chrome/browser/ui/views/bookmarks/bookmark_bar_view.h"
#include "base/prefs/pref_service.h"
#include "chrome/browser/bookmarks/bookmark_test_helpers.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/search_engines/template_url_service.h"
#include "chrome/browser/search_engines/template_url_service_factory.h"
#include "chrome/browser/ui/app_list/app_list_util.h"
#include "chrome/common/pref_names.h"
#include "chrome/common/url_constants.h"
#include "chrome/test/base/browser_with_test_window_test.h"
#include "chrome/test/base/scoped_testing_local_state.h"
#include "chrome/test/base/testing_browser_process.h"
#include "ui/views/controls/button/text_button.h"
class BookmarkBarViewInstantExtendedTest : public BrowserWithTestWindowTest {
public:
BookmarkBarViewInstantExtendedTest() {
}
protected:
virtual TestingProfile* CreateProfile() OVERRIDE {
TestingProfile* profile = BrowserWithTestWindowTest::CreateProfile();
TemplateURLServiceFactory::GetInstance()->SetTestingFactory(
profile, &BookmarkBarViewInstantExtendedTest::CreateTemplateURLService);
return profile;
}
private:
static KeyedService* CreateTemplateURLService(
content::BrowserContext* profile) {
return new TemplateURLService(static_cast<Profile*>(profile));
}
DISALLOW_COPY_AND_ASSIGN(BookmarkBarViewInstantExtendedTest);
};
TEST_F(BookmarkBarViewInstantExtendedTest, AppsShortcutVisibility) {
ScopedTestingLocalState local_state(TestingBrowserProcess::GetGlobal());
profile()->CreateBookmarkModel(true);
test::WaitForBookmarkModelToLoad(profile());
BookmarkBarView bookmark_bar_view(browser(), NULL);
bookmark_bar_view.set_owned_by_client();
browser()->profile()->GetPrefs()->SetBoolean(
prefs::kShowAppsShortcutInBookmarkBar, false);
EXPECT_FALSE(bookmark_bar_view.apps_page_shortcut_->visible());
browser()->profile()->GetPrefs()->SetBoolean(
prefs::kShowAppsShortcutInBookmarkBar, true);
if (IsAppLauncherEnabled()) {
EXPECT_FALSE(bookmark_bar_view.apps_page_shortcut_->visible());
} else {
EXPECT_TRUE(bookmark_bar_view.apps_page_shortcut_->visible());
}
browser()->profile()->GetPrefs()->SetBoolean(
prefs::kShowAppsShortcutInBookmarkBar, false);
EXPECT_FALSE(bookmark_bar_view.apps_page_shortcut_->visible());
}