blob: d539d8af52e01be6eb628fcb9a4fb330361cd24f [file] [log] [blame]
// Copyright (c) 2011 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/bookmarks/recently_used_folders_combo_model.h"
#include "base/memory/scoped_ptr.h"
#include "base/utf_string_conversions.h"
#include "chrome/test/base/testing_profile.h"
#include "content/browser/browser_thread.h"
#include "testing/gtest/include/gtest/gtest.h"
class RecentlyUsedFoldersComboModelTest : public testing::Test {
public:
RecentlyUsedFoldersComboModelTest();
virtual void SetUp() OVERRIDE;
virtual void TearDown() OVERRIDE;
protected:
scoped_ptr<TestingProfile> profile_;
private:
MessageLoopForUI message_loop_;
BrowserThread ui_thread_;
BrowserThread file_thread_;
DISALLOW_COPY_AND_ASSIGN(RecentlyUsedFoldersComboModelTest);
};
RecentlyUsedFoldersComboModelTest::RecentlyUsedFoldersComboModelTest()
: ui_thread_(BrowserThread::UI, &message_loop_),
file_thread_(BrowserThread::FILE, &message_loop_) {
}
void RecentlyUsedFoldersComboModelTest::SetUp() {
profile_.reset(new TestingProfile());
profile_->CreateBookmarkModel(true);
profile_->BlockUntilBookmarkModelLoaded();
}
void RecentlyUsedFoldersComboModelTest::TearDown() {
// Flush the message loop to make application verifiers happy.
message_loop_.RunAllPending();
}
// Verifies there are no duplicate nodes in the model.
TEST_F(RecentlyUsedFoldersComboModelTest, NoDups) {
BookmarkModel* bookmark_model = profile_->GetBookmarkModel();
const BookmarkNode* new_node = bookmark_model->AddURL(
bookmark_model->bookmark_bar_node(), 0, ASCIIToUTF16("a"),
GURL("http://a"));
RecentlyUsedFoldersComboModel model(bookmark_model, new_node);
std::set<const BookmarkNode*> nodes;
for (int i = 0; i < model.GetItemCount(); ++i) {
const BookmarkNode* node = model.GetNodeAt(i);
EXPECT_EQ(0u, nodes.count(node));
nodes.insert(node);
}
}