| OLD | NEW |
| 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/PaymentResponse.h" | 5 #include "modules/payments/PaymentResponse.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/ExceptionState.h" | 7 #include "bindings/core/v8/ExceptionState.h" |
| 8 #include "bindings/core/v8/ScriptState.h" | 8 #include "bindings/core/v8/ScriptState.h" |
| 9 #include "bindings/core/v8/ScriptValue.h" | 9 #include "bindings/core/v8/ScriptValue.h" |
| 10 #include "bindings/core/v8/V8Binding.h" | 10 #include "bindings/core/v8/V8Binding.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 private: | 39 private: |
| 40 ScriptPromise m_dummyPromise; | 40 ScriptPromise m_dummyPromise; |
| 41 }; | 41 }; |
| 42 | 42 |
| 43 TEST(PaymentResponseTest, DataCopiedOver) | 43 TEST(PaymentResponseTest, DataCopiedOver) |
| 44 { | 44 { |
| 45 V8TestingScope scope; | 45 V8TestingScope scope; |
| 46 mojom::blink::PaymentResponsePtr input = buildPaymentResponseForTest(); | 46 mojom::blink::PaymentResponsePtr input = buildPaymentResponseForTest(); |
| 47 input->method_name = "foo"; | 47 input->method_name = "foo"; |
| 48 input->total_amount->currency = "USD"; | |
| 49 input->total_amount->value = "5.00"; | |
| 50 input->stringified_details = "{\"transactionId\": 123}"; | 48 input->stringified_details = "{\"transactionId\": 123}"; |
| 51 input->payer_email = "abc@gmail.com"; | 49 input->payer_email = "abc@gmail.com"; |
| 52 input->payer_phone = "0123"; | 50 input->payer_phone = "0123"; |
| 53 MockPaymentCompleter* completeCallback = new MockPaymentCompleter; | 51 MockPaymentCompleter* completeCallback = new MockPaymentCompleter; |
| 54 | 52 |
| 55 PaymentResponse output(std::move(input), completeCallback); | 53 PaymentResponse output(std::move(input), completeCallback); |
| 56 | 54 |
| 57 EXPECT_EQ("foo", output.methodName()); | 55 EXPECT_EQ("foo", output.methodName()); |
| 58 EXPECT_EQ("abc@gmail.com", output.payerEmail()); | 56 EXPECT_EQ("abc@gmail.com", output.payerEmail()); |
| 59 EXPECT_EQ("0123", output.payerPhone()); | 57 EXPECT_EQ("0123", output.payerPhone()); |
| 60 | 58 |
| 61 CurrencyAmount totalAmount; | |
| 62 output.totalAmount(totalAmount); | |
| 63 EXPECT_EQ("USD", totalAmount.currency()); | |
| 64 EXPECT_EQ("5.00", totalAmount.value()); | |
| 65 | |
| 66 ScriptValue details = output.details(scope.getScriptState(), scope.getExcept
ionState()); | 59 ScriptValue details = output.details(scope.getScriptState(), scope.getExcept
ionState()); |
| 67 | 60 |
| 68 ASSERT_FALSE(scope.getExceptionState().hadException()); | 61 ASSERT_FALSE(scope.getExceptionState().hadException()); |
| 69 ASSERT_TRUE(details.v8Value()->IsObject()); | 62 ASSERT_TRUE(details.v8Value()->IsObject()); |
| 70 | 63 |
| 71 ScriptValue transactionId(scope.getScriptState(), details.v8Value().As<v8::O
bject>()->Get(v8String(scope.getScriptState()->isolate(), "transactionId"))); | 64 ScriptValue transactionId(scope.getScriptState(), details.v8Value().As<v8::O
bject>()->Get(v8String(scope.getScriptState()->isolate(), "transactionId"))); |
| 72 | 65 |
| 73 ASSERT_TRUE(transactionId.v8Value()->IsNumber()); | 66 ASSERT_TRUE(transactionId.v8Value()->IsNumber()); |
| 74 EXPECT_EQ(123, transactionId.v8Value().As<v8::Number>()->Value()); | 67 EXPECT_EQ(123, transactionId.v8Value().As<v8::Number>()->Value()); |
| 75 } | 68 } |
| (...skipping 21 matching lines...) Expand all Loading... |
| 97 MockPaymentCompleter* completeCallback = new MockPaymentCompleter; | 90 MockPaymentCompleter* completeCallback = new MockPaymentCompleter; |
| 98 PaymentResponse output(std::move(input), completeCallback); | 91 PaymentResponse output(std::move(input), completeCallback); |
| 99 | 92 |
| 100 EXPECT_CALL(*completeCallback, complete(scope.getScriptState(), false)); | 93 EXPECT_CALL(*completeCallback, complete(scope.getScriptState(), false)); |
| 101 | 94 |
| 102 output.complete(scope.getScriptState(), false); | 95 output.complete(scope.getScriptState(), false); |
| 103 } | 96 } |
| 104 | 97 |
| 105 } // namespace | 98 } // namespace |
| 106 } // namespace blink | 99 } // namespace blink |
| OLD | NEW |