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

Side by Side Diff: third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp

Issue 2320213004: Port IndexedDB open() and database callbacks to Mojo. (Closed)
Patch Set: Make DatabaseClient an associated interface. Created 4 years, 3 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 14 matching lines...) Expand all
25 25
26 #include "modules/indexeddb/IDBRequest.h" 26 #include "modules/indexeddb/IDBRequest.h"
27 27
28 #include "bindings/core/v8/ScriptState.h" 28 #include "bindings/core/v8/ScriptState.h"
29 #include "bindings/core/v8/V8Binding.h" 29 #include "bindings/core/v8/V8Binding.h"
30 #include "bindings/core/v8/V8BindingForTesting.h" 30 #include "bindings/core/v8/V8BindingForTesting.h"
31 #include "core/dom/DOMException.h" 31 #include "core/dom/DOMException.h"
32 #include "core/dom/ExceptionCode.h" 32 #include "core/dom/ExceptionCode.h"
33 #include "core/dom/ExecutionContext.h" 33 #include "core/dom/ExecutionContext.h"
34 #include "core/testing/NullExecutionContext.h" 34 #include "core/testing/NullExecutionContext.h"
35 #include "modules/indexeddb/IDBDatabaseCallbacks.h"
36 #include "modules/indexeddb/IDBKey.h" 35 #include "modules/indexeddb/IDBKey.h"
37 #include "modules/indexeddb/IDBOpenDBRequest.h" 36 #include "modules/indexeddb/IDBOpenDBRequest.h"
38 #include "modules/indexeddb/IDBValue.h" 37 #include "modules/indexeddb/IDBValue.h"
39 #include "modules/indexeddb/MockWebIDBDatabase.h" 38 #include "modules/indexeddb/MockWebIDBDatabase.h"
40 #include "platform/SharedBuffer.h" 39 #include "platform/SharedBuffer.h"
41 #include "testing/gtest/include/gtest/gtest.h" 40 #include "testing/gtest/include/gtest/gtest.h"
42 #include "wtf/PassRefPtr.h" 41 #include "wtf/PassRefPtr.h"
43 #include "wtf/Vector.h" 42 #include "wtf/Vector.h"
44 #include "wtf/dtoa/utils.h" 43 #include "wtf/dtoa/utils.h"
45 #include <memory> 44 #include <memory>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 scope.getExecutionContext()->stopActiveDOMObjects(); 85 scope.getExecutionContext()->stopActiveDOMObjects();
87 } 86 }
88 87
89 TEST(IDBRequestTest, ConnectionsAfterStopping) 88 TEST(IDBRequestTest, ConnectionsAfterStopping)
90 { 89 {
91 V8TestingScope scope; 90 V8TestingScope scope;
92 const int64_t transactionId = 1234; 91 const int64_t transactionId = 1234;
93 const int64_t version = 1; 92 const int64_t version = 1;
94 const int64_t oldVersion = 0; 93 const int64_t oldVersion = 0;
95 const IDBDatabaseMetadata metadata; 94 const IDBDatabaseMetadata metadata;
96 Persistent<IDBDatabaseCallbacks> callbacks = IDBDatabaseCallbacks::create();
97 95
98 { 96 {
99 std::unique_ptr<MockWebIDBDatabase> backend = MockWebIDBDatabase::create (); 97 std::unique_ptr<MockWebIDBDatabase> backend = MockWebIDBDatabase::create ();
100 EXPECT_CALL(*backend, abort(transactionId)) 98 EXPECT_CALL(*backend, abort(transactionId))
101 .Times(1); 99 .Times(1);
102 EXPECT_CALL(*backend, close()) 100 EXPECT_CALL(*backend, close())
103 .Times(1); 101 .Times(1);
104 IDBOpenDBRequest* request = IDBOpenDBRequest::create(scope.getScriptStat e(), callbacks, transactionId, version); 102 IDBOpenDBRequest* request = IDBOpenDBRequest::create(scope.getScriptStat e(), nullptr, transactionId, version);
105 EXPECT_EQ(request->readyState(), "pending"); 103 EXPECT_EQ(request->readyState(), "pending");
106 104
107 scope.getExecutionContext()->stopActiveDOMObjects(); 105 scope.getExecutionContext()->stopActiveDOMObjects();
108 request->onUpgradeNeeded(oldVersion, std::move(backend), metadata, WebID BDataLossNone, String()); 106 request->onUpgradeNeeded(oldVersion, std::move(backend), metadata, WebID BDataLossNone, String());
109 } 107 }
110 108
111 { 109 {
112 std::unique_ptr<MockWebIDBDatabase> backend = MockWebIDBDatabase::create (); 110 std::unique_ptr<MockWebIDBDatabase> backend = MockWebIDBDatabase::create ();
113 EXPECT_CALL(*backend, close()) 111 EXPECT_CALL(*backend, close())
114 .Times(1); 112 .Times(1);
115 IDBOpenDBRequest* request = IDBOpenDBRequest::create(scope.getScriptStat e(), callbacks, transactionId, version); 113 IDBOpenDBRequest* request = IDBOpenDBRequest::create(scope.getScriptStat e(), nullptr, transactionId, version);
116 EXPECT_EQ(request->readyState(), "pending"); 114 EXPECT_EQ(request->readyState(), "pending");
117 115
118 scope.getExecutionContext()->stopActiveDOMObjects(); 116 scope.getExecutionContext()->stopActiveDOMObjects();
119 request->onSuccess(std::move(backend), metadata); 117 request->onSuccess(std::move(backend), metadata);
120 } 118 }
121 } 119 }
122 120
123 } // namespace 121 } // namespace
124 } // namespace blink 122 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698