1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/browsing_data/core/counters/bookmark_counter.h"
#include <memory>
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/test_future.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/test/base/testing_profile.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/bookmarks/browser/bookmark_node.h"
#include "components/bookmarks/test/bookmark_test_helpers.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
using browsing_data::BrowsingDataCounter;
typedef base::test::TestFuture<std::unique_ptr<BrowsingDataCounter::Result>>
CounterFuture;
class BookmarkCounterTest : public testing::Test {
public:
BookmarkCounterTest() {
TestingProfile::Builder profile_builder;
profile_builder.AddTestingFactory(
BookmarkModelFactory::GetInstance(),
BookmarkModelFactory::GetDefaultFactory());
profile_ = profile_builder.Build();
model_ =
BookmarkModelFactory::GetInstance()->GetForBrowserContext(profile());
}
Profile* profile() { return profile_.get(); }
bookmarks::BookmarkModel* model() { return model_; }
void AddNodes(const std::string& model_string) {
bookmarks::test::AddNodesFromModelString(
model(), model()->bookmark_bar_node(), model_string);
}
BrowsingDataCounter::ResultInt GetResultValue() {
std::unique_ptr<BrowsingDataCounter::Result> result = future.Take();
while (!result->Finished()) {
future.Clear();
result = future.Take();
}
BrowsingDataCounter::FinishedResult* finished_result =
static_cast<BrowsingDataCounter::FinishedResult*>(result.get());
return finished_result->Value();
}
protected:
CounterFuture future;
private:
content::BrowserTaskEnvironment task_environment_;
std::unique_ptr<TestingProfile> profile_;
raw_ptr<bookmarks::BookmarkModel> model_;
};
TEST_F(BookmarkCounterTest, CountUnloaded) {
ASSERT_FALSE(model()->loaded());
browsing_data::BookmarkCounter counter(model());
counter.InitWithoutPref(base::Time(), future.GetRepeatingCallback());
counter.Restart();
EXPECT_EQ(0, GetResultValue());
}
TEST_F(BookmarkCounterTest, Count) {
bookmarks::test::WaitForBookmarkModelToLoad(model());
ASSERT_TRUE(model()->loaded());
AddNodes("1 2 3 ");
browsing_data::BookmarkCounter counter(model());
counter.InitWithoutPref(base::Time(), future.GetRepeatingCallback());
counter.Restart();
EXPECT_EQ(3, GetResultValue());
AddNodes("5 6 ");
counter.Restart();
EXPECT_EQ(5, GetResultValue());
}
TEST_F(BookmarkCounterTest, CountWithPeriod) {
bookmarks::test::WaitForBookmarkModelToLoad(model());
base::Time now = base::Time::Now();
AddNodes("1 2 3 ");
GURL url("https://google.com");
const bookmarks::BookmarkNode* node1 =
model()->AddURL(model()->bookmark_bar_node(), 0, u"4", url);
model()->SetDateAdded(node1, now - base::Minutes(30));
const bookmarks::BookmarkNode* node2 =
model()->AddURL(model()->bookmark_bar_node(), 0, u"5", url);
model()->SetDateAdded(node2, now - base::Minutes(90));
browsing_data::BookmarkCounter counter(model());
counter.InitWithoutPref(now - base::Minutes(60),
future.GetRepeatingCallback());
counter.Restart();
// 1,2,3 and 4 should be counted. 5 is too old, so it will be skipped.
EXPECT_EQ(4, GetResultValue());
}
TEST_F(BookmarkCounterTest, CountWithFolders) {
bookmarks::test::WaitForBookmarkModelToLoad(model());
AddNodes("1 2 3 f1:[ 4 5 f2:[ 6 ] ] ");
browsing_data::BookmarkCounter counter(model());
counter.InitWithoutPref(base::Time(), future.GetRepeatingCallback());
counter.Restart();
EXPECT_EQ(6, GetResultValue());
}
} // namespace
|