Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(909)

Unified Diff: webkit/browser/fileapi/test_file_set.cc

Issue 183343002: Move test_file_set to content/test/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« content/test/test_file_set.h ('K') | « webkit/browser/fileapi/test_file_set.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/fileapi/test_file_set.cc
diff --git a/webkit/browser/fileapi/test_file_set.cc b/webkit/browser/fileapi/test_file_set.cc
deleted file mode 100644
index a762e338e6ef4c850ab8acd9865b23e10bf94d64..0000000000000000000000000000000000000000
--- a/webkit/browser/fileapi/test_file_set.cc
+++ /dev/null
@@ -1,70 +0,0 @@
-// Copyright (c) 2012 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 "webkit/browser/fileapi/test_file_set.h"
-
-#include <string>
-
-#include "base/file_util.h"
-#include "base/files/file.h"
-#include "base/logging.h"
-#include "base/rand_util.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace fileapi {
-
-namespace test {
-
-const TestCaseRecord kRegularTestCases[] = {
- {true, FILE_PATH_LITERAL("dir a"), 0},
- {true, FILE_PATH_LITERAL("dir a/dir A"), 0},
- {true, FILE_PATH_LITERAL("dir a/dir d"), 0},
- {true, FILE_PATH_LITERAL("dir a/dir d/dir e"), 0},
- {true, FILE_PATH_LITERAL("dir a/dir d/dir e/dir f"), 0},
- {true, FILE_PATH_LITERAL("dir a/dir d/dir e/dir g"), 0},
- {true, FILE_PATH_LITERAL("dir a/dir d/dir e/dir h"), 0},
- {true, FILE_PATH_LITERAL("dir b"), 0},
- {true, FILE_PATH_LITERAL("dir b/dir a"), 0},
- {true, FILE_PATH_LITERAL("dir c"), 0},
- {false, FILE_PATH_LITERAL("file 0"), 38},
- {false, FILE_PATH_LITERAL("file 2"), 60},
- {false, FILE_PATH_LITERAL("file 3"), 0},
- {false, FILE_PATH_LITERAL("dir a/file 0"), 39},
- {false, FILE_PATH_LITERAL("dir a/dir d/dir e/dir g/file 0"), 40},
- {false, FILE_PATH_LITERAL("dir a/dir d/dir e/dir g/file 1"), 41},
- {false, FILE_PATH_LITERAL("dir a/dir d/dir e/dir g/file 2"), 42},
- {false, FILE_PATH_LITERAL("dir a/dir d/dir e/dir g/file 3"), 50},
-};
-
-const size_t kRegularTestCaseSize = arraysize(kRegularTestCases);
-
-void SetUpOneTestCase(const base::FilePath& root_path,
- const TestCaseRecord& test_case) {
- base::FilePath path = root_path.Append(test_case.path);
- if (test_case.is_directory) {
- ASSERT_TRUE(base::CreateDirectory(path));
- return;
- }
- base::File file(path,
- base::File::FLAG_CREATE_ALWAYS | base::File::FLAG_WRITE);
- ASSERT_TRUE(file.IsValid());
- if (test_case.data_file_size) {
- std::string content = base::RandBytesAsString(test_case.data_file_size);
- EXPECT_LE(test_case.data_file_size, kint32max);
- ASSERT_EQ(static_cast<int>(content.size()),
- file.Write(0, content.data(), static_cast<int>(content.size())));
- }
-}
-
-
-void SetUpRegularTestCases(const base::FilePath& root_path) {
- for (size_t i = 0; i < arraysize(kRegularTestCases); ++i) {
- SCOPED_TRACE(testing::Message() << "Creating kRegularTestCases " << i);
- SetUpOneTestCase(root_path, kRegularTestCases[i]);
- }
-}
-
-} // namespace test
-
-} // namespace fileapi
« content/test/test_file_set.h ('K') | « webkit/browser/fileapi/test_file_set.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698