OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | |
3 * | |
4 * Redistribution and use in source and binary forms, with or without | |
5 * modification, are permitted provided that the following conditions | |
6 * are met: | |
7 * | |
8 * 1. Redistributions of source code must retain the above copyright | |
9 * notice, this list of conditions and the following disclaimer. | |
10 * 2. Redistributions in binary form must reproduce the above copyright | |
11 * notice, this list of conditions and the following disclaimer in the | |
12 * documentation and/or other materials provided with the distribution. | |
13 * | |
14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY | |
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | |
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | |
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | |
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | |
19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | |
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | |
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
24 */ | |
25 | |
26 #include "config.h" | |
27 #include "IDBFactoryBackendImpl.h" | |
28 #include "IDBFakeBackingStore.h" | |
29 #include "SecurityOrigin.h" | |
30 #include <gtest/gtest.h> | |
31 #include <wtf/Vector.h> | |
32 | |
33 #if ENABLE(INDEXED_DATABASE) | |
34 | |
35 using namespace WebCore; | |
36 | |
37 namespace { | |
38 | |
39 class MockIDBCallbacks : public IDBCallbacks { | |
40 public: | |
41 MockIDBCallbacks() : m_wasErrorCalled(false) { } | |
42 | |
43 virtual ~MockIDBCallbacks() | |
44 { | |
45 EXPECT_TRUE(m_wasErrorCalled); | |
46 } | |
47 virtual void onError(PassRefPtr<IDBDatabaseError>) | |
48 { | |
49 m_wasErrorCalled = true; | |
50 } | |
51 virtual void onSuccess(PassRefPtr<DOMStringList>) { } | |
52 virtual void onSuccess(PassRefPtr<IDBCursorBackendInterface>) { } | |
53 virtual void onSuccess(PassRefPtr<IDBDatabaseBackendInterface>) | |
54 { | |
55 EXPECT_TRUE(false); | |
56 } | |
57 virtual void onSuccess(PassRefPtr<IDBKey>) { } | |
58 virtual void onSuccess(PassRefPtr<IDBTransactionBackendInterface>) { } | |
59 virtual void onSuccess(PassRefPtr<SerializedScriptValue>) { } | |
60 virtual void onSuccessWithContinuation() { } | |
61 virtual void onSuccessWithPrefetch(const Vector<RefPtr<IDBKey> >&, const Vec
tor<RefPtr<IDBKey> >&, const Vector<RefPtr<SerializedScriptValue> >&) { } | |
62 virtual void onBlocked() { } | |
63 private: | |
64 bool m_wasErrorCalled; | |
65 }; | |
66 | |
67 class FailingBackingStore : public IDBFakeBackingStore { | |
68 public: | |
69 virtual ~FailingBackingStore() { } | |
70 static PassRefPtr<IDBBackingStore> open() | |
71 { | |
72 return adoptRef(new FailingBackingStore); | |
73 } | |
74 virtual bool createIDBDatabaseMetaData(const String&, const String&, int64_t
&) | |
75 { | |
76 return false; | |
77 } | |
78 }; | |
79 | |
80 class FailingIDBFactoryBackendImpl : public IDBFactoryBackendImpl { | |
81 public: | |
82 virtual ~FailingIDBFactoryBackendImpl() { } | |
83 static PassRefPtr<FailingIDBFactoryBackendImpl> create() | |
84 { | |
85 return adoptRef(new FailingIDBFactoryBackendImpl); | |
86 } | |
87 virtual void removeIDBDatabaseBackend(const WTF::String &) { } | |
88 | |
89 protected: | |
90 virtual PassRefPtr<IDBBackingStore> openBackingStore(PassRefPtr<SecurityOrig
in> prpOrigin, const String& dataDir) | |
91 { | |
92 return FailingBackingStore::open(); | |
93 } | |
94 }; | |
95 | |
96 TEST(IDBAbortTest, TheTest) | |
97 { | |
98 RefPtr<IDBFactoryBackendImpl> factory = FailingIDBFactoryBackendImpl::create
(); | |
99 const String& name = "db name"; | |
100 MockIDBCallbacks callbacks; | |
101 RefPtr<SecurityOrigin> origin = SecurityOrigin::create("http", "localhost",
81); | |
102 factory->open(name, &callbacks, origin, 0 /*Frame*/, String() /*path*/); | |
103 } | |
104 | |
105 } // namespace | |
106 | |
107 #endif // ENABLE(INDEXED_DATABASE) | |
OLD | NEW |