Chromium Code Reviews| OLD | NEW |
|---|---|
| 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" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransaction.h" |
| 14 | 14 |
| 15 using WebKit::WebVector; | 15 using WebKit::WebVector; |
| 16 using WebKit::WebString; | 16 using WebKit::WebString; |
| 17 | 17 |
| 18 namespace content { | 18 namespace content { |
| 19 | 19 |
| 20 class FakeWebIDBTransaction : public WebKit::WebIDBTransaction { | 20 class FakeWebIDBTransaction : public WebKit::WebIDBTransaction { |
| 21 public: | 21 public: |
| 22 FakeWebIDBTransaction() {} | 22 FakeWebIDBTransaction() {} |
| 23 }; | 23 }; |
| 24 | 24 |
| 25 TEST(IndexedDBDispatcherTest, ValueSizeTest) { | 25 // TODO(alecflett): Reenable this test when IDB code in webkit |
|
jsbell
2012/11/12 19:38:50
Add a tracking bug for this and reference it?
See
| |
| 26 // enforces size limits. | |
| 27 TEST(IndexedDBDispatcherTest, DISABLED_ValueSizeTest) { | |
| 26 string16 data; | 28 string16 data; |
| 27 data.resize(kMaxIDBValueSizeInBytes / sizeof(char16) + 1, 'x'); | 29 data.resize(kMaxIDBValueSizeInBytes / sizeof(char16) + 1, 'x'); |
| 28 const bool kIsNull = false; | 30 const bool kIsNull = false; |
| 29 const bool kIsInvalid = false; | 31 const bool kIsInvalid = false; |
| 30 const SerializedScriptValue value(kIsNull, kIsInvalid, data); | 32 const SerializedScriptValue value(kIsNull, kIsInvalid, data); |
| 31 const int32 dummy_id = -1; | 33 const int32 dummy_id = -1; |
| 32 | 34 |
| 33 { | 35 { |
| 34 IndexedDBDispatcher dispatcher; | 36 IndexedDBDispatcher dispatcher; |
| 35 IndexedDBKey key; | 37 IndexedDBKey key; |
| 36 key.SetNumber(0); | 38 key.SetNumber(0); |
| 37 WebKit::WebExceptionCode ec = 0; | |
| 38 dispatcher.RequestIDBObjectStorePut( | 39 dispatcher.RequestIDBObjectStorePut( |
| 39 value, | 40 value, |
| 40 key, | 41 key, |
| 41 WebKit::WebIDBObjectStore::AddOrUpdate, | 42 WebKit::WebIDBObjectStore::AddOrUpdate, |
| 42 static_cast<WebKit::WebIDBCallbacks*>(NULL), | 43 static_cast<WebKit::WebIDBCallbacks*>(NULL), |
| 43 dummy_id, | 44 dummy_id, |
| 44 FakeWebIDBTransaction(), | 45 FakeWebIDBTransaction(), |
| 45 WebVector<WebString>(), | 46 WebVector<long long>(), |
| 46 WebVector<WebVector<WebKit::WebIDBKey> >(), | 47 WebVector<WebVector<WebKit::WebIDBKey> >()); |
| 47 &ec); | |
| 48 EXPECT_NE(ec, 0); | |
| 49 } | 48 } |
| 50 } | 49 } |
| 51 | 50 |
| 52 } // namespace content | 51 } // namespace content |
| OLD | NEW |