OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/file_util.h" | 5 #include "base/file_util.h" |
6 #include "base/scoped_temp_dir.h" | 6 #include "base/scoped_temp_dir.h" |
7 #include "sql/connection.h" | 7 #include "sql/connection.h" |
8 #include "sql/statement.h" | 8 #include "sql/statement.h" |
9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
10 #include "third_party/sqlite/sqlite3.h" | 10 #include "third_party/sqlite/sqlite3.h" |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 // Last insert row ID should be valid. | 113 // Last insert row ID should be valid. |
114 int64 row = db().GetLastInsertRowId(); | 114 int64 row = db().GetLastInsertRowId(); |
115 EXPECT_LT(0, row); | 115 EXPECT_LT(0, row); |
116 | 116 |
117 // It should be the primary key of the row we just inserted. | 117 // It should be the primary key of the row we just inserted. |
118 sql::Statement s(db().GetUniqueStatement("SELECT value FROM foo WHERE id=?")); | 118 sql::Statement s(db().GetUniqueStatement("SELECT value FROM foo WHERE id=?")); |
119 s.BindInt64(0, row); | 119 s.BindInt64(0, row); |
120 ASSERT_TRUE(s.Step()); | 120 ASSERT_TRUE(s.Step()); |
121 EXPECT_EQ(12, s.ColumnInt(0)); | 121 EXPECT_EQ(12, s.ColumnInt(0)); |
122 } | 122 } |
| 123 |
| 124 TEST_F(SQLConnectionTest, Rollback) { |
| 125 ASSERT_TRUE(db().BeginTransaction()); |
| 126 ASSERT_TRUE(db().BeginTransaction()); |
| 127 EXPECT_EQ(2, db().transaction_nesting()); |
| 128 db().RollbackTransaction(); |
| 129 EXPECT_FALSE(db().CommitTransaction()); |
| 130 EXPECT_TRUE(db().BeginTransaction()); |
| 131 } |
OLD | NEW |