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

Side by Side Diff: content/common/indexed_db/indexed_db_dispatcher_unittest.cc

Issue 12129002: Remove deprecated IPC code for onUpgradeNeeded/onSuccess/metadata (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
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 "base/memory/scoped_ptr.h" 5 #include "base/memory/scoped_ptr.h"
6 #include "base/values.h" 6 #include "base/values.h"
7 #include "content/common/indexed_db/indexed_db_dispatcher.h" 7 #include "content/common/indexed_db/indexed_db_dispatcher.h"
8 #include "content/common/indexed_db/indexed_db_key.h" 8 #include "content/common/indexed_db/indexed_db_key.h"
9 #include "content/public/common/serialized_script_value.h" 9 #include "content/public/common/serialized_script_value.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h" 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h" 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransaction.h"
14 13
15 using WebKit::WebVector; 14 using WebKit::WebVector;
16 using WebKit::WebString; 15 using WebKit::WebString;
17 16
18 namespace content { 17 namespace content {
19 18
20 class FakeWebIDBTransaction : public WebKit::WebIDBTransaction {
21 public:
22 FakeWebIDBTransaction() {}
23 };
24
25 // TODO(alecflett): Reenable this test when IDB code in webkit 19 // TODO(alecflett): Reenable this test when IDB code in webkit
26 // enforces size limits. See http://crbug.com/160577 20 // enforces size limits. See http://crbug.com/160577
27 TEST(IndexedDBDispatcherTest, DISABLED_ValueSizeTest) { 21 TEST(IndexedDBDispatcherTest, DISABLED_ValueSizeTest) {
28 string16 data; 22 string16 data;
29 data.resize(kMaxIDBValueSizeInBytes / sizeof(char16) + 1, 'x'); 23 data.resize(kMaxIDBValueSizeInBytes / sizeof(char16) + 1, 'x');
30 WebKit::WebVector<unsigned char> value; 24 WebKit::WebVector<unsigned char> value;
31 const int32 ipc_dummy_id = -1; 25 const int32 ipc_dummy_id = -1;
32 const int64 transaction_id = 1; 26 const int64 transaction_id = 1;
33 const int64 object_store_id = 2; 27 const int64 object_store_id = 2;
34 28
35 { 29 {
36 IndexedDBDispatcher dispatcher; 30 IndexedDBDispatcher dispatcher;
37 IndexedDBKey key; 31 IndexedDBKey key;
38 key.SetNumber(0); 32 key.SetNumber(0);
39 dispatcher.RequestIDBDatabasePut( 33 dispatcher.RequestIDBDatabasePut(
40 ipc_dummy_id, 34 ipc_dummy_id,
41 transaction_id, 35 transaction_id,
42 object_store_id, 36 object_store_id,
43 &value, 37 &value,
44 key, 38 key,
45 WebKit::WebIDBDatabase::AddOrUpdate, 39 WebKit::WebIDBDatabase::AddOrUpdate,
46 static_cast<WebKit::WebIDBCallbacks*>(NULL), 40 static_cast<WebKit::WebIDBCallbacks*>(NULL),
47 WebVector<long long>(), 41 WebVector<long long>(),
48 WebVector<WebVector<WebKit::WebIDBKey> >()); 42 WebVector<WebVector<WebKit::WebIDBKey> >());
49 } 43 }
50 } 44 }
51 45
52 } // namespace content 46 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698