This source file includes following definitions.
- SetUp
- TearDown
- CreateProfile
- CreateBubbleView
- SetUpSigninManager
- TEST_F
- TEST_F
#include "chrome/browser/ui/views/bookmarks/bookmark_bubble_view.h"
#include <string>
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/browser/bookmarks/bookmark_test_helpers.h"
#include "chrome/browser/bookmarks/bookmark_utils.h"
#include "chrome/browser/signin/fake_signin_manager.h"
#include "chrome/browser/signin/signin_manager_factory.h"
#include "chrome/browser/ui/bookmarks/bookmark_bubble_delegate.h"
#include "chrome/test/base/browser_with_test_window_test.h"
#include "components/signin/core/browser/signin_manager.h"
namespace {
const char kTestBookmarkURL[] = "http://www.google.com";
}
class BookmarkBubbleViewTest : public BrowserWithTestWindowTest {
public:
BookmarkBubbleViewTest() {}
virtual void SetUp() OVERRIDE {
BrowserWithTestWindowTest::SetUp();
profile()->CreateBookmarkModel(true);
test::WaitForBookmarkModelToLoad(profile());
bookmark_utils::AddIfNotBookmarked(
BookmarkModelFactory::GetForProfile(profile()),
GURL(kTestBookmarkURL),
base::string16());
}
virtual void TearDown() OVERRIDE {
bubble_.reset();
BrowserWithTestWindowTest::TearDown();
}
virtual TestingProfile* CreateProfile() OVERRIDE {
TestingProfile::Builder builder;
builder.AddTestingFactory(SigninManagerFactory::GetInstance(),
FakeSigninManagerBase::Build);
return builder.Build().release();
}
protected:
void CreateBubbleView() {
scoped_ptr<BookmarkBubbleDelegate> delegate;
bubble_.reset(new BookmarkBubbleView(NULL,
NULL,
delegate.Pass(),
profile(),
GURL(kTestBookmarkURL),
true));
}
void SetUpSigninManager(const std::string& username) {
if (username.empty())
return;
SigninManagerBase* signin_manager = static_cast<SigninManagerBase*>(
SigninManagerFactory::GetForProfile(profile()));
ASSERT_TRUE(signin_manager);
signin_manager->SetAuthenticatedUsername(username);
}
scoped_ptr<BookmarkBubbleView> bubble_;
private:
DISALLOW_COPY_AND_ASSIGN(BookmarkBubbleViewTest);
};
TEST_F(BookmarkBubbleViewTest, SyncPromoSignedIn) {
SetUpSigninManager("fake_username");
CreateBubbleView();
bubble_->Init();
EXPECT_FALSE(bubble_->sync_promo_view_);
}
TEST_F(BookmarkBubbleViewTest, SyncPromoNotSignedIn) {
CreateBubbleView();
bubble_->Init();
#if defined(OS_CHROMEOS)
EXPECT_FALSE(bubble_->sync_promo_view_);
#else
EXPECT_TRUE(bubble_->sync_promo_view_);
#endif
}