diff options
author | mnissler@chromium.org <mnissler@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-17 14:26:03 +0000 |
---|---|---|
committer | mnissler@chromium.org <mnissler@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-17 14:26:03 +0000 |
commit | 392d74d532301d0db584a1c320d32f4899d58d8f (patch) | |
tree | a3e31864beb5433f92494887f25db45ca9518686 /chrome/browser/file_path_watcher_unittest.cc | |
parent | a66c64480aee2b73328961fb5ffdd074098a74fb (diff) | |
download | chromium_src-392d74d532301d0db584a1c320d32f4899d58d8f.zip chromium_src-392d74d532301d0db584a1c320d32f4899d58d8f.tar.gz chromium_src-392d74d532301d0db584a1c320d32f4899d58d8f.tar.bz2 |
Add support for watching directories to FileWatcher.
BUG=none
TEST=Unit tests in file_watcher_unittest.cc.
Review URL: http://codereview.chromium.org/3149004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56341 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/file_path_watcher_unittest.cc')
-rw-r--r-- | chrome/browser/file_path_watcher_unittest.cc | 478 |
1 files changed, 478 insertions, 0 deletions
diff --git a/chrome/browser/file_path_watcher_unittest.cc b/chrome/browser/file_path_watcher_unittest.cc new file mode 100644 index 0000000..d8be626 --- /dev/null +++ b/chrome/browser/file_path_watcher_unittest.cc @@ -0,0 +1,478 @@ +// Copyright (c) 2008 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/file_path_watcher.h" + +#include <limits> + +#include "base/basictypes.h" +#include "base/file_path.h" +#include "base/file_util.h" +#include "base/message_loop.h" +#include "base/path_service.h" +#include "base/platform_thread.h" +#include "base/scoped_temp_dir.h" +#include "base/string_util.h" +#include "base/thread.h" +#include "base/waitable_event.h" +#include "testing/gmock/include/gmock/gmock.h" +#include "testing/gtest/include/gtest/gtest.h" + +using testing::_; +using testing::AnyNumber; +using testing::AtLeast; +using testing::Mock; + +#if defined(OS_MACOSX) +// TODO(tony): Tests are flaky on mac. http://crbug.com/38188 +#define MAYBE(name) FLAKY_ ## name +#else +#define MAYBE(name) name +#endif + +namespace { + +// The time we wait for events to happen. It should be large enough to be +// reasonably sure all notifications sent in response to file system +// modifications made by the test are processed. This must also accomodate for +// the latency interval we pass to the Mac FSEvents API. +const int kWaitForEventTime = 1000; + +// A mock FilePathWatcher::Delegate for testing. +class TestDelegate : public FilePathWatcher::Delegate { + public: + TestDelegate() { + EXPECT_CALL(*this, OnError()).Times(0); + } + MOCK_METHOD1(OnFilePathChanged, void(const FilePath&)); + MOCK_METHOD0(OnError, void()); + + DISALLOW_COPY_AND_ASSIGN(TestDelegate); +}; + +// A helper class for setting up watches on the file thread. +class SetupWatchTask : public Task { + public: + SetupWatchTask(const FilePath& target, + FilePathWatcher* watcher, + FilePathWatcher::Delegate* delegate, + bool* result, + base::WaitableEvent* completion) + : target_(target), + watcher_(watcher), + delegate_(delegate), + result_(result), + completion_(completion) {} + + void Run() { + *result_ = watcher_->Watch(target_, delegate_); + completion_->Signal(); + } + + private: + const FilePath target_; + FilePathWatcher* watcher_; + FilePathWatcher::Delegate* delegate_; + bool* result_; + base::WaitableEvent* completion_; + + DISALLOW_COPY_AND_ASSIGN(SetupWatchTask); +}; + +class FilePathWatcherTest : public testing::Test { + public: + // Implementation of FilePathWatcher on Mac requires UI loop. + FilePathWatcherTest() + : loop_(MessageLoop::TYPE_UI), + ui_thread_(ChromeThread::UI, &loop_) { + } + + protected: + virtual void SetUp() { + // Create a separate file thread in order to test proper thread usage. + file_thread_.reset(new ChromeThread(ChromeThread::FILE)); + file_thread_->Start(); + temp_dir_.reset(new ScopedTempDir); + ASSERT_TRUE(temp_dir_->CreateUniqueTempDir()); + } + + virtual void TearDown() { + loop_.RunAllPending(); + file_thread_.reset(); + } + + FilePath test_file() { + return temp_dir_->path().AppendASCII("FilePathWatcherTest"); + } + + // Write |content| to |file|. Returns true on success. + bool WriteFile(const FilePath& file, const std::string& content) { + int write_size = file_util::WriteFile(file, content.c_str(), + content.length()); + SyncIfPOSIX(); + return write_size == static_cast<int>(content.length()); + } + + void SetupWatch(const FilePath& target, + FilePathWatcher* watcher, + FilePathWatcher::Delegate* delegate) { + base::WaitableEvent completion(false, false); + bool result; + ChromeThread::PostTask(ChromeThread::FILE, FROM_HERE, + new SetupWatchTask(target, watcher, delegate, &result, &completion)); + completion.Wait(); + ASSERT_TRUE(result); + } + + void VerifyDelegate(TestDelegate* delegate) { + // Wait for events and check the expectations of the delegate. + loop_.PostDelayedTask(FROM_HERE, new MessageLoop::QuitTask, + kWaitForEventTime); + loop_.Run(); + Mock::VerifyAndClearExpectations(delegate); + EXPECT_CALL(*delegate, OnError()).Times(0); + } + + // We need this function for reliable tests on Mac OS X. FSEvents API + // has a latency interval and can merge multiple events into one, + // and we need a clear distinction between events triggered by test setup code + // and test code. + void SyncIfPOSIX() { +#if defined(OS_POSIX) + sync(); +#endif // defined(OS_POSIX) + } + + MessageLoop loop_; + ChromeThread ui_thread_; + scoped_ptr<ChromeThread> file_thread_; + scoped_ptr<ScopedTempDir> temp_dir_; +}; + +// Basic test: Create the file and verify that we notice. +TEST_F(FilePathWatcherTest, MAYBE(NewFile)) { + FilePathWatcher watcher; + scoped_refptr<TestDelegate> delegate(new TestDelegate); + SetupWatch(test_file(), &watcher, delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(test_file())).Times(AtLeast(1)); + ASSERT_TRUE(WriteFile(test_file(), "content")); + VerifyDelegate(delegate.get()); +} + +// Verify that modifying the file is caught. +TEST_F(FilePathWatcherTest, MAYBE(ModifiedFile)) { + ASSERT_TRUE(WriteFile(test_file(), "content")); + + FilePathWatcher watcher; + scoped_refptr<TestDelegate> delegate(new TestDelegate); + SetupWatch(test_file(), &watcher, delegate.get()); + + // Now make sure we get notified if the file is modified. + EXPECT_CALL(*delegate, OnFilePathChanged(test_file())).Times(AtLeast(1)); + ASSERT_TRUE(WriteFile(test_file(), "new content")); + VerifyDelegate(delegate.get()); +} + +// Verify that moving the file into place is caught. +TEST_F(FilePathWatcherTest, MAYBE(MovedFile)) { + FilePath source_file(temp_dir_->path().AppendASCII("source")); + ASSERT_TRUE(WriteFile(source_file, "content")); + + FilePathWatcher watcher; + scoped_refptr<TestDelegate> delegate(new TestDelegate); + SetupWatch(test_file(), &watcher, delegate.get()); + + // Now make sure we get notified if the file is modified. + EXPECT_CALL(*delegate, OnFilePathChanged(test_file())).Times(AtLeast(1)); + ASSERT_TRUE(file_util::Move(source_file, test_file())); + VerifyDelegate(delegate.get()); +} + +TEST_F(FilePathWatcherTest, MAYBE(DeletedFile)) { + ASSERT_TRUE(WriteFile(test_file(), "content")); + + FilePathWatcher watcher; + scoped_refptr<TestDelegate> delegate(new TestDelegate); + SetupWatch(test_file(), &watcher, delegate.get()); + + // Now make sure we get notified if the file is deleted. + EXPECT_CALL(*delegate, OnFilePathChanged(test_file())).Times(AtLeast(1)); + file_util::Delete(test_file(), false); + SyncIfPOSIX(); + VerifyDelegate(delegate.get()); +} + +// Verify that letting the watcher go out of scope stops notifications. +TEST_F(FilePathWatcherTest, MAYBE(Unregister)) { + scoped_refptr<TestDelegate> delegate(new TestDelegate); + + { + FilePathWatcher watcher; + SetupWatch(test_file(), &watcher, delegate.get()); + + // And then let it fall out of scope, clearing its watch. + } + + // Write a file to the test dir. + EXPECT_CALL(*delegate, OnFilePathChanged(_)).Times(0); + ASSERT_TRUE(WriteFile(test_file(), "content")); + VerifyDelegate(delegate.get()); +} + +namespace { +// Used by the DeleteDuringNotify test below. +// Deletes the FilePathWatcher when it's notified. +class Deleter : public FilePathWatcher::Delegate { + public: + Deleter(FilePathWatcher* watcher, MessageLoop* loop) + : watcher_(watcher), + loop_(loop) { + } + + virtual void OnFilePathChanged(const FilePath& path) { + watcher_.reset(NULL); + loop_->PostTask(FROM_HERE, new MessageLoop::QuitTask()); + } + + scoped_ptr<FilePathWatcher> watcher_; + MessageLoop* loop_; +}; +} // anonymous namespace + +// Verify that deleting a watcher during the callback doesn't crash. +TEST_F(FilePathWatcherTest, MAYBE(DeleteDuringNotify)) { + FilePathWatcher* watcher = new FilePathWatcher; + // Takes ownership of watcher. + scoped_refptr<Deleter> deleter(new Deleter(watcher, &loop_)); + SetupWatch(test_file(), watcher, deleter.get()); + + ASSERT_TRUE(WriteFile(test_file(), "content")); + loop_.Run(); + + // We win if we haven't crashed yet. + // Might as well double-check it got deleted, too. + ASSERT_TRUE(deleter->watcher_.get() == NULL); +} + +// Verify that deleting the watcher works even if there is a pending +// notification. +TEST_F(FilePathWatcherTest, MAYBE(DestroyWithPendingNotification)) { + scoped_refptr<TestDelegate> delegate(new TestDelegate); + EXPECT_CALL(*delegate, OnFilePathChanged(_)).Times(AnyNumber()); + FilePathWatcher* watcher = new FilePathWatcher; + SetupWatch(test_file(), watcher, delegate.get()); + ASSERT_TRUE(WriteFile(test_file(), "content")); + ChromeThread::DeleteSoon(ChromeThread::FILE, FROM_HERE, watcher); + // Success if there is no crash or DCHECK when running the callback. + VerifyDelegate(delegate.get()); +} + +TEST_F(FilePathWatcherTest, MAYBE(MultipleWatchersSingleFile)) { + FilePathWatcher watcher1, watcher2; + scoped_refptr<TestDelegate> delegate1(new TestDelegate); + scoped_refptr<TestDelegate> delegate2(new TestDelegate); + SetupWatch(test_file(), &watcher1, delegate1.get()); + SetupWatch(test_file(), &watcher2, delegate2.get()); + + EXPECT_CALL(*delegate1, OnFilePathChanged(test_file())).Times(AtLeast(1)); + EXPECT_CALL(*delegate2, OnFilePathChanged(test_file())).Times(AtLeast(1)); + ASSERT_TRUE(WriteFile(test_file(), "content")); + VerifyDelegate(delegate1.get()); + VerifyDelegate(delegate2.get()); +} + +// Verify that watching a file whose parent directory doesn't exist yet works if +// the directory and file are created eventually. +TEST_F(FilePathWatcherTest, MAYBE(NonExistentDirectory)) { + FilePathWatcher watcher; + FilePath dir(temp_dir_->path().AppendASCII("dir")); + FilePath file(dir.AppendASCII("file")); + scoped_refptr<TestDelegate> delegate(new TestDelegate); + SetupWatch(file, &watcher, delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(_)).Times(0); + ASSERT_TRUE(file_util::CreateDirectory(dir)); + VerifyDelegate(delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(file)).Times(AtLeast(1)); + ASSERT_TRUE(WriteFile(file, "content")); + VerifyDelegate(delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(file)).Times(AtLeast(1)); + ASSERT_TRUE(WriteFile(file, "content v2")); + VerifyDelegate(delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(file)).Times(AtLeast(1)); + ASSERT_TRUE(file_util::Delete(file, false)); + VerifyDelegate(delegate.get()); +} + +// Exercises watch reconfiguration for the case that directories on the path +// are rapidly created. +TEST_F(FilePathWatcherTest, MAYBE(DirectoryChain)) { + FilePath path(temp_dir_->path()); + std::vector<std::string> dir_names; + for (int i = 0; i < 20; i++) { + std::string dir(StringPrintf("d%d", i)); + dir_names.push_back(dir); + path = path.AppendASCII(dir); + } + + FilePathWatcher watcher; + FilePath file(path.AppendASCII("file")); + scoped_refptr<TestDelegate> delegate(new TestDelegate); + SetupWatch(file, &watcher, delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(file)).Times(AtLeast(1)); + FilePath sub_path(temp_dir_->path()); + for (std::vector<std::string>::const_iterator d(dir_names.begin()); + d != dir_names.end(); ++d) { + sub_path = sub_path.AppendASCII(*d); + ASSERT_TRUE(file_util::CreateDirectory(sub_path)); + } + ASSERT_TRUE(WriteFile(file, "content")); + VerifyDelegate(delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(file)).Times(AtLeast(1)); + ASSERT_TRUE(WriteFile(file, "content v2")); + VerifyDelegate(delegate.get()); +} + +TEST_F(FilePathWatcherTest, MAYBE(DisappearingDirectory)) { + FilePathWatcher watcher; + FilePath dir(temp_dir_->path().AppendASCII("dir")); + FilePath file(dir.AppendASCII("file")); + ASSERT_TRUE(file_util::CreateDirectory(dir)); + ASSERT_TRUE(WriteFile(file, "content")); + scoped_refptr<TestDelegate> delegate(new TestDelegate); + SetupWatch(file, &watcher, delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(file)).Times(AtLeast(1)); + ASSERT_TRUE(file_util::Delete(dir, true)); + VerifyDelegate(delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(_)).Times(0); + ASSERT_TRUE(file_util::CreateDirectory(dir)); + VerifyDelegate(delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(file)).Times(AtLeast(1)); + ASSERT_TRUE(WriteFile(file, "content v2")); + VerifyDelegate(delegate.get()); +} + +// Tests that a file that is deleted and reappears is tracked correctly. +TEST_F(FilePathWatcherTest, MAYBE(DeleteAndRecreate)) { + ASSERT_TRUE(WriteFile(test_file(), "content")); + FilePathWatcher watcher; + scoped_refptr<TestDelegate> delegate(new TestDelegate); + SetupWatch(test_file(), &watcher, delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(test_file())).Times(AtLeast(1)); + ASSERT_TRUE(file_util::Delete(test_file(), false)); + VerifyDelegate(delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(test_file())).Times(AtLeast(1)); + ASSERT_TRUE(WriteFile(test_file(), "content")); + VerifyDelegate(delegate.get()); +} + +TEST_F(FilePathWatcherTest, MAYBE(WatchDirectory)) { + FilePathWatcher watcher; + FilePath dir(temp_dir_->path().AppendASCII("dir")); + FilePath file1(dir.AppendASCII("file1")); + FilePath file2(dir.AppendASCII("file2")); + scoped_refptr<TestDelegate> delegate(new TestDelegate); + SetupWatch(dir, &watcher, delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(dir)).Times(AtLeast(1)); + ASSERT_TRUE(file_util::CreateDirectory(dir)); + VerifyDelegate(delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(dir)).Times(AtLeast(1)); + ASSERT_TRUE(WriteFile(file1, "content")); + VerifyDelegate(delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(dir)).Times(AtLeast(1)); + ASSERT_TRUE(WriteFile(file1, "content v2")); + VerifyDelegate(delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(dir)).Times(AtLeast(1)); + ASSERT_TRUE(file_util::Delete(file1, false)); + SyncIfPOSIX(); + VerifyDelegate(delegate.get()); + + EXPECT_CALL(*delegate, OnFilePathChanged(dir)).Times(AtLeast(1)); + ASSERT_TRUE(WriteFile(file2, "content")); + VerifyDelegate(delegate.get()); +} + +TEST_F(FilePathWatcherTest, MAYBE(MoveParent)) { + FilePathWatcher file_watcher; + FilePathWatcher subdir_watcher; + FilePath dir(temp_dir_->path().AppendASCII("dir")); + FilePath dest(temp_dir_->path().AppendASCII("dest")); + FilePath subdir(dir.AppendASCII("subdir")); + FilePath file(subdir.AppendASCII("file")); + scoped_refptr<TestDelegate> file_delegate(new TestDelegate); + SetupWatch(file, &file_watcher, file_delegate.get()); + scoped_refptr<TestDelegate> subdir_delegate(new TestDelegate); + SetupWatch(subdir, &subdir_watcher, subdir_delegate.get()); + + // Setup a directory hierarchy. + EXPECT_CALL(*file_delegate, OnFilePathChanged(file)).Times(AtLeast(1)); + EXPECT_CALL(*subdir_delegate, OnFilePathChanged(subdir)).Times(AtLeast(1)); + ASSERT_TRUE(file_util::CreateDirectory(subdir)); + ASSERT_TRUE(WriteFile(file, "content")); + VerifyDelegate(file_delegate.get()); + VerifyDelegate(subdir_delegate.get()); + + // Move the parent directory. + EXPECT_CALL(*file_delegate, OnFilePathChanged(file)).Times(AtLeast(1)); + EXPECT_CALL(*subdir_delegate, OnFilePathChanged(subdir)).Times(AtLeast(1)); + ASSERT_TRUE(file_util::Move(dir, dest)); + VerifyDelegate(file_delegate.get()); + VerifyDelegate(subdir_delegate.get()); + + // Recreate the hierarchy. + EXPECT_CALL(*file_delegate, OnFilePathChanged(file)).Times(AtLeast(1)); + EXPECT_CALL(*subdir_delegate, OnFilePathChanged(subdir)).Times(AtLeast(1)); + ASSERT_TRUE(file_util::CreateDirectory(subdir)); + ASSERT_TRUE(WriteFile(file, "content")); + VerifyDelegate(file_delegate.get()); + VerifyDelegate(subdir_delegate.get()); +} + +TEST_F(FilePathWatcherTest, MAYBE(MoveChild)) { + FilePathWatcher file_watcher; + FilePathWatcher subdir_watcher; + FilePath source_dir(temp_dir_->path().AppendASCII("source")); + FilePath source_subdir(source_dir.AppendASCII("subdir")); + FilePath source_file(source_subdir.AppendASCII("file")); + FilePath dest_dir(temp_dir_->path().AppendASCII("dest")); + FilePath dest_subdir(dest_dir.AppendASCII("subdir")); + FilePath dest_file(dest_subdir.AppendASCII("file")); + scoped_refptr<TestDelegate> file_delegate(new TestDelegate); + SetupWatch(dest_file, &file_watcher, file_delegate.get()); + scoped_refptr<TestDelegate> subdir_delegate(new TestDelegate); + SetupWatch(dest_subdir, &subdir_watcher, subdir_delegate.get()); + + // Setup a directory hierarchy. + EXPECT_CALL(*file_delegate, OnFilePathChanged(_)).Times(0); + EXPECT_CALL(*subdir_delegate, OnFilePathChanged(_)).Times(0); + ASSERT_TRUE(file_util::CreateDirectory(source_subdir)); + ASSERT_TRUE(WriteFile(source_file, "content")); + VerifyDelegate(file_delegate.get()); + VerifyDelegate(subdir_delegate.get()); + + // Move the directory into place, s.t. the watched file appears. + EXPECT_CALL(*file_delegate, OnFilePathChanged(dest_file)).Times(AtLeast(1)); + EXPECT_CALL(*subdir_delegate, + OnFilePathChanged(dest_subdir)).Times(AtLeast(1)); + ASSERT_TRUE(file_util::Move(source_dir, dest_dir)); + VerifyDelegate(file_delegate.get()); + VerifyDelegate(subdir_delegate.get()); +} + +} // namespace |