solidus_paypal_braintree 1.1.2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (171) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +1 -16
  3. data/.github/stale.yml +1 -17
  4. data/.github_changelog_generator +2 -0
  5. data/.gitignore +4 -3
  6. data/.rubocop.yml +1 -2
  7. data/CHANGELOG.md +41 -0
  8. data/Gemfile +18 -20
  9. data/README.md +50 -17
  10. data/bin/rails +4 -12
  11. data/bin/rails-engine +13 -0
  12. data/bin/rails-sandbox +16 -0
  13. data/bin/rake +7 -0
  14. data/bin/sandbox +103 -0
  15. data/bin/setup +1 -1
  16. data/lib/generators/solidus_paypal_braintree/install/install_generator.rb +2 -31
  17. data/lib/solidus_paypal_braintree/engine.rb +1 -56
  18. data/lib/solidus_paypal_braintree/version.rb +1 -1
  19. data/lib/solidus_paypal_braintree.rb +1 -4
  20. data/solidus_paypal_braintree.gemspec +41 -39
  21. data/spec/controllers/solidus_paypal_braintree/checkouts_controller_spec.rb +99 -0
  22. data/spec/controllers/solidus_paypal_braintree/client_tokens_controller_spec.rb +55 -0
  23. data/spec/controllers/solidus_paypal_braintree/configurations_controller_spec.rb +73 -0
  24. data/spec/controllers/solidus_paypal_braintree/transactions_controller_spec.rb +183 -0
  25. data/spec/features/backend/configuration_spec.rb +23 -0
  26. data/spec/features/backend/new_payment_spec.rb +137 -0
  27. data/spec/features/frontend/braintree_credit_card_checkout_spec.rb +191 -0
  28. data/spec/features/frontend/paypal_checkout_spec.rb +166 -0
  29. data/spec/features/frontend/venmo_checkout_spec.rb +194 -0
  30. data/spec/fixtures/cassettes/admin/invalid_credit_card.yml +63 -0
  31. data/spec/fixtures/cassettes/admin/resubmit_credit_card.yml +352 -0
  32. data/spec/fixtures/cassettes/admin/valid_credit_card.yml +412 -0
  33. data/spec/fixtures/cassettes/braintree/create_profile.yml +71 -0
  34. data/spec/fixtures/cassettes/braintree/generate_token.yml +63 -0
  35. data/spec/fixtures/cassettes/braintree/token.yml +63 -0
  36. data/spec/fixtures/cassettes/checkout/invalid_credit_card.yml +63 -0
  37. data/spec/fixtures/cassettes/checkout/resubmit_credit_card.yml +216 -0
  38. data/spec/fixtures/cassettes/checkout/update.yml +71 -0
  39. data/spec/fixtures/cassettes/checkout/valid_credit_card.yml +171 -0
  40. data/spec/fixtures/cassettes/checkout/valid_venmo_transaction.yml +599 -0
  41. data/spec/fixtures/cassettes/gateway/authorize/credit_card/address.yml +86 -0
  42. data/spec/fixtures/cassettes/gateway/authorize/merchant_account/EUR.yml +154 -0
  43. data/spec/fixtures/cassettes/gateway/authorize/paypal/EUR.yml +90 -0
  44. data/spec/fixtures/cassettes/gateway/authorize/paypal/address.yml +90 -0
  45. data/spec/fixtures/cassettes/gateway/authorize.yml +86 -0
  46. data/spec/fixtures/cassettes/gateway/authorized_transaction.yml +73 -0
  47. data/spec/fixtures/cassettes/gateway/cancel/missing.yml +63 -0
  48. data/spec/fixtures/cassettes/gateway/cancel/refunds.yml +272 -0
  49. data/spec/fixtures/cassettes/gateway/cancel/void.yml +201 -0
  50. data/spec/fixtures/cassettes/gateway/capture.yml +141 -0
  51. data/spec/fixtures/cassettes/gateway/complete.yml +157 -0
  52. data/spec/fixtures/cassettes/gateway/credit.yml +208 -0
  53. data/spec/fixtures/cassettes/gateway/customer.yml +79 -0
  54. data/spec/fixtures/cassettes/gateway/purchase.yml +87 -0
  55. data/spec/fixtures/cassettes/gateway/settled_transaction.yml +140 -0
  56. data/spec/fixtures/cassettes/gateway/void.yml +137 -0
  57. data/spec/fixtures/cassettes/source/bin.yml +295 -0
  58. data/spec/fixtures/cassettes/source/card_type.yml +267 -0
  59. data/spec/fixtures/cassettes/source/last4.yml +267 -0
  60. data/spec/fixtures/cassettes/transaction/import/valid/capture.yml +224 -0
  61. data/spec/fixtures/cassettes/transaction/import/valid.yml +71 -0
  62. data/spec/fixtures/views/spree/orders/edit.html.erb +50 -0
  63. data/spec/helpers/solidus_paypal_braintree/braintree_admin_helper_spec.rb +17 -0
  64. data/spec/helpers/solidus_paypal_braintree/braintree_checkout_helper_spec.rb +70 -0
  65. data/spec/models/solidus_paypal_braintree/address_spec.rb +71 -0
  66. data/spec/models/solidus_paypal_braintree/avs_result_spec.rb +317 -0
  67. data/spec/models/solidus_paypal_braintree/gateway_spec.rb +742 -0
  68. data/spec/models/solidus_paypal_braintree/response_spec.rb +280 -0
  69. data/spec/models/solidus_paypal_braintree/source_spec.rb +539 -0
  70. data/spec/models/solidus_paypal_braintree/transaction_address_spec.rb +235 -0
  71. data/spec/models/solidus_paypal_braintree/transaction_import_spec.rb +302 -0
  72. data/spec/models/solidus_paypal_braintree/transaction_spec.rb +86 -0
  73. data/spec/models/spree/store_spec.rb +14 -0
  74. data/spec/requests/spree/api/orders_controller_spec.rb +36 -0
  75. data/spec/spec_helper.rb +32 -0
  76. data/spec/support/capybara.rb +7 -0
  77. data/spec/support/gateway_helpers.rb +29 -0
  78. data/spec/support/order_ready_for_payment.rb +37 -0
  79. data/spec/support/vcr.rb +42 -0
  80. data/spec/support/views.rb +1 -0
  81. metadata +144 -178
  82. data/app/assets/config/solidus_paypal_braintree_manifest.js +0 -1
  83. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_active_blue_button_280x48.svg +0 -19
  84. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_active_blue_button_320x48.svg +0 -19
  85. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_active_blue_button_375x48.svg +0 -19
  86. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_active_white_button_280x48.svg +0 -19
  87. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_active_white_button_320x48.svg +0 -19
  88. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_active_white_button_375x48.svg +0 -19
  89. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_blue_acceptance_mark.svg +0 -15
  90. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_blue_button_280x48.svg +0 -19
  91. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_blue_button_320x48.svg +0 -19
  92. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_blue_button_375x48.svg +0 -19
  93. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_blue_logo.svg +0 -18
  94. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_white_acceptance_mark.svg +0 -20
  95. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_white_button_280x48.svg +0 -19
  96. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_white_button_320x48.svg +0 -19
  97. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_white_button_375x48.svg +0 -19
  98. data/app/assets/images/solidus_paypal_braintree/venmo/venmo_white_logo.svg +0 -18
  99. data/app/assets/javascripts/solidus_paypal_braintree/apple_pay_button.js +0 -179
  100. data/app/assets/javascripts/solidus_paypal_braintree/checkout.js +0 -108
  101. data/app/assets/javascripts/solidus_paypal_braintree/client.js +0 -239
  102. data/app/assets/javascripts/solidus_paypal_braintree/constants.js +0 -89
  103. data/app/assets/javascripts/solidus_paypal_braintree/frontend.js +0 -14
  104. data/app/assets/javascripts/solidus_paypal_braintree/hosted_form.js +0 -46
  105. data/app/assets/javascripts/solidus_paypal_braintree/paypal_button.js +0 -178
  106. data/app/assets/javascripts/solidus_paypal_braintree/paypal_messaging.js +0 -22
  107. data/app/assets/javascripts/solidus_paypal_braintree/promise.js +0 -20
  108. data/app/assets/javascripts/solidus_paypal_braintree/venmo_button.js +0 -86
  109. data/app/assets/javascripts/spree/backend/solidus_paypal_braintree.js +0 -96
  110. data/app/assets/javascripts/spree/frontend/paypal_button.js +0 -34
  111. data/app/assets/javascripts/spree/frontend/solidus_paypal_braintree.js +0 -1
  112. data/app/assets/stylesheets/spree/backend/solidus_paypal_braintree.scss +0 -28
  113. data/app/assets/stylesheets/spree/frontend/solidus_paypal_braintree.css +0 -51
  114. data/app/decorators/controllers/solidus_paypal_braintree/admin_payments_controller_decorator.rb +0 -11
  115. data/app/decorators/controllers/solidus_paypal_braintree/checkout_controller_decorator.rb +0 -11
  116. data/app/decorators/controllers/solidus_paypal_braintree/client_tokens_controller.rb +0 -41
  117. data/app/decorators/controllers/solidus_paypal_braintree/orders_controller_decorator.rb +0 -11
  118. data/app/decorators/models/solidus_paypal_braintree/spree/store_decorator.rb +0 -20
  119. data/app/decorators/models/solidus_paypal_braintree/spree/user_decorator.rb +0 -13
  120. data/app/helpers/solidus_paypal_braintree/braintree_admin_helper.rb +0 -23
  121. data/app/helpers/solidus_paypal_braintree/braintree_checkout_helper.rb +0 -60
  122. data/app/models/application_record.rb +0 -5
  123. data/app/models/solidus_paypal_braintree/address.rb +0 -64
  124. data/app/models/solidus_paypal_braintree/avs_result.rb +0 -69
  125. data/app/models/solidus_paypal_braintree/configuration.rb +0 -41
  126. data/app/models/solidus_paypal_braintree/customer.rb +0 -8
  127. data/app/models/solidus_paypal_braintree/gateway.rb +0 -432
  128. data/app/models/solidus_paypal_braintree/response.rb +0 -80
  129. data/app/models/solidus_paypal_braintree/source.rb +0 -133
  130. data/app/models/solidus_paypal_braintree/transaction.rb +0 -31
  131. data/app/models/solidus_paypal_braintree/transaction_address.rb +0 -87
  132. data/app/models/solidus_paypal_braintree/transaction_import.rb +0 -98
  133. data/app/overrides/spree/payments/payment/add_paypal_funding_source_to_payment.rb +0 -9
  134. data/app/views/spree/api/payments/source_views/_paypal_braintree.json.jbuilder +0 -3
  135. data/app/views/spree/checkout/existing_payment/_paypal_braintree.html.erb +0 -10
  136. data/app/views/spree/shared/_apple_pay_button.html.erb +0 -27
  137. data/app/views/spree/shared/_braintree_errors.html.erb +0 -16
  138. data/app/views/spree/shared/_braintree_hosted_fields.html.erb +0 -43
  139. data/app/views/spree/shared/_paypal_braintree_head_scripts.html.erb +0 -26
  140. data/app/views/spree/shared/_paypal_cart_button.html.erb +0 -38
  141. data/app/views/spree/shared/_paypal_messaging.html.erb +0 -13
  142. data/app/views/spree/shared/_venmo_button.html.erb +0 -33
  143. data/config/locales/en.yml +0 -96
  144. data/config/locales/it.yml +0 -56
  145. data/config/routes.rb +0 -14
  146. data/db/migrate/20160830061749_create_solidus_paypal_braintree_sources.rb +0 -16
  147. data/db/migrate/20160906201711_create_solidus_paypal_braintree_customers.rb +0 -13
  148. data/db/migrate/20161114231422_create_solidus_paypal_braintree_configurations.rb +0 -11
  149. data/db/migrate/20161125172005_add_braintree_configuration_to_stores.rb +0 -7
  150. data/db/migrate/20170203191030_add_credit_card_to_braintree_configuration.rb +0 -6
  151. data/db/migrate/20170505193712_add_null_constraint_to_sources.rb +0 -32
  152. data/db/migrate/20170508085402_add_not_null_constraint_to_sources_payment_type.rb +0 -11
  153. data/db/migrate/20190705115327_add_paypal_button_preferences_to_braintree_configurations.rb +0 -5
  154. data/db/migrate/20190911141712_add_3d_secure_to_braintree_configuration.rb +0 -5
  155. data/db/migrate/20211222170950_add_paypal_funding_source_to_solidus_paypal_braintree_sources.rb +0 -5
  156. data/db/migrate/20220104150301_add_venmo_to_braintree_configuration.rb +0 -5
  157. data/lib/controllers/backend/solidus_paypal_braintree/configurations_controller.rb +0 -48
  158. data/lib/controllers/frontend/solidus_paypal_braintree/checkouts_controller.rb +0 -31
  159. data/lib/controllers/frontend/solidus_paypal_braintree/transactions_controller.rb +0 -67
  160. data/lib/solidus_paypal_braintree/country_mapper.rb +0 -37
  161. data/lib/solidus_paypal_braintree/factories.rb +0 -53
  162. data/lib/solidus_paypal_braintree/request_protection.rb +0 -21
  163. data/lib/views/backend/solidus_paypal_braintree/configurations/list.html.erb +0 -63
  164. data/lib/views/backend/spree/admin/payments/source_forms/_paypal_braintree.html.erb +0 -16
  165. data/lib/views/backend/spree/admin/payments/source_views/_paypal_braintree.html.erb +0 -39
  166. data/lib/views/backend/spree/admin/shared/preference_fields/_preference_select.html.erb +0 -13
  167. data/lib/views/backend_v1.2/spree/admin/payments/source_forms/_paypal_braintree.html.erb +0 -16
  168. data/lib/views/backend_v2.4/spree/admin/shared/preference_fields/_hash.html.erb +0 -12
  169. data/lib/views/frontend/solidus_paypal_braintree/payments/_payment.html.erb +0 -12
  170. data/lib/views/frontend/spree/checkout/payment/_paypal_braintree.html.erb +0 -23
  171. data/lib/views/frontend/spree/shared/_paypal_checkout_button.html.erb +0 -32
@@ -0,0 +1,191 @@
1
+ require 'spec_helper'
2
+ require 'spree/testing_support/order_walkthrough'
3
+
4
+ shared_context "with frontend checkout setup" do
5
+ let(:braintree) { new_gateway(active: true) }
6
+ let!(:gateway) { create :payment_method }
7
+ let(:three_d_secure_enabled) { false }
8
+ let(:venmo_enabled) { false }
9
+ let(:card_number) { "4111111111111111" }
10
+ let(:card_expiration) { "01/#{Time.now.utc.year + 3}" }
11
+
12
+ before do
13
+ braintree.save!
14
+
15
+ create(:store, payment_methods: [gateway, braintree]).tap do |store|
16
+ store.braintree_configuration.update!(
17
+ credit_card: true,
18
+ three_d_secure: three_d_secure_enabled,
19
+ venmo: venmo_enabled
20
+ )
21
+
22
+ braintree.update(
23
+ preferred_credit_card_fields_style: { input: { 'font-size': '30px' } },
24
+ preferred_placeholder_text: { number: "Enter Your Card Number" }
25
+ )
26
+ end
27
+
28
+ order = if Spree.solidus_gem_version >= Gem::Version.new('2.6.0')
29
+ Spree::TestingSupport::OrderWalkthrough.up_to(:delivery)
30
+ else
31
+ OrderWalkthrough.up_to(:delivery)
32
+ end
33
+
34
+ user = create(:user)
35
+ order.user = user
36
+ order.number = "R9999999"
37
+ order.recalculate
38
+
39
+ allow_any_instance_of(Spree::CheckoutController).to receive_messages(current_order: order)
40
+ allow_any_instance_of(Spree::CheckoutController).to receive_messages(try_spree_current_user: user)
41
+ allow_any_instance_of(Spree::CheckoutController).to receive_messages(spree_current_user: user)
42
+ allow_any_instance_of(Spree::Payment).to receive(:number).and_return("123ABC")
43
+ allow_any_instance_of(SolidusBraintree::Source).to receive(:nonce).and_return("fake-valid-nonce")
44
+
45
+ visit spree.checkout_state_path(:delivery)
46
+ click_button "Save and Continue"
47
+ choose("Braintree")
48
+ end
49
+
50
+ around do |example|
51
+ Capybara.using_wait_time(20) { example.run }
52
+ end
53
+ end
54
+
55
+ describe 'entering credit card details', type: :feature, js: true do
56
+ context 'when page loads' do
57
+ include_context "with frontend checkout setup"
58
+
59
+ it "selectors display correctly" do
60
+ expect(page).to have_selector("#payment_method_#{braintree.id}", visible: :visible)
61
+ expect(page).to have_selector("iframe#braintree-hosted-field-number")
62
+ expect(page).to have_selector("iframe[type='number']")
63
+ end
64
+
65
+ it "credit card field style variable is set" do
66
+ within_frame("braintree-hosted-field-number") do
67
+ expect(find("#credit-card-number").style("font-size")).to eq({ "font-size" => "30px" })
68
+ end
69
+ end
70
+
71
+ it "sets the placeholder text correctly" do
72
+ within_frame("braintree-hosted-field-number") do
73
+ expect(find("#credit-card-number")['placeholder']).to eq("Enter Your Card Number")
74
+ end
75
+ end
76
+ end
77
+
78
+ context "with valid credit card data", vcr: {
79
+ cassette_name: 'checkout/valid_credit_card',
80
+ match_requests_on: [:braintree_uri]
81
+ } do
82
+ include_context "with frontend checkout setup"
83
+ # To ensure Venmo inputs do not conflict with checkout
84
+ let(:venmo_enabled) { true }
85
+
86
+ before do
87
+ within_frame("braintree-hosted-field-number") do
88
+ fill_in("credit-card-number", with: card_number)
89
+ end
90
+ within_frame("braintree-hosted-field-expirationDate") do
91
+ fill_in("expiration", with: card_expiration)
92
+ end
93
+ within_frame("braintree-hosted-field-cvv") do
94
+ fill_in("cvv", with: "123")
95
+ end
96
+
97
+ click_button("Save and Continue")
98
+ end
99
+
100
+ it "checks out successfully" do
101
+ within("#order_details") do
102
+ expect(page).to have_content("CONFIRM")
103
+ end
104
+ click_button("Place Order")
105
+ expect(page).to have_content("Your order has been processed successfully")
106
+ end
107
+
108
+ context 'with 3D secure enabled' do
109
+ let(:three_d_secure_enabled) { true }
110
+
111
+ it 'checks out successfully' do
112
+ authenticate_3ds
113
+
114
+ within("#order_details") do
115
+ expect(page).to have_content("CONFIRM")
116
+ end
117
+
118
+ click_button("Place Order")
119
+ expect(page).to have_content("Your order has been processed successfully")
120
+ end
121
+
122
+ context 'with 3ds authentication error' do
123
+ let(:card_number) { "4000000000001125" }
124
+
125
+ it 'shows a 3ds authentication error' do
126
+ authenticate_3ds
127
+ expect(page).to have_content(
128
+ "3D Secure authentication failed. Please try again using a different payment method."
129
+ )
130
+ end
131
+ end
132
+ end
133
+ end
134
+
135
+ context "with invalid credit card data" do
136
+ include_context "with frontend checkout setup"
137
+
138
+ # Attempt to submit an empty form once
139
+ before do
140
+ click_button "Save and Continue"
141
+ end
142
+
143
+ it "displays an alert with a meaningful error message" do
144
+ expect(page).to have_text I18n.t("solidus_braintree.errors.empty_fields")
145
+ expect(page).to have_selector("input[type='submit']:enabled")
146
+ end
147
+
148
+ # Same error should be produced when submitting an empty form again
149
+ context "when user tries to resubmit an empty form", vcr: { cassette_name: "checkout/invalid_credit_card" } do
150
+ it "displays an alert with a meaningful error message" do
151
+ expect(page).to have_selector("input[type='submit']:enabled")
152
+
153
+ click_button "Save and Continue"
154
+ expect(page).to have_text I18n.t("solidus_braintree.errors.empty_fields")
155
+ end
156
+ end
157
+
158
+ # User should be able to checkout after submit fails once
159
+ context "when user enters valid data", vcr: {
160
+ cassette_name: "checkout/resubmit_credit_card",
161
+ match_requests_on: [:braintree_uri]
162
+ } do
163
+ it "allows them to resubmit and complete the purchase" do
164
+ within_frame("braintree-hosted-field-number") do
165
+ fill_in("credit-card-number", with: "4111111111111111")
166
+ end
167
+ within_frame("braintree-hosted-field-expirationDate") do
168
+ fill_in("expiration", with: card_expiration)
169
+ end
170
+ within_frame("braintree-hosted-field-cvv") do
171
+ fill_in("cvv", with: "123")
172
+ end
173
+ click_button("Save and Continue")
174
+ within("#order_details") do
175
+ expect(page).to have_content("CONFIRM")
176
+ end
177
+ click_button("Place Order")
178
+ expect(page).to have_content("Your order has been processed successfully")
179
+ end
180
+ end
181
+ end
182
+
183
+ def authenticate_3ds
184
+ within_frame("Cardinal-CCA-IFrame") do
185
+ fill_in("challengeDataEntry", with: "1234")
186
+ continue_button = find_button("SUBMIT")
187
+ continue_button.scroll_to(continue_button)
188
+ continue_button.click
189
+ end
190
+ end
191
+ end
@@ -0,0 +1,166 @@
1
+ require 'spec_helper'
2
+
3
+ describe "Checkout", type: :feature, js: true do
4
+ Capybara.default_max_wait_time = 60
5
+
6
+ # let!(:store) do
7
+ # create(:store, payment_methods: [payment_method]).tap do |s|
8
+ # s.braintree_configuration.update!(braintree_preferences)
9
+ # end
10
+ # end
11
+ let(:braintree_preferences) { { paypal: true }.merge(paypal_options) }
12
+ let(:paypal_options) { {} }
13
+
14
+ let!(:country) { create(:country, states_required: true) }
15
+ # let!(:state) { create(:state, country: country, abbr: "CA", name: "California") }
16
+ # let!(:shipping_method) { create(:shipping_method) }
17
+ # let!(:stock_location) { create(:stock_location) }
18
+ let!(:mug) { create(:product, name: "RoR Mug") }
19
+ let!(:payment_method) { create_gateway }
20
+ # let!(:zone) { create(:zone) }
21
+
22
+ before do
23
+ create(:store, payment_methods: [payment_method]).tap do |s|
24
+ s.braintree_configuration.update!(braintree_preferences)
25
+ end
26
+ create(:state, country: country, abbr: "CA", name: "California")
27
+ create(:shipping_method)
28
+ create(:stock_location)
29
+ create(:zone)
30
+ end
31
+
32
+ context "when going through express checkout using paypal cart button" do
33
+ before do
34
+ payment_method
35
+ add_mug_to_cart
36
+ end
37
+
38
+ it "checks out successfully", skip: "Broken. To be revisited" do
39
+ pend_if_paypal_slow do
40
+ expect_any_instance_of(Spree::Order).to receive(:restart_checkout_flow)
41
+ move_through_paypal_popup
42
+ expect(page).to have_content("Shipments")
43
+ click_on "Place Order"
44
+ expect(page).to have_content("Your order has been processed successfully")
45
+ end
46
+ end
47
+
48
+ context 'when using custom paypal button style' do
49
+ let(:paypal_options) { { preferred_paypal_button_color: 'blue' } }
50
+
51
+ it 'displays required PayPal button style' do
52
+ within_frame find('#paypal-button iframe') do
53
+ expect(page).to have_selector('.paypal-button-color-blue')
54
+ end
55
+ end
56
+ end
57
+ end
58
+
59
+ context "when going through regular checkout using paypal payment method" do
60
+ before do
61
+ payment_method
62
+ add_mug_to_cart
63
+ click_button("Checkout")
64
+ fill_in("order_email", with: "paypal_buyer@paypaltest.com")
65
+ click_button("Continue")
66
+ fill_in_address
67
+ click_button("Save and Continue")
68
+ click_button("Save and Continue")
69
+ end
70
+
71
+ it "formats the address variable correctly" do
72
+ expect(page.evaluate_script("address['recipientName']")).to eq "Ryan Bigg"
73
+ end
74
+
75
+ it "checks out successfully", skip: "Broken. To be revisited" do
76
+ pend_if_paypal_slow do
77
+ expect_any_instance_of(Spree::Order).not_to receive(:restart_checkout_flow)
78
+ move_through_paypal_popup
79
+
80
+ expect(page).to have_content("Shipments")
81
+ click_on "Place Order"
82
+ expect(page).to have_content("Your order has been processed successfully")
83
+ end
84
+ end
85
+ end
86
+
87
+ # Selenium does not clear cookies properly between test runs, even when
88
+ # using Capybara.reset_sessions!, see:
89
+ # https://github.com/jnicklas/capybara/issues/535
90
+ #
91
+ # This causes Paypal to remain logged in and not prompt for an email on the
92
+ # second test run and causes the test to fail. Adding conditional logic for
93
+ # this greatly increases the test time, so it is left out since CI runs
94
+ # these with poltergeist.
95
+ def move_through_paypal_popup
96
+ expect(page).to have_css('#paypal-button .paypal-button')
97
+
98
+ sleep 2 # the PayPal button is not immediately ready
99
+
100
+ popup = page.window_opened_by do
101
+ within_frame find('#paypal-button iframe') do
102
+ find('div.paypal-button').click
103
+ end
104
+ end
105
+ page.switch_to_window(popup)
106
+
107
+ # We don't control this popup window.
108
+ # So javascript errors are not our errors.
109
+ begin
110
+ expect(page).not_to have_selector('body.loading')
111
+ fill_in("login_email", with: "stembolt_buyer@stembolttest.com")
112
+ click_on "Next"
113
+ fill_in("login_password", with: "test1234")
114
+
115
+ expect(page).not_to have_selector('body.loading')
116
+ click_button("btnLogin")
117
+
118
+ expect(page).not_to have_selector('body.loading')
119
+ click_button("Continue")
120
+ click_button("Agree & Continue")
121
+ rescue Selenium::WebDriver::Error::JavascriptError => e
122
+ pending "PayPal had javascript errors in their popup window."
123
+ raise e
124
+ rescue Capybara::ElementNotFound => e
125
+ pending "PayPal delivered unkown HTML in their popup window."
126
+ raise e
127
+ rescue Selenium::WebDriver::Error::NoSuchWindowError => e
128
+ pending "PayPal popup not available."
129
+ raise e
130
+ end
131
+
132
+ page.switch_to_window(page.windows.first)
133
+ end
134
+
135
+ def fill_in_address
136
+ address = "order_bill_address_attributes"
137
+ if page.has_css?("##{address}_firstname", wait: 0)
138
+ fill_in "#{address}_firstname", with: "Ryan"
139
+ fill_in "#{address}_lastname", with: "Bigg"
140
+ else
141
+ fill_in "#{address}_name", with: "Ryan Bigg"
142
+ end
143
+ fill_in "#{address}_address1", with: "143 Swan Street"
144
+ fill_in "#{address}_city", with: "San Jose"
145
+ select "United States of America", from: "#{address}_country_id"
146
+ select "California", from: "#{address}_state_id"
147
+ fill_in "#{address}_zipcode", with: "95131"
148
+ fill_in "#{address}_phone", with: "(555) 555-0111"
149
+ end
150
+
151
+ def add_mug_to_cart
152
+ visit spree.root_path
153
+ click_link mug.name
154
+ click_button "add-to-cart-button"
155
+ end
156
+
157
+ def pend_if_paypal_slow
158
+ yield
159
+ rescue RSpec::Expectations::ExpectationNotMetError => e
160
+ pending "PayPal did not answer in #{Capybara.default_max_wait_time} seconds."
161
+ raise e
162
+ rescue Selenium::WebDriver::Error::JavascriptError => e
163
+ pending "PayPal delivered wrong payload because of errors in their popup window."
164
+ raise e
165
+ end
166
+ end
@@ -0,0 +1,194 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'spec_helper'
4
+ require 'spree/testing_support/order_walkthrough'
5
+
6
+ describe "Checkout", type: :feature, js: true do
7
+ let(:braintree_preferences) { { venmo: true }.merge(preferences) }
8
+ let(:preferences) { {} }
9
+ let(:user) { create(:user) }
10
+ let!(:payment_method) { create_gateway }
11
+
12
+ before do
13
+ create(:store, payment_methods: [payment_method]).tap do |s|
14
+ s.braintree_configuration.update!(braintree_preferences)
15
+ end
16
+
17
+ go_to_payment_checkout_page
18
+ end
19
+
20
+ context 'with Venmo checkout' do
21
+ context 'when Venmo is disabled' do
22
+ let(:preferences) { { venmo: false } }
23
+
24
+ it 'does not load the Venmo payment button' do
25
+ expect(page).not_to have_selector('#venmo-button')
26
+ end
27
+ end
28
+
29
+ context 'when Venmo is enabled' do
30
+ it 'loads the Venmo payment button' do
31
+ expect(page).to have_selector('#venmo-button')
32
+ end
33
+ end
34
+
35
+ context "when Venmo's button style is customized" do
36
+ context 'when venmo_button_color is "blue" and venmo_button_width is "280"' do
37
+ let(:preferences) { { preferred_venmo_button_color: 'blue', preferred_venmo_button_width: '280' } }
38
+
39
+ it 'has the correct style' do
40
+ venmo_button.assert_matches_style(width: '280px', 'background-image': /venmo_blue_button_280x48/)
41
+ venmo_button.hover
42
+ venmo_button.assert_matches_style('background-image': /venmo_active_blue_button_280x48/)
43
+ end
44
+ end
45
+
46
+ context 'when venmo_button_color is "white" and venmo_button_width is "375"' do
47
+ let(:preferences) { { preferred_venmo_button_color: 'white', preferred_venmo_button_width: '375' } }
48
+
49
+ it 'has the correct style' do
50
+ venmo_button.assert_matches_style(width: '375px', 'background-image': /venmo_white_button_375x48/)
51
+ venmo_button.hover
52
+ venmo_button.assert_matches_style('background-image': /venmo_active_white_button_375x48/)
53
+ end
54
+ end
55
+ end
56
+
57
+ context 'when the Venmo button is clicked' do
58
+ before { venmo_button.click }
59
+
60
+ it 'opens the QR modal which shows an error when closed' do
61
+ within_frame(venmo_frame) do
62
+ expect(page).to have_selector('#venmo-qr-code-view')
63
+
64
+ click_button('close-icon')
65
+
66
+ expect(page).not_to have_selector('#venmo-qr-code-view')
67
+ end
68
+
69
+ expect(page).to have_content('Venmo authorization was canceled by closing the Venmo Desktop modal.')
70
+ end
71
+ end
72
+
73
+ # TODO: Reenable these specs once Venmo is enabled on the Braintree sandbox.
74
+ xcontext 'with Venmo transactions', vcr: { cassette_name: 'checkout/valid_venmo_transaction' } do
75
+ before do
76
+ fake_venmo_successful_tokenization
77
+ end
78
+
79
+ context 'with CreditCard disabled' do
80
+ it 'can checkout with Venmo' do
81
+ next_checkout_step
82
+ finalize_checkout
83
+
84
+ expect(Spree::Order.last.complete?).to be(true)
85
+ end
86
+ end
87
+
88
+ # To test that the hosted-fields inputs do not conflict with Venmo's
89
+ context 'with CreditCard enabled' do
90
+ let(:preferences) { { credit_card: true } }
91
+
92
+ it 'can checkout with Venmo' do
93
+ disable_hosted_fields_inputs
94
+ disable_hosted_fields_form_listener
95
+
96
+ next_checkout_step
97
+ finalize_checkout
98
+
99
+ expect(Spree::Order.last.complete?).to be(true)
100
+ expect(Spree::Payment.last.source.venmo?).to be(true)
101
+ end
102
+ end
103
+
104
+ # https://developer.paypal.com/braintree/docs/guides/venmo/client-side#custom-integration
105
+ it "meet's Braintree's acceptance criteria during checkout", aggregate_failures: true do
106
+ next_checkout_step
107
+
108
+ expect(page).to have_content('Payment Type: Venmo')
109
+
110
+ finalize_checkout
111
+
112
+ expect(page).to have_content('Venmo Account: venmojoe')
113
+ end
114
+
115
+ # the VCR must be based on this test, so it includes HTTP requests of the second order
116
+ it 'saves the used Venmo source in the wallet and can be reused' do
117
+ next_checkout_step
118
+ finalize_checkout
119
+ go_to_payment_checkout_page(order_number: 'R300000002')
120
+
121
+ expect(Spree::User.first.wallet.wallet_payment_sources).not_to be_empty
122
+ expect(page).to have_selector('#existing_cards')
123
+ expect(page).to have_content('venmojoe')
124
+
125
+ next_checkout_step
126
+ finalize_checkout
127
+
128
+ expect(Spree::Order.all.all?(&:complete?)).to be(true)
129
+ end
130
+ end
131
+ end
132
+
133
+ private
134
+
135
+ def go_to_payment_checkout_page(order_number: 'R300000001' )
136
+ order = if Spree.solidus_gem_version >= Gem::Version.new('2.6.0')
137
+ Spree::TestingSupport::OrderWalkthrough.up_to(:address)
138
+ else
139
+ OrderWalkthrough.up_to(:address)
140
+ end
141
+
142
+ order.update!(user: user, number: order_number) # constant order number for VCRs
143
+
144
+ allow_any_instance_of(Spree::CheckoutController).to receive_messages(current_order: order)
145
+
146
+ first_user = Spree::User.first
147
+ allow_any_instance_of(Spree::CheckoutController).to receive_messages(try_spree_current_user: first_user)
148
+ allow_any_instance_of(Spree::CheckoutController).to receive_messages(spree_current_user: first_user)
149
+
150
+ allow_any_instance_of(Spree::Payment).to receive(:gateway_order_id).and_return(order_number)
151
+
152
+ visit spree.checkout_state_path(order.state)
153
+ next_checkout_step
154
+ end
155
+
156
+ def next_checkout_step
157
+ click_button('Save and Continue')
158
+ end
159
+
160
+ def finalize_checkout
161
+ click_button('Place Order')
162
+ end
163
+
164
+ def venmo_button
165
+ find_button('venmo-button', disabled: false)
166
+ end
167
+
168
+ def venmo_frame
169
+ find('#venmo-desktop-iframe')
170
+ end
171
+
172
+ def fake_venmo_successful_tokenization
173
+ enable_venmo_inputs
174
+ fake_payment_method_nonce
175
+ end
176
+
177
+ def enable_venmo_inputs
178
+ page.execute_script("$('.venmo-fields input').each(function(_index, input){input.removeAttribute('disabled');});")
179
+ end
180
+
181
+ def fake_payment_method_nonce
182
+ page.execute_script("$('#venmo_payment_method_nonce').val('fake-venmo-account-nonce');")
183
+ end
184
+
185
+ def disable_hosted_fields_inputs
186
+ page.execute_script("$('.hosted-fields input').each(function(_index, input){input.disabled=true;});")
187
+ end
188
+
189
+ def disable_hosted_fields_form_listener
190
+ # Once the submit button is enabled, the submit listener has been added
191
+ find("#checkout_form_payment input[type='submit']:not(:disabled)")
192
+ page.execute_script("$('#checkout_form_payment').off('submit');")
193
+ end
194
+ end
@@ -0,0 +1,63 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.sandbox.braintreegateway.com/merchants/7rdg92j7bm7fk5h3/client_token
6
+ body:
7
+ encoding: UTF-8
8
+ string: |
9
+ <?xml version="1.0" encoding="UTF-8"?>
10
+ <client-token>
11
+ <version type="integer">2</version>
12
+ </client-token>
13
+ headers:
14
+ Accept-Encoding:
15
+ - gzip
16
+ Accept:
17
+ - application/xml
18
+ User-Agent:
19
+ - Braintree Ruby Gem 2.98.0
20
+ X-Apiversion:
21
+ - '5'
22
+ Content-Type:
23
+ - application/xml
24
+ Authorization:
25
+ - Basic bXdqa2t4d2NwMzJja2huZjphOTI5OGY0M2IzMGM2OTlkYjMwNzJjYzRhMDBmN2Y0OQ==
26
+ response:
27
+ status:
28
+ code: 201
29
+ message: Created
30
+ headers:
31
+ Server:
32
+ - nginx
33
+ Date:
34
+ - Fri, 13 Sep 2019 14:27:11 GMT
35
+ Content-Type:
36
+ - application/xml; charset=utf-8
37
+ Transfer-Encoding:
38
+ - chunked
39
+ X-Authentication:
40
+ - server_to_server
41
+ Braintree-Service-Origin:
42
+ - clientauth
43
+ Vary:
44
+ - Accept-Encoding
45
+ Content-Encoding:
46
+ - gzip
47
+ Etag:
48
+ - W/"c95fd3caa086065297edd0aeeb8e6d55"
49
+ Cache-Control:
50
+ - max-age=0, private, must-revalidate
51
+ X-Request-Id:
52
+ - 51cbbac6-bce1-4f90-ab14-6d61a064e77b
53
+ X-Runtime:
54
+ - '0.200715'
55
+ Strict-Transport-Security:
56
+ - max-age=31536000; includeSubDomains
57
+ body:
58
+ encoding: ASCII-8BIT
59
+ string: !binary |-
60
+ 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
61
+ http_version:
62
+ recorded_at: Fri, 13 Sep 2019 14:27:11 GMT
63
+ recorded_with: VCR 5.0.0