blob: fb0190c4efd396c513f8c7c95e3de6729467a5b4 [file] [log] [blame]
// 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 "base/strings/utf_string_conversions.h"
#include "chrome/browser/ui/bookmarks/bookmark_utils.h"
#include "chrome/browser/ui/bookmarks/bookmark_utils_desktop.h"
#include "chrome/test/base/testing_profile.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/bookmarks/test/test_bookmark_client.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "testing/gtest/include/gtest/gtest.h"
using base::ASCIIToUTF16;
using bookmarks::BookmarkModel;
using bookmarks::BookmarkNode;
namespace {
class BookmarkUIUtilsTest : public testing::Test {
content::TestBrowserThreadBundle thread_bundle_;
};
TEST_F(BookmarkUIUtilsTest, HasBookmarkURLs) {
std::unique_ptr<BookmarkModel> model(
bookmarks::TestBookmarkClient::CreateModel());
std::vector<const BookmarkNode*> nodes;
// This tests that |nodes| contains an URL.
const BookmarkNode* page1 = model->AddURL(model->bookmark_bar_node(),
0,
ASCIIToUTF16("Google"),
GURL("http://google.com"));
nodes.push_back(page1);
EXPECT_TRUE(chrome::HasBookmarkURLs(nodes));
nodes.clear();
// This tests that |nodes| does not contain any URL.
const BookmarkNode* folder1 =
model->AddFolder(model->bookmark_bar_node(), 0, ASCIIToUTF16("Folder1"));
nodes.push_back(folder1);
EXPECT_FALSE(chrome::HasBookmarkURLs(nodes));
// This verifies if HasBookmarkURLs iterates through immediate children.
model->AddURL(folder1, 0, ASCIIToUTF16("Foo"), GURL("http://randomsite.com"));
EXPECT_TRUE(chrome::HasBookmarkURLs(nodes));
// This verifies that HasBookmarkURLS does not iterate through descendants.
// i.e, it should not find an URL inside a two or three level hierarchy.
// So we add another folder to |folder1| and add another page to that new
// folder to create a two level hierarchy.
// But first we have to remove the URL from |folder1|.
model->Remove(folder1->GetChild(0));
const BookmarkNode* subfolder1 =
model->AddFolder(folder1, 0, ASCIIToUTF16("Subfolder1"));
// Now add the URL to that |subfolder1|.
model->AddURL(subfolder1, 0, ASCIIToUTF16("BAR"), GURL("http://bar-foo.com"));
EXPECT_FALSE(chrome::HasBookmarkURLs(nodes));
}
TEST_F(BookmarkUIUtilsTest, HasBookmarkURLsAllowedInIncognitoMode) {
std::unique_ptr<BookmarkModel> model(
bookmarks::TestBookmarkClient::CreateModel());
TestingProfile profile;
std::vector<const BookmarkNode*> nodes;
// This tests that |nodes| contains an disabled-in-incognito URL.
const BookmarkNode* page1 = model->AddURL(model->bookmark_bar_node(),
0,
ASCIIToUTF16("BookmarkManager"),
GURL("chrome://bookmarks"));
nodes.push_back(page1);
EXPECT_FALSE(chrome::HasBookmarkURLsAllowedInIncognitoMode(nodes, &profile));
nodes.clear();
// This tests that |nodes| contains an URL that can be opened in incognito
// mode.
const BookmarkNode* page2 = model->AddURL(model->bookmark_bar_node(),
0,
ASCIIToUTF16("Google"),
GURL("http://google.com"));
nodes.push_back(page2);
EXPECT_TRUE(chrome::HasBookmarkURLsAllowedInIncognitoMode(nodes, &profile));
nodes.clear();
// This tests that |nodes| does not contain any URL.
const BookmarkNode* folder1 =
model->AddFolder(model->bookmark_bar_node(), 0, ASCIIToUTF16("Folder1"));
nodes.push_back(folder1);
EXPECT_FALSE(chrome::HasBookmarkURLsAllowedInIncognitoMode(nodes, &profile));
// This verifies if HasBookmarkURLsAllowedInIncognitoMode iterates through
// immediate children.
// Add disabled-in-incognito url.
model->AddURL(folder1, 0, ASCIIToUTF16("Foo"), GURL("chrome://bookmarks"));
EXPECT_FALSE(chrome::HasBookmarkURLsAllowedInIncognitoMode(nodes, &profile));
// Add normal url.
model->AddURL(folder1, 0, ASCIIToUTF16("Foo"), GURL("http://randomsite.com"));
EXPECT_TRUE(chrome::HasBookmarkURLsAllowedInIncognitoMode(nodes, &profile));
// This verifies that HasBookmarkURLsAllowedInIncognitoMode does not iterate
// through descendants.
// i.e, it should not find an URL inside a two or three level hierarchy.
// So we add another folder to |folder1| and add another page to that new
// folder to create a two level hierarchy.
// But first we have to remove the URL from |folder1|.
model->Remove(folder1->GetChild(0));
const BookmarkNode* subfolder1 =
model->AddFolder(folder1, 0, ASCIIToUTF16("Subfolder1"));
// Now add the URL to that |subfolder1|.
model->AddURL(subfolder1, 0, ASCIIToUTF16("BAR"), GURL("http://bar-foo.com"));
EXPECT_FALSE(chrome::HasBookmarkURLsAllowedInIncognitoMode(nodes, &profile));
}
} // namespace