diff options
author | dgarrett@chromium.org <dgarrett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-18 01:08:35 +0000 |
---|---|---|
committer | dgarrett@chromium.org <dgarrett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-18 01:08:35 +0000 |
commit | bf0ece42c1ea7b3c3d572106dab09e92b0800cff (patch) | |
tree | 6d1bfe584e564b25a8493605e1c89a8eb4a4bf31 /courgette/base_test_unittest.cc | |
parent | ec817ab64e167d0a5d8c7dbae2eb322279e946e9 (diff) | |
download | chromium_src-bf0ece42c1ea7b3c3d572106dab09e92b0800cff.zip chromium_src-bf0ece42c1ea7b3c3d572106dab09e92b0800cff.tar.gz chromium_src-bf0ece42c1ea7b3c3d572106dab09e92b0800cff.tar.bz2 |
Add a basic backwards compatibility unittest.
This verifies we can still apply old patches, but does not
verify that old clients can apply new patches. That seems
important, but I'm not sure how to do it without storing
old client binaries in version control.
Also refactors a number of unit tests to allow code sharing for
reading files into memory. This is done via a new base class.
Uses test binaries submitted seperatly because of build tools problems.
BUG=None
TEST=New Unittest
Review URL: http://codereview.chromium.org/8252011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105982 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'courgette/base_test_unittest.cc')
-rw-r--r-- | courgette/base_test_unittest.cc | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/courgette/base_test_unittest.cc b/courgette/base_test_unittest.cc new file mode 100644 index 0000000..6da56fb --- /dev/null +++ b/courgette/base_test_unittest.cc @@ -0,0 +1,27 @@ +// Copyright (c) 2011 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 "courgette/base_test_unittest.h" + +#include "base/path_service.h" + +void BaseTest::SetUp() { + PathService::Get(base::DIR_SOURCE_ROOT, &test_dir_); + test_dir_ = test_dir_.AppendASCII("courgette"); + test_dir_ = test_dir_.AppendASCII("testdata"); +} + +void BaseTest::TearDown() { +} + +// Reads a test file into a string. +std::string BaseTest::FileContents(const char* file_name) const { + FilePath file_path = test_dir_; + file_path = file_path.AppendASCII(file_name); + std::string file_bytes; + + EXPECT_TRUE(file_util::ReadFileToString(file_path, &file_bytes)); + + return file_bytes; +} |