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 128 129 130 131 132 133 134
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/host/config_file_watcher.h"
#include <memory>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/message_loop/message_pump_type.h"
#include "base/run_loop.h"
#include "base/test/task_environment.h"
#include "remoting/base/auto_thread.h"
#include "remoting/base/auto_thread_task_runner.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using testing::_;
using testing::AnyNumber;
using testing::Return;
namespace remoting {
namespace {
class ConfigFileWatcherDelegate : public ConfigFileWatcher::Delegate {
public:
ConfigFileWatcherDelegate() = default;
ConfigFileWatcherDelegate(const ConfigFileWatcherDelegate&) = delete;
ConfigFileWatcherDelegate& operator=(const ConfigFileWatcherDelegate&) =
delete;
~ConfigFileWatcherDelegate() override = default;
MOCK_METHOD1(OnConfigUpdated, void(const std::string&));
MOCK_METHOD0(OnConfigWatcherError, void());
};
} // namespace
class ConfigFileWatcherTest : public testing::Test {
public:
ConfigFileWatcherTest();
~ConfigFileWatcherTest() override;
// testing::Test overrides
void SetUp() override;
void TearDown() override;
// Stops the config file watcher.
void StopWatcher();
protected:
base::test::SingleThreadTaskEnvironment task_environment_{
base::test::SingleThreadTaskEnvironment::MainThreadType::UI};
base::RunLoop run_loop_;
ConfigFileWatcherDelegate delegate_;
// Path to the configuration file used.
base::FilePath config_file_;
// The configuration file watcher that is being tested.
std::unique_ptr<ConfigFileWatcher> watcher_;
};
ConfigFileWatcherTest::ConfigFileWatcherTest() = default;
ConfigFileWatcherTest::~ConfigFileWatcherTest() = default;
void ConfigFileWatcherTest::StopWatcher() {
watcher_.reset();
}
void ConfigFileWatcherTest::SetUp() {
EXPECT_TRUE(base::CreateTemporaryFile(&config_file_));
// Arrange to run |message_loop_| until no components depend on it.
scoped_refptr<AutoThreadTaskRunner> task_runner = new AutoThreadTaskRunner(
task_environment_.GetMainThreadTaskRunner(), run_loop_.QuitClosure());
scoped_refptr<AutoThreadTaskRunner> io_task_runner =
AutoThread::CreateWithType("IPC thread", task_runner,
base::MessagePumpType::IO);
// Create an instance of the config watcher.
watcher_ = std::make_unique<ConfigFileWatcher>(task_runner, io_task_runner,
config_file_);
}
void ConfigFileWatcherTest::TearDown() {
// Delete the test file.
if (!config_file_.empty()) {
base::DeleteFile(config_file_);
}
}
// Verifies that the initial notification is delivered.
TEST_F(ConfigFileWatcherTest, Basic) {
std::string data("test");
EXPECT_TRUE(base::WriteFile(config_file_, data));
EXPECT_CALL(delegate_, OnConfigUpdated(_))
.Times(1)
.WillOnce(InvokeWithoutArgs(this, &ConfigFileWatcherTest::StopWatcher));
EXPECT_CALL(delegate_, OnConfigWatcherError()).Times(0);
watcher_->Watch(&delegate_);
run_loop_.Run();
}
MATCHER_P(EqualsString, s, "") {
return arg == s;
}
// Verifies that an update notification is sent when the file is changed.
TEST_F(ConfigFileWatcherTest, Update) {
EXPECT_CALL(delegate_, OnConfigUpdated(EqualsString("test")))
.Times(1)
.WillOnce(InvokeWithoutArgs(this, &ConfigFileWatcherTest::StopWatcher));
EXPECT_CALL(delegate_, OnConfigWatcherError()).Times(0);
watcher_->Watch(&delegate_);
// Modify the watched file.
std::string data("test");
EXPECT_TRUE(base::WriteFile(config_file_, data));
run_loop_.Run();
}
} // namespace remoting
|