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

Unified Diff: chrome/browser/sync/util/query_helpers_unittest.cc

Issue 526002: Finish removing query_helpers.* (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 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
« no previous file with comments | « chrome/browser/sync/util/query_helpers.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/util/query_helpers_unittest.cc
===================================================================
--- chrome/browser/sync/util/query_helpers_unittest.cc (revision 35655)
+++ chrome/browser/sync/util/query_helpers_unittest.cc (working copy)
@@ -1,45 +0,0 @@
-// Copyright (c) 2009 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/sync/util/query_helpers.h"
-
-#include <limits>
-#include <string>
-
-#include "base/file_util.h"
-#include "chrome/common/sqlite_utils.h"
-#include "chrome/test/file_test_utils.h"
-#include "testing/gtest/include/gtest/gtest.h"
-
-using std::numeric_limits;
-using std::string;
-
-TEST(QueryHelpers, APEncode) {
- string test;
- char i;
- for (i = numeric_limits<char>::min(); i < numeric_limits<char>::max(); ++i)
- test.push_back(i);
- test.push_back(i);
- const string encoded = APEncode(test);
- const string decoded = APDecode(encoded);
- ASSERT_EQ(test, decoded);
-}
-
-TEST(QueryHelpers, TestExecFailure) {
- FilePath test_database;
- file_util::GetCurrentDirectory(&test_database);
- test_database = test_database.Append(
- FILE_PATH_LITERAL("queryhelper_test.sqlite3"));
- // Cleanup left-over file, if present.
- file_util::Delete(test_database, true);
- FileAutoDeleter file_deleter(test_database);
- {
- sqlite3* database = NULL;
- ASSERT_EQ(SQLITE_OK, SqliteOpen(test_database, &database));
- sqlite_utils::scoped_sqlite_db_ptr database_deleter(database);
- EXPECT_EQ(SQLITE_DONE, Exec(database, "CREATE TABLE test_table (idx int)"));
- EXPECT_NE(SQLITE_DONE, Exec(database, "ALTER TABLE test_table ADD COLUMN "
- "broken int32 default ?", -1));
- }
-}
« no previous file with comments | « chrome/browser/sync/util/query_helpers.cc ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698