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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
// Copyright 2016 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/linux/certificate_watcher.h"
#include <cstdlib>
#include <memory>
#include <string>
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/functional/bind.h"
#include "base/run_loop.h"
#include "base/strings/string_number_conversions.h"
#include "base/task/single_thread_task_runner.h"
#include "base/test/task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace remoting {
const char kCertFileName[] = "cert9.db";
const char kKeyFileName[] = "key4.db";
const char kPKCSFileName[] = "pkcs11.txt";
const char kOtherFileName[] = "testfile.txt";
const int kMessageLoopWaitMsecs = 150;
class CertificateWatcherTest : public testing::Test {
public:
CertificateWatcherTest()
: task_runner_(task_environment_.GetMainThreadTaskRunner()) {
EXPECT_TRUE(temp_dir_.CreateUniqueTempDir());
watcher_ = std::make_unique<CertificateWatcher>(
base::BindRepeating(&CertificateWatcherTest::OnRestart,
base::Unretained(this)),
task_runner_);
watcher_->SetDelayForTests(base::Seconds(0));
watcher_->SetWatchPathForTests(temp_dir_.GetPath());
}
~CertificateWatcherTest() override {
watcher_.reset();
base::RunLoop().RunUntilIdle();
}
protected:
// Call this if you expect a restart after the loop runs.
// The thread will hang if OnRestart is never called.
void RunLoop() {
base::RunLoop loop;
quit_loop_closure_ = loop.QuitClosure();
loop.Run();
}
// Call this if you expect no restart after the loop runs.
// Will quit the loop after kMessageLoopWaitMsecs.
void RunAndWait() {
base::RunLoop loop;
task_runner_->PostDelayedTask(FROM_HERE, loop.QuitClosure(), loop_wait_);
loop.Run();
}
void Start() { watcher_->Start(); }
void Connect() {
task_runner_->PostTask(
FROM_HERE, base::BindOnce(&CertificateWatcher::OnClientConnected,
base::Unretained(watcher_.get()), ""));
}
void Disconnect() {
task_runner_->PostTask(
FROM_HERE, base::BindOnce(&CertificateWatcher::OnClientDisconnected,
base::Unretained(watcher_.get()), ""));
}
void TouchFile(const char* filename) {
task_runner_->PostTask(
FROM_HERE, base::BindOnce(&CertificateWatcherTest::TouchFileTask,
base::Unretained(this), filename));
}
void TouchFileTask(const char* filename) {
std::string testWriteString = base::NumberToString(rand());
base::FilePath path = temp_dir_.GetPath().AppendASCII(filename);
if (base::PathExists(path)) {
EXPECT_TRUE(base::AppendToFile(path, testWriteString));
} else {
ASSERT_TRUE(base::WriteFile(path, testWriteString));
}
}
base::test::SingleThreadTaskEnvironment task_environment_{
base::test::SingleThreadTaskEnvironment::MainThreadType::IO};
scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
base::ScopedTempDir temp_dir_;
std::unique_ptr<CertificateWatcher> watcher_;
int restart_count_ = 0;
base::TimeDelta loop_wait_ = base::Milliseconds(kMessageLoopWaitMsecs);
base::RepeatingClosure quit_loop_closure_;
private:
void OnRestart() {
restart_count_++;
quit_loop_closure_.Run();
}
};
TEST_F(CertificateWatcherTest, OneTouch) {
EXPECT_EQ(0, restart_count_);
Start();
EXPECT_EQ(0, restart_count_);
TouchFile(kCertFileName);
RunLoop();
EXPECT_EQ(1, restart_count_);
}
TEST_F(CertificateWatcherTest, OneTouchAppend) {
EXPECT_EQ(0, restart_count_);
TouchFileTask(kKeyFileName);
Start();
EXPECT_EQ(0, restart_count_);
TouchFile(kKeyFileName); // Appends to existing file.
RunLoop();
EXPECT_EQ(1, restart_count_);
}
TEST_F(CertificateWatcherTest, InhibitDeferRestart) {
Start();
EXPECT_EQ(0, restart_count_);
Connect();
EXPECT_EQ(0, restart_count_);
TouchFile(kPKCSFileName);
RunAndWait();
EXPECT_EQ(0, restart_count_);
Disconnect();
RunLoop();
EXPECT_EQ(1, restart_count_);
}
TEST_F(CertificateWatcherTest, UninhibitAndRestart) {
Start();
EXPECT_EQ(0, restart_count_);
Connect();
EXPECT_EQ(0, restart_count_);
Disconnect();
RunAndWait();
EXPECT_EQ(0, restart_count_);
TouchFile(kCertFileName);
RunLoop();
EXPECT_EQ(1, restart_count_);
}
TEST_F(CertificateWatcherTest, TouchOtherFile) {
// The watcher should not trigger if changes are made that don't affect the
// NSS DB contents.
EXPECT_EQ(0, restart_count_);
Start();
EXPECT_EQ(0, restart_count_);
TouchFile(kOtherFileName);
RunAndWait();
EXPECT_EQ(0, restart_count_);
}
} // namespace remoting
|