Add 9 patch scrollbar assets to native theme
[chromium-blink-merge.git] / sql / transaction_unittest.cc
blobfe5eee232d6c97a10640b84fd76d431f8cedc676
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/file_util.h"
6 #include "base/files/scoped_temp_dir.h"
7 #include "sql/connection.h"
8 #include "sql/statement.h"
9 #include "sql/transaction.h"
10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "third_party/sqlite/sqlite3.h"
13 class SQLTransactionTest : public testing::Test {
14 public:
15 virtual void SetUp() {
16 ASSERT_TRUE(temp_dir_.CreateUniqueTempDir());
17 ASSERT_TRUE(db_.Open(
18 temp_dir_.path().AppendASCII("SQLTransactionTest.db")));
20 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
23 virtual void TearDown() {
24 db_.Close();
27 sql::Connection& db() { return db_; }
29 // Returns the number of rows in table "foo".
30 int CountFoo() {
31 sql::Statement count(db().GetUniqueStatement("SELECT count(*) FROM foo"));
32 count.Step();
33 return count.ColumnInt(0);
36 private:
37 base::ScopedTempDir temp_dir_;
38 sql::Connection db_;
41 TEST_F(SQLTransactionTest, Commit) {
43 sql::Transaction t(&db());
44 EXPECT_FALSE(t.is_open());
45 EXPECT_TRUE(t.Begin());
46 EXPECT_TRUE(t.is_open());
48 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
50 t.Commit();
51 EXPECT_FALSE(t.is_open());
54 EXPECT_EQ(1, CountFoo());
57 TEST_F(SQLTransactionTest, Rollback) {
58 // Test some basic initialization, and that rollback runs when you exit the
59 // scope.
61 sql::Transaction t(&db());
62 EXPECT_FALSE(t.is_open());
63 EXPECT_TRUE(t.Begin());
64 EXPECT_TRUE(t.is_open());
66 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
69 // Nothing should have been committed since it was implicitly rolled back.
70 EXPECT_EQ(0, CountFoo());
72 // Test explicit rollback.
73 sql::Transaction t2(&db());
74 EXPECT_FALSE(t2.is_open());
75 EXPECT_TRUE(t2.Begin());
77 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
78 t2.Rollback();
79 EXPECT_FALSE(t2.is_open());
81 // Nothing should have been committed since it was explicitly rolled back.
82 EXPECT_EQ(0, CountFoo());
85 // Rolling back any part of a transaction should roll back all of them.
86 TEST_F(SQLTransactionTest, NestedRollback) {
87 EXPECT_EQ(0, db().transaction_nesting());
89 // Outermost transaction.
91 sql::Transaction outer(&db());
92 EXPECT_TRUE(outer.Begin());
93 EXPECT_EQ(1, db().transaction_nesting());
95 // The first inner one gets committed.
97 sql::Transaction inner1(&db());
98 EXPECT_TRUE(inner1.Begin());
99 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
100 EXPECT_EQ(2, db().transaction_nesting());
102 inner1.Commit();
103 EXPECT_EQ(1, db().transaction_nesting());
106 // One row should have gotten inserted.
107 EXPECT_EQ(1, CountFoo());
109 // The second inner one gets rolled back.
111 sql::Transaction inner2(&db());
112 EXPECT_TRUE(inner2.Begin());
113 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
114 EXPECT_EQ(2, db().transaction_nesting());
116 inner2.Rollback();
117 EXPECT_EQ(1, db().transaction_nesting());
120 // A third inner one will fail in Begin since one has already been rolled
121 // back.
122 EXPECT_EQ(1, db().transaction_nesting());
124 sql::Transaction inner3(&db());
125 EXPECT_FALSE(inner3.Begin());
126 EXPECT_EQ(1, db().transaction_nesting());
129 EXPECT_EQ(0, db().transaction_nesting());
130 EXPECT_EQ(0, CountFoo());