| 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 30 matching lines...) Expand all Loading... |
| 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"; | 48 input->total_amount->currency = "USD"; |
| 49 input->total_amount->value = "5.00"; | 49 input->total_amount->value = "5.00"; |
| 50 input->stringified_details = "{\"transactionId\": 123}"; | 50 input->stringified_details = "{\"transactionId\": 123}"; |
| 51 input->shipping_option = "standardShippingOption"; |
| 51 input->payer_email = "abc@gmail.com"; | 52 input->payer_email = "abc@gmail.com"; |
| 52 input->payer_phone = "0123"; | 53 input->payer_phone = "0123"; |
| 53 MockPaymentCompleter* completeCallback = new MockPaymentCompleter; | 54 MockPaymentCompleter* completeCallback = new MockPaymentCompleter; |
| 54 | 55 |
| 55 PaymentResponse output(std::move(input), completeCallback); | 56 PaymentResponse output(std::move(input), completeCallback); |
| 56 | 57 |
| 57 EXPECT_EQ("foo", output.methodName()); | 58 EXPECT_EQ("foo", output.methodName()); |
| 59 EXPECT_EQ("standardShippingOption", output.shippingOption()); |
| 58 EXPECT_EQ("abc@gmail.com", output.payerEmail()); | 60 EXPECT_EQ("abc@gmail.com", output.payerEmail()); |
| 59 EXPECT_EQ("0123", output.payerPhone()); | 61 EXPECT_EQ("0123", output.payerPhone()); |
| 60 | 62 |
| 61 PaymentCurrencyAmount totalAmount; | 63 PaymentCurrencyAmount totalAmount; |
| 62 output.totalAmount(totalAmount); | 64 output.totalAmount(totalAmount); |
| 63 EXPECT_EQ("USD", totalAmount.currency()); | 65 EXPECT_EQ("USD", totalAmount.currency()); |
| 64 EXPECT_EQ("5.00", totalAmount.value()); | 66 EXPECT_EQ("5.00", totalAmount.value()); |
| 65 | 67 |
| 66 ScriptValue details = output.details(scope.getScriptState(), scope.getExcept
ionState()); | 68 ScriptValue details = output.details(scope.getScriptState(), scope.getExcept
ionState()); |
| 67 | 69 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 97 MockPaymentCompleter* completeCallback = new MockPaymentCompleter; | 99 MockPaymentCompleter* completeCallback = new MockPaymentCompleter; |
| 98 PaymentResponse output(std::move(input), completeCallback); | 100 PaymentResponse output(std::move(input), completeCallback); |
| 99 | 101 |
| 100 EXPECT_CALL(*completeCallback, complete(scope.getScriptState(), Fail)); | 102 EXPECT_CALL(*completeCallback, complete(scope.getScriptState(), Fail)); |
| 101 | 103 |
| 102 output.complete(scope.getScriptState(), "fail"); | 104 output.complete(scope.getScriptState(), "fail"); |
| 103 } | 105 } |
| 104 | 106 |
| 105 } // namespace | 107 } // namespace |
| 106 } // namespace blink | 108 } // namespace blink |
| OLD | NEW |