blob: f2be0a4d85920883ce862d475d79b7aec58b5410 [file] [log] [blame]
// Copyright 2013 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 "ui/app_list/search/history_data_store.h"
#include "base/bind.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/run_loop.h"
#include "base/test/scoped_task_environment.h"
#include "base/test/sequenced_worker_pool_owner.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/app_list/search/dictionary_data_store.h"
#include "ui/app_list/search/history_data.h"
namespace app_list {
namespace test {
namespace {
std::string GetDataContent(const HistoryData::Data& data) {
std::string str = std::string("p:") + data.primary + ";s:";
bool first = true;
for (HistoryData::SecondaryDeque::const_iterator it = data.secondary.begin();
it != data.secondary.end();
++it) {
if (first)
first = false;
else
str += ',';
str += *it;
}
return str;
}
} // namespace
class HistoryDataStoreTest : public testing::Test {
public:
HistoryDataStoreTest()
: scoped_task_environment_(
base::test::ScopedTaskEnvironment::MainThreadType::UI),
worker_pool_owner_(2, "AppLanucherTest") {}
// testing::Test overrides:
void SetUp() override {
ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
}
void TearDown() override {
// Release |store_| while ui loop is still running.
store_ = NULL;
}
void OpenStore(const std::string& file_name) {
data_file_ = temp_dir_.GetPath().AppendASCII(file_name);
store_ = new HistoryDataStore(scoped_refptr<DictionaryDataStore>(
new DictionaryDataStore(data_file_, worker_pool_owner_.pool().get())));
Load();
}
void Flush() { store_->Flush(DictionaryDataStore::OnFlushedCallback()); }
void Load() {
store_->Load(
base::Bind(&HistoryDataStoreTest::OnRead, base::Unretained(this)));
run_loop_.reset(new base::RunLoop);
run_loop_->Run();
run_loop_.reset();
}
void WriteDataFile(const std::string& file_name, const std::string& data) {
base::WriteFile(temp_dir_.GetPath().AppendASCII(file_name), data.c_str(),
data.size());
}
HistoryDataStore* store() { return store_.get(); }
const HistoryData::Associations& associations() const {
return associations_;
}
private:
void OnRead(std::unique_ptr<HistoryData::Associations> associations) {
associations_.clear();
if (associations)
associations->swap(associations_);
if (run_loop_)
run_loop_->Quit();
}
base::test::ScopedTaskEnvironment scoped_task_environment_;
base::ScopedTempDir temp_dir_;
base::FilePath data_file_;
std::unique_ptr<base::RunLoop> run_loop_;
base::SequencedWorkerPoolOwner worker_pool_owner_;
scoped_refptr<HistoryDataStore> store_;
HistoryData::Associations associations_;
DISALLOW_COPY_AND_ASSIGN(HistoryDataStoreTest);
};
TEST_F(HistoryDataStoreTest, NewFile) {
OpenStore("new_data_file.json");
EXPECT_TRUE(associations().empty());
}
TEST_F(HistoryDataStoreTest, BadFile) {
const char kDataFile[] = "invalid_data_file";
WriteDataFile(kDataFile, "invalid json");
OpenStore(kDataFile);
EXPECT_TRUE(associations().empty());
}
TEST_F(HistoryDataStoreTest, GoodFile) {
const char kDataFile[] = "good_data_file.json";
const char kGoodJson[] =
"{"
"\"version\": \"1\","
"\"associations\": {"
"\"query\": {"
"\"p\": \"primary\","
"\"s\": [\"secondary1\",\"secondary2\"],"
"\"t\": \"123\""
"}"
"}"
"}";
WriteDataFile(kDataFile, kGoodJson);
OpenStore(kDataFile);
EXPECT_FALSE(associations().empty());
EXPECT_EQ(1u, associations().size());
HistoryData::Associations::const_iterator it = associations().find("query");
EXPECT_TRUE(it != associations().end());
EXPECT_EQ("p:primary;s:secondary1,secondary2", GetDataContent(it->second));
}
TEST_F(HistoryDataStoreTest, Change) {
const char kDataFile[] = "change_test.json";
OpenStore(kDataFile);
EXPECT_TRUE(associations().empty());
const char kQuery[] = "query";
const base::Time now = base::Time::Now();
store()->SetPrimary(kQuery, "primary");
store()->SetUpdateTime(kQuery, now);
Flush();
Load();
EXPECT_EQ(1u, associations().size());
HistoryData::Associations::const_iterator it = associations().find(kQuery);
EXPECT_TRUE(it != associations().end());
EXPECT_EQ("primary", it->second.primary);
EXPECT_EQ(0u, it->second.secondary.size());
EXPECT_EQ(now, it->second.update_time);
HistoryData::SecondaryDeque secondary;
secondary.push_back("s1");
secondary.push_back("s2");
store()->SetSecondary(kQuery, secondary);
Flush();
Load();
EXPECT_EQ(1u, associations().size());
it = associations().find(kQuery);
EXPECT_TRUE(it != associations().end());
EXPECT_EQ("p:primary;s:s1,s2", GetDataContent(it->second));
EXPECT_EQ(now, it->second.update_time);
store()->Delete(kQuery);
Flush();
Load();
EXPECT_TRUE(associations().empty());
}
} // namespace test
} // namespace app_list