diff options
author | dumi@chromium.org <dumi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-13 01:30:45 +0000 |
---|---|---|
committer | dumi@chromium.org <dumi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-13 01:30:45 +0000 |
commit | 3c5ed2c5747de75351c18fbf1e969eccc263d1d5 (patch) | |
tree | 75ba30df50a1f0bd4ecd90d51051b3bb057c2a51 /webkit/database/database_util_unittest.cc | |
parent | dad1e3bc1d2894be09c2a5bcb98708044aa1664d (diff) | |
download | chromium_src-3c5ed2c5747de75351c18fbf1e969eccc263d1d5.zip chromium_src-3c5ed2c5747de75351c18fbf1e969eccc263d1d5.tar.gz chromium_src-3c5ed2c5747de75351c18fbf1e969eccc263d1d5.tar.bz2 |
Changing the file naming scheme. Creating a directory for each origin,
and naming files according to the row ID of the respective DB in the
tracker database. Also, fixing a bug: caching the renderer process
handle in DatabaseDispatcherHost after it was set in
ResourceMessageFilter.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/385051
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31874 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/database/database_util_unittest.cc')
-rw-r--r-- | webkit/database/database_util_unittest.cc | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/webkit/database/database_util_unittest.cc b/webkit/database/database_util_unittest.cc new file mode 100644 index 0000000..4718e89 --- /dev/null +++ b/webkit/database/database_util_unittest.cc @@ -0,0 +1,45 @@ +// Copyright (c) 2009 The Chromium Authos. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "base/string_util.h" +#include "testing/gtest/include/gtest/gtest.h" +#include "webkit/database/database_util.h" + +using webkit_database::DatabaseUtil; + +static void TestVfsFilePath(bool expected_result, + const char* vfs_file_path, + const char* expected_origin_identifier = "", + const char* expected_database_name = "", + const char* expected_sqlite_suffix = "") { + string16 origin_identifier; + string16 database_name; + string16 sqlite_suffix; + EXPECT_EQ(expected_result, + DatabaseUtil::CrackVfsFilePath(ASCIIToUTF16(vfs_file_path), + &origin_identifier, + &database_name, + &sqlite_suffix)); + EXPECT_EQ(ASCIIToUTF16(expected_origin_identifier), origin_identifier); + EXPECT_EQ(ASCIIToUTF16(expected_database_name), database_name); + EXPECT_EQ(ASCIIToUTF16(expected_sqlite_suffix), sqlite_suffix); +} + +namespace webkit_database { + +// Test DatabaseUtil::CrackVfsFilePath on various inputs. +TEST(DatabaseUtilTest, CrackVfsFilePathTest) { + TestVfsFilePath(true, "origin/#", "origin", "", ""); + TestVfsFilePath(true, "origin/#suffix", "origin", "", "suffix"); + TestVfsFilePath(true, "origin/db_name#", "origin", "db_name", ""); + TestVfsFilePath(true, "origin/db_name#suffix", "origin", "db_name", "suffix"); + TestVfsFilePath(false, "origindb_name#"); + TestVfsFilePath(false, "origindb_name#suffix"); + TestVfsFilePath(false, "origin/db_name"); + TestVfsFilePath(false, "origin#db_name/suffix"); + TestVfsFilePath(false, "/db_name#"); + TestVfsFilePath(false, "/db_name#suffix"); +} + +} // namespace webkit_database |