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

Side by Side Diff: content/browser/indexed_db/indexed_db_unittest.cc

Issue 2506773002: [IndexedDB] Integrating failures and corruption with transaction (Closed)
Patch Set: removed extra log statements Created 4 years 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 unified diff | Download patch
« no previous file with comments | « content/browser/indexed_db/indexed_db_transaction_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <stdint.h> 5 #include <stdint.h>
6 #include <utility> 6 #include <utility>
7 7
8 #include "base/files/file_util.h" 8 #include "base/files/file_util.h"
9 #include "base/files/scoped_temp_dir.h" 9 #include "base/files/scoped_temp_dir.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 273
274 EXPECT_TRUE(callbacks->connection()); 274 EXPECT_TRUE(callbacks->connection());
275 275
276 // ConnectionOpened() is usually called by the dispatcher. 276 // ConnectionOpened() is usually called by the dispatcher.
277 context->ConnectionOpened(kTestOrigin, callbacks->connection()); 277 context->ConnectionOpened(kTestOrigin, callbacks->connection());
278 278
279 EXPECT_TRUE(factory->IsBackingStoreOpen(kTestOrigin)); 279 EXPECT_TRUE(factory->IsBackingStoreOpen(kTestOrigin));
280 280
281 // Simulate the write failure. 281 // Simulate the write failure.
282 leveldb::Status status = leveldb::Status::IOError("Simulated failure"); 282 leveldb::Status status = leveldb::Status::IOError("Simulated failure");
283 callbacks->connection()->database()->TransactionCommitFailed(status); 283 context->GetIDBFactory()->HandleBackingStoreFailure(kTestOrigin);
284 284
285 EXPECT_TRUE(db_callbacks->forced_close_called()); 285 EXPECT_TRUE(db_callbacks->forced_close_called());
286 EXPECT_FALSE(factory->IsBackingStoreOpen(kTestOrigin)); 286 EXPECT_FALSE(factory->IsBackingStoreOpen(kTestOrigin));
287 } 287 }
288 288
289 } // namespace content 289 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/indexed_db/indexed_db_transaction_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698