Index: third_party/WebKit/Source/modules/payments/PaymentRequestTestBase.h |
diff --git a/third_party/WebKit/Source/modules/payments/PaymentRequestTestBase.h b/third_party/WebKit/Source/modules/payments/PaymentRequestTestBase.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2491d9ffa2253bd9953cd8cad4455a73bc2880a5 |
--- /dev/null |
+++ b/third_party/WebKit/Source/modules/payments/PaymentRequestTestBase.h |
@@ -0,0 +1,52 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef PaymentRequestTestBase_h |
+#define PaymentRequestTestBase_h |
+ |
+#include "bindings/core/v8/ExceptionState.h" |
+#include "bindings/core/v8/ScriptFunction.h" |
+#include "platform/heap/Persistent.h" |
+#include "testing/gmock/include/gmock/gmock.h" |
+#include "testing/gtest/include/gtest/gtest.h" |
+#include "wtf/OwnPtr.h" |
+#include "wtf/Vector.h" |
+#include "wtf/text/WTFString.h" |
+ |
+namespace blink { |
+ |
+class DummyPageHolder; |
+class ScriptState; |
+ |
+// A base fixture for PaymentRequest tests. |
+class PaymentRequestTestBase : public testing::Test { |
+public: |
+ PaymentRequestTestBase(); |
+ ~PaymentRequestTestBase() override; |
+ |
+ ScriptState* getScriptState(); |
+ ExceptionState& getExceptionState(); |
+ |
+ void setSecurityOrigin(const String&); |
+ |
+ v8::Local<v8::Function> expectCall(); |
+ v8::Local<v8::Function> expectNoCall(); |
+ void firePromiseCallbacks(); |
+ |
+private: |
+ class MockFunction : public ScriptFunction { |
+ public: |
+ explicit MockFunction(ScriptState*); |
+ v8::Local<v8::Function> bind(); |
+ MOCK_METHOD1(call, ScriptValue(ScriptValue)); |
+ }; |
+ |
+ OwnPtr<DummyPageHolder> m_holder; |
haraken
2016/06/14 05:24:35
Remove this?
please use gerrit instead
2016/06/15 04:13:19
Done.
|
+ TrackExceptionState m_exceptionState; |
haraken
2016/06/14 05:24:35
Remove this?
please use gerrit instead
2016/06/15 04:13:19
Done.
|
+ Vector<Persistent<MockFunction>> m_mockFunctions; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // PaymentRequestTestBase_h |