blob: dbe485aaf8675fa64e85bbf379614ac92c30ef5f [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 "chrome/browser/ui/bookmarks/bookmark_utils.h"
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/bookmarks/bookmark_model.h"
#include "chrome/test/base/testing_profile.h"
#include "testing/gtest/include/gtest/gtest.h"
#if !defined(OS_ANDROID) && !defined(OS_IOS)
namespace {
TEST(BookmarkUIUtilsTest, HasBookmarkURLs) {
BookmarkModel model(NULL);
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, 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(BookmarkUIUtilsTest, HasBookmarkURLsAllowedInIncognitoMode) {
BookmarkModel model(NULL);
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, 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
#endif