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

Side by Side Diff: third_party/WebKit/Source/modules/payments/PaymentRequestDetailsTest.cpp

Issue 2780773004: Reland "PaymentRequest: Introduce PaymentDetailsInit and PaymentDetailsUpdate." (Closed)
Patch Set: Reland "PaymentRequest: Introduce PaymentDetailsInit and PaymentDetailsUpdate." Created 3 years, 8 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 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "modules/payments/PaymentRequest.h" 5 #include "modules/payments/PaymentRequest.h"
6 6
7 #include <ostream> // NOLINT 7 #include <ostream> // NOLINT
8 #include "bindings/core/v8/ExceptionState.h" 8 #include "bindings/core/v8/ExceptionState.h"
9 #include "bindings/core/v8/ScriptState.h" 9 #include "bindings/core/v8/ScriptState.h"
10 #include "bindings/core/v8/V8BindingForTesting.h" 10 #include "bindings/core/v8/V8BindingForTesting.h"
11 #include "core/dom/Document.h" 11 #include "core/dom/Document.h"
12 #include "core/dom/ExceptionCode.h" 12 #include "core/dom/ExceptionCode.h"
13 #include "modules/payments/PaymentDetails.h" 13 #include "modules/payments/PaymentDetailsInit.h"
14 #include "modules/payments/PaymentOptions.h" 14 #include "modules/payments/PaymentOptions.h"
15 #include "modules/payments/PaymentTestHelper.h" 15 #include "modules/payments/PaymentTestHelper.h"
16 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
17 17
18 namespace blink { 18 namespace blink {
19 namespace { 19 namespace {
20 20
21 class DetailsTestCase { 21 class DetailsTestCase {
22 public: 22 public:
23 DetailsTestCase(PaymentTestDetailToChange detail, 23 DetailsTestCase(PaymentTestDetailToChange detail,
24 PaymentTestDataToChange data, 24 PaymentTestDataToChange data,
25 PaymentTestModificationType modType, 25 PaymentTestModificationType modType,
26 const char* valueToUse, 26 const char* valueToUse,
27 bool expectException = false, 27 bool expectException = false,
28 ExceptionCode expectedExceptionCode = 0) 28 ExceptionCode expectedExceptionCode = 0)
29 : m_detail(detail), 29 : m_detail(detail),
30 m_data(data), 30 m_data(data),
31 m_modType(modType), 31 m_modType(modType),
32 m_valueToUse(valueToUse), 32 m_valueToUse(valueToUse),
33 m_expectException(expectException), 33 m_expectException(expectException),
34 m_expectedExceptionCode(expectedExceptionCode) {} 34 m_expectedExceptionCode(expectedExceptionCode) {}
35 35
36 ~DetailsTestCase() {} 36 ~DetailsTestCase() {}
37 37
38 PaymentDetails buildDetails() const { 38 PaymentDetailsInit buildDetails() const {
39 return buildPaymentDetailsForTest(m_detail, m_data, m_modType, 39 return buildPaymentDetailsInitForTest(m_detail, m_data, m_modType,
40 m_valueToUse); 40 m_valueToUse);
41 } 41 }
42 42
43 bool expectException() const { return m_expectException; } 43 bool expectException() const { return m_expectException; }
44 44
45 ExceptionCode getExpectedExceptionCode() const { 45 ExceptionCode getExpectedExceptionCode() const {
46 return m_expectedExceptionCode; 46 return m_expectedExceptionCode;
47 } 47 }
48 48
49 private: 49 private:
50 friend std::ostream& operator<<(std::ostream&, DetailsTestCase); 50 friend std::ostream& operator<<(std::ostream&, DetailsTestCase);
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 V8TypeError), 980 V8TypeError),
981 DetailsTestCase(PaymentTestDetailModifierItem, 981 DetailsTestCase(PaymentTestDetailModifierItem,
982 PaymentTestDataValue, 982 PaymentTestDataValue,
983 PaymentTestOverwriteValue, 983 PaymentTestOverwriteValue,
984 "1/3", 984 "1/3",
985 true, 985 true,
986 V8TypeError))); 986 V8TypeError)));
987 987
988 } // namespace 988 } // namespace
989 } // namespace blink 989 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698