defra_ruby_mocks 2.3.2 → 2.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +32 -75
  3. data/app/controllers/defra_ruby_mocks/govpay_controller.rb +28 -3
  4. data/app/jobs/defra_ruby_mocks/application_job.rb +6 -0
  5. data/app/jobs/defra_ruby_mocks/govpay_payment_callback_job.rb +17 -0
  6. data/app/services/defra_ruby_mocks/govpay_create_payment_service.rb +41 -13
  7. data/app/services/defra_ruby_mocks/govpay_get_payment_service.rb +74 -16
  8. data/app/services/defra_ruby_mocks/govpay_refund_details_service.rb +43 -0
  9. data/app/services/defra_ruby_mocks/govpay_request_refund_service.rb +27 -0
  10. data/config/routes.rb +10 -10
  11. data/lib/defra_ruby_mocks/configuration.rb +1 -1
  12. data/lib/defra_ruby_mocks/engine.rb +0 -1
  13. data/lib/defra_ruby_mocks/version.rb +1 -1
  14. data/spec/dummy/log/test.log +1279 -972
  15. data/spec/examples.txt +68 -121
  16. data/spec/fixtures/files/govpay/create_payment_created_response.json +24 -0
  17. data/spec/fixtures/files/govpay/create_payment_error_response.json +5 -0
  18. data/spec/fixtures/files/govpay/get_payment_response_cancelled.json +61 -0
  19. data/spec/fixtures/files/govpay/get_payment_response_created.json +73 -0
  20. data/spec/fixtures/files/govpay/get_payment_response_error.json +5 -0
  21. data/spec/fixtures/files/govpay/get_payment_response_failure.json +9 -0
  22. data/spec/fixtures/files/govpay/get_payment_response_not_found.json +4 -0
  23. data/spec/fixtures/files/govpay/get_payment_response_submitted.json +75 -0
  24. data/spec/fixtures/files/govpay/get_payment_response_success.json +62 -0
  25. data/spec/requests/govpay_spec.rb +64 -1
  26. data/spec/services/govpay_create_payment_service_spec.rb +44 -0
  27. data/spec/services/govpay_get_payment_service_spec.rb +30 -0
  28. data/spec/services/govpay_refund_details_service_spec.rb +58 -0
  29. data/spec/services/govpay_request_refund_service_spec.rb +31 -0
  30. metadata +32 -48
  31. data/app/controllers/defra_ruby_mocks/worldpay_controller.rb +0 -57
  32. data/app/services/defra_ruby_mocks/worldpay_payment_service.rb +0 -47
  33. data/app/services/defra_ruby_mocks/worldpay_refund_service.rb +0 -37
  34. data/app/services/defra_ruby_mocks/worldpay_request_handler_service.rb +0 -40
  35. data/app/services/defra_ruby_mocks/worldpay_resource_service.rb +0 -55
  36. data/app/services/defra_ruby_mocks/worldpay_response_service.rb +0 -119
  37. data/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb +0 -4
  38. data/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb +0 -4
  39. data/app/views/defra_ruby_mocks/worldpay/stuck.html.erb +0 -37
  40. data/lib/defra_ruby_mocks/unrecognised_worldpay_request_error.rb +0 -5
  41. data/spec/fixtures/payment_request_invalid.xml +0 -6
  42. data/spec/fixtures/payment_request_valid.xml +0 -30
  43. data/spec/fixtures/refund_request_invalid.xml +0 -6
  44. data/spec/fixtures/refund_request_valid.xml +0 -11
  45. data/spec/fixtures/unrecognised_request.xml +0 -6
  46. data/spec/requests/worldpay_spec.rb +0 -163
  47. data/spec/services/worldpay_payment_service_spec.rb +0 -95
  48. data/spec/services/worldpay_refund_service_spec.rb +0 -68
  49. data/spec/services/worldpay_request_handler_service_spec.rb +0 -79
  50. data/spec/services/worldpay_resource_service_spec.rb +0 -120
  51. data/spec/services/worldpay_response_service_spec.rb +0 -280
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72e4545b335d8982579d4e72ec7319ad6d2a18dff08f931576dbace757736e30
4
- data.tar.gz: 4b8a88a381bd24fd027214c2b86016d4b532d74dce07284050e2a48f3dfe726d
3
+ metadata.gz: ecd1c75dcaf3f1a8f981977e335d936065a72c1df1cd6ffd6b3b019c2a366e9e
4
+ data.tar.gz: 5e3b19f300e4397f597069df784489a650d3ed87736778c1aee2dcd2438fc836
5
5
  SHA512:
6
- metadata.gz: 5043858781580f1d769aecbe6c0e185311421811c4dad12154e50b83e58f69efde797a854d190384219b8a2d8fb2b73da66ddabecc2064a52c51140022e01b85
7
- data.tar.gz: 45699483045aba318c7421ff48dbea130aaba08f3b92204fc9b2c16e1a63e89838c1429aaae4f72c32e8a32a7bf4757463b721469c4125d7e50e6413cf56f023
6
+ metadata.gz: 3d70df2364b1bd260dd72ad8e2d36791335d6b671c03e87d1da9665dc0416984dbb2d30290a95666f85d76610e6331e717bb9060bdc112c80f921c2d0da1ba6f
7
+ data.tar.gz: b1a0697b585fd1be014cb8300569a3b9323e56de1398422e710a35c9cc4598b9d4072b44008386c244c4eef735491d7dbd2b1895c9bab44c91e3a033a56e33d4
data/README.md CHANGED
@@ -132,117 +132,74 @@ The list of possible statuses was taken from
132
132
  - [Companies House API](https://developer.companieshouse.gov.uk/api/docs/company/company_number/companyProfile-resource.html)
133
133
  - [Companies House API enumerations](https://github.com/companieshouse/api-enumerations/blob/master/constants.yml)
134
134
 
135
- ### Worldpay
135
+ ### Govpay
136
136
 
137
- When mounted into an app you can simulate interacting with the Worldpay hosted pages service.
137
+ When mounted into an app you can simulate interacting with the Govpay hosted pages service. The following endpoints are supported:
138
138
 
139
- #### Payments
140
-
141
- Making a payment with Worldpay essentially comes in 2 stages
142
-
143
- 1. The app sends an XML request to Worldpay asking it to prepare for a new payment. Worldpay responds with a reference and a URL to redirect the user to
144
- 2. The app redirects the user to the URL and adds to it query params that tell Worldpay where to redirect the user to when the payment is complete
145
-
146
- For more details check out [Making a payment with WorldPay](https://github.com/DEFRA/ruby-services-team/blob/master/services/wcr/payment_with_worldpay.md)
147
-
148
- This Worldpay mock replicates those 2 interactions with the following urls
149
-
150
- - `../worldpay/payments-service`
151
- - `../worldpay/dispatcher`
152
-
153
- ##### Cancelled payments
154
-
155
- The engine has the ability to mock a user cancelling a payment when on the Worldpay site. To have the mock return a cancelled payment response just ensure the registration's company name includes the word `cancel` (case doesn't matter).
156
-
157
- If it does the engine will redirect back to the cancelled url instead of the success url provided, plus set the payment status to `CANCELLED`.
158
-
159
- This allows us to test how the application handles Worldpay responding with a cancelled payment response.
160
-
161
- ##### Errored payments
162
-
163
- The engine has the ability to Worldpay erroring during a payment. To have the mock return an errored payment response just ensure the registration's company name includes the word `error` (case doesn't matter).
164
-
165
- If it does the engine will redirect back to the error url instead of the success url provided, plus set the payment status to `ERROR`.
166
-
167
- This allows us to test how the application handles Worldpay responding with an errored payment response.
168
-
169
- ##### Pending payments
170
-
171
- The engine has the ability to also mock Worldpay marking a payment as pending. To have the mock return a payment pending response just ensure the registration's company name includes the word `pending` (case doesn't matter).
139
+ - `POST /govpay/v1/payments`
140
+ - Create a payment. In its current form it always returns a fixed (success) response regardless of the input parameters.
141
+ - `GET /govpay/v1/payments/:payment_id`
142
+ - Get details of an existing payment. The response includes the payment_id from the input parameters, a random amount, and the current time as created_at value.
143
+ - `POST /govpay/v1/payments/:payment_id/refunds`
144
+ - Request a refund. The response includes the amount from the input parameters and a status of "submitted", meaning that the refund is pending. It also writes the current time to a temporary file to support refund details checking - see *Govpay refund status* below.
145
+ - `GET /govpay/v1/payments/:payment_id/refunds/:refund_id`
146
+ - Get the details of an existing refund. This currently returns a fixed response, with the exception of the `status` value. See *Govpay refund status* below.
172
147
 
173
- If it does the engine will redirect back to the pending url instead of the success url provided, plus set the payment status to `SENT_FOR_AUTHORISATION`.
148
+ #### Govpay refund status
149
+ The Govpay service behaves differently in production and in test (sandbox) modes.
150
+ - In **production**, a refund is initially assigned a status of `submitted` and this is the `status` value that will be received in the response to a successful create refund request. When the payment provider processes the refund, the status within the Govpayservice will be updated to `success`.
151
+ - In **sandbox** mode, a refund will be assigned a status of `success` as soon as it is created.
174
152
 
175
- This allows us to test how the application handles Worldpay responding with a payment pending response.
153
+ This causes issues for testing, as it is not possible to test behaviour around `submitted` (i.e. pending) refunds. To mitigate this, the mock API for getting refund details behaves as follows:
154
+ - Default: Return success
155
+ - If the environment variable `GOVPAY_REFUND_SUBMITTED_SUCCESS_LAG` is set (integer value):
156
+ - If fewer than that number of seconds has elapsed since the most recent refund request, return submitted
157
+ - If greater than that number of seconds has elapsed since the most recent refund request, return success
176
158
 
177
- ##### Refused payments
159
+ So setting the `GOVPAY_REFUND_SUBMITTED_SUCCESS_LAG` variable should allow a developer or tester to simulate production behaviour. The iniital response will be `submitted`; checking the refund status before the specified lag has passed will also return `submitted`; and checking the refund status after the lag has passed will return `success`.
178
160
 
179
- The engine has the ability to also mock Worldpay refusing a payment. To have the mock refuse payment just ensure the registration's company name includes the word `reject` (case doesn't matter).
180
-
181
- If it does the engine will redirect back to the failure url instead of the success url provided, plus set the payment status to `REFUSED`.
182
-
183
- This allows us to test how the application handles both successful and unsucessful Worldpay payments.
184
-
185
- ##### Stuck payments
186
-
187
- The engine has the ability to also mock Worldpay not redirecting back to the service. This is the equivalent of a registration getting 'stuck at Worldpay'. To have the mock not respond just ensure the registration's company name includes the word `stuck` (case doesn't matter).
188
-
189
- If it does the engine will not redirect back to the service, but instead render a 'You're stuck!' page.
190
-
191
- This allows us to test how the application handles Worldpay not returning after we redirect a user to them.
192
-
193
- #### Refunds
161
+ #### Payments
194
162
 
195
- Requesting a refund from Worldpay is a single step process.
163
+ Making a payment with Govpay requires three steps:
196
164
 
197
- 1. The app sends an XML request to Worldpay with details of the order to be refunded and the amount. Worldpay returns an XML response confirming the request has been received
165
+ 1. The app sends a JSON request to Govpay asking it to prepare for a new payment, and providing a unique identifier and a callback URL.
166
+ 2. Govpay subsequently invokes the callback URL, passing a Govpay URL to which the user should be redirected.
167
+ 2. The app redirects the user to the Govpay URL with params that tell Govpay where to redirect the user to when the payment is complete.
198
168
 
199
- Like payments, refund requests are also sent to the same url `../worldpay/payments-service`. The mock handles determining what request is being made and returns the appropriate response.
169
+ This Govpay mock replicates those 2 interactions with the following url
170
+ - `../govpay/v1/payments`
200
171
 
201
172
  #### Configuration
202
173
 
203
- In order to use the Worldpay mock you'll need to provide additional configuration details
174
+ In order to use the govpay mock you'll need to provide additional configuration details
204
175
 
205
176
  ```ruby
206
177
  # config/initializers/defra_ruby_mocks.rb
207
178
  require "defra_ruby_mocks"
208
179
 
209
180
  DefraRubyMocks.configure do |config|
210
- config.enable = true
211
- config.delay = 1000
212
-
213
- config.worldpay_admin_code = "admincode1"
214
- config.worldpay_mac_secret = "macsecret1"
215
- config.worldpay_merchant_code = "merchantcode1"
216
- config.worldpay_domain = "http://localhost:3000/mocks"
181
+ config.govpay_domain = File.join(ENV["WCRS_GOVPAY_DOMAIN"] || "http://localhost:3002", "/fo/mocks/govpay/v1")
217
182
  end
218
183
  ```
219
184
 
220
- It's important that the admin code, mac secret and merchant code are the same as used by the apps calling the Worldpay mock. These values are used when generating the responses and are validated by the apps so it's important they match.
221
-
222
- The domain is used when generating the URL we tell the app to redirect users to. As this is just an engine and not a standalone service, we need to tell it what domain it is running from. For example, if the engine is mounted into the app like this
185
+ The domain is used when generating the URL we tell the app to redirect users to. As this is just an engine and not a standalone service, we need to tell it what domain it is running from.
223
186
 
224
187
  ```ruby
225
188
  mount DefraRubyMocks::Engine => "/mocks"
226
189
  ```
227
190
 
228
- And the app is running at `http://localhost:3000`, this engine can then use that information to tell the app to redirect users to `http://localhost:3000/mocks/worldpay/dispatcher` as part of the `payments-service` response.
229
-
230
191
  #### Only for Waste Carriers
231
192
 
232
- At this time there is only one digital service built using Ruby on Rails that uses Worldpay; the [Waste Carriers Registration service](https://github.com/DEFRA/ruby-services-team/tree/master/services/wcr). So the Worldpay mock has been written with the assumption it will only be mounted into one of the Waste Carriers apps.
193
+ At this time there is only one digital service built using Ruby on Rails that uses Govpay; the [Waste Carriers Registration service](https://github.com/DEFRA/ruby-services-team/tree/master/services/wcr). So the Govpay mock has been written with the assumption it will only be mounted into one of the Waste Carriers apps.
233
194
 
234
195
  A critical aspect of this is the expectation that the following classes will be loaded and available when the engine is mounted and the app is running
235
196
 
236
197
  - `WasteCarriersEngine::TransientRegistration`
237
198
  - `WasteCarriersEngine::Registration`
238
199
 
239
- We need these classes so we can use them to query the database for the registration the payment is being made against. We only get the registration reference in the request made to `/worldpay/dispatcher`, not the order code. As the response needs to include the order code we need access to these ActiveRecord models to locate the last order added.
240
-
241
- In the live Worldpay service this information (along with the amount to be paid) is saved after the initial request to `/payments-service`. The mock however isn't persisting anything to reduce complexity. So instead it needs to be able to query the database for the information it needs via ActiveRecord.
242
-
243
200
  #### Payment pages are not mocked
244
201
 
245
- The actual Worldpay service presents payment pages that display a form where users are able to enter their credit card details and confirm the payment is correct. This mock does **not** replicate the UI of Worldpay, only the API. Bear this in mind when building any automated acceptance tests.
202
+ The actual Govpay service presents payment pages that display a form where users are able to enter their credit card details and confirm the payment is correct. This mock does **not** replicate the UI of Govpay, only the API. Bear this in mind when building any automated acceptance tests.
246
203
 
247
204
  ## Installation
248
205
 
@@ -3,16 +3,19 @@
3
3
  module DefraRubyMocks
4
4
  class GovpayController < ::DefraRubyMocks::ApplicationController
5
5
 
6
- protect_from_forgery with: :exception, except: [:create_payemnt]
6
+ skip_before_action :verify_authenticity_token
7
7
 
8
8
  def create_payment
9
9
  valid_create_params
10
+
11
+ # Enqueue the payment callback to run after the controller responds
12
+ DefraRubyMocks::GovpayPaymentCallbackJob.perform_later(params[:return_url])
13
+
10
14
  render json: GovpayCreatePaymentService.new.run(
11
15
  amount: params[:amount], description: params[:description], return_url: params[:return_url]
12
16
  )
13
17
  rescue StandardError => e
14
18
  Rails.logger.error("MOCKS: Govpay payment creation error: #{e.message}")
15
- Rails.logger.error e.backtrace
16
19
  head 500
17
20
  end
18
21
 
@@ -21,10 +24,26 @@ module DefraRubyMocks
21
24
  render json: GovpayGetPaymentService.new.run(payment_id: params[:payment_id])
22
25
  rescue StandardError => e
23
26
  Rails.logger.error("MOCKS: Govpay payment details error: #{e.message}")
24
- Rails.logger.error e.backtrace
25
27
  head 422
26
28
  end
27
29
 
30
+ def create_refund
31
+ valid_create_refund_params
32
+ render json: GovpayRequestRefundService.new.run(payment_id: params[:payment_id],
33
+ amount: params[:amount],
34
+ refund_amount_available: params[:refund_amount_available])
35
+ rescue StandardError => e
36
+ Rails.logger.error("MOCKS: Govpay refund error: #{e.message}")
37
+ head 500
38
+ end
39
+
40
+ def refund_details
41
+ render json: GovpayRefundDetailsService.new.run(payment_id: params[:payment_id], refund_id: params[:refund_id])
42
+ rescue StandardError => e
43
+ Rails.logger.error("MOCKS: Govpay refund error: #{e.message}")
44
+ head 500
45
+ end
46
+
28
47
  def valid_create_params
29
48
  params.require(%i[amount description return_url])
30
49
  end
@@ -34,5 +53,11 @@ module DefraRubyMocks
34
53
 
35
54
  raise ArgumentError, "Invalid Govpay payment ID #{params[:payment_id]}"
36
55
  end
56
+
57
+ def valid_create_refund_params
58
+ valid_payment_id
59
+ raise ArgumentError, "Invalid refund amount" unless params[:amount].present?
60
+ raise ArgumentError, "Invalid refund amount available" unless params[:refund_amount_available].present?
61
+ end
37
62
  end
38
63
  end
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DefraRubyMocks
4
+ class ApplicationJob < ActiveJob::Base
5
+ end
6
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DefraRubyMocks
4
+ class GovpayPaymentCallbackJob < DefraRubyMocks::ApplicationJob
5
+ queue_as :default
6
+
7
+ def perform(*response_url)
8
+ Rails.logger.debug "GovpayPaymentCallbackJob calling response URL #{response_url}"
9
+ RestClient::Request.execute(method: :GET, url: response_url)
10
+ rescue RestClient::ExceptionWithResponse => e
11
+ Rails.logger.debug "GovpayPaymentCallbackJob: RestClient received response: #{e}"
12
+ rescue StandardError => e
13
+ Rails.logger.error("GovpayPaymentCallbackJob: Error sending request to govpay: #{e}")
14
+ Airbrake.notify(e, message: "Error on govpay request")
15
+ end
16
+ end
17
+ end
@@ -6,19 +6,17 @@ module DefraRubyMocks
6
6
  class GovpayCreatePaymentService < BaseService
7
7
 
8
8
  def run(amount:, description:, return_url:)
9
- {
10
- created_date: Time.current,
11
- state: { status: "created", finished: false },
12
- _links: {
13
- self: { href: "#{base_url}/#{payment_id}", method: "GET" },
14
- next_url: { href: return_url, method: "GET" }
15
- },
16
- amount: amount.to_i,
17
- reference: "12345",
18
- description: description,
19
- payment_id: payment_id,
20
- payment_provider: "sandbox"
21
- }
9
+ success_response.merge(
10
+ {
11
+ _links: {
12
+ self: { href: "#{base_url}/#{payment_id}", method: "GET" },
13
+ next_url: { href: return_url, method: "GET" }
14
+ },
15
+ amount: amount.to_i,
16
+ description: description,
17
+ payment_id: payment_id
18
+ }
19
+ )
22
20
  end
23
21
 
24
22
  private
@@ -30,5 +28,35 @@ module DefraRubyMocks
30
28
  def payment_id
31
29
  @payment_id ||= SecureRandom.alphanumeric(26)
32
30
  end
31
+
32
+ # rubocop:disable Metrics/MethodLength
33
+ def success_response
34
+ {
35
+ "created_date": "2020-03-03T16:17:19.554Z",
36
+ "state": {
37
+ "status": "created",
38
+ "finished": false
39
+ },
40
+ "_links": {
41
+ "self": {
42
+ "href": "https://publicapi.payments.service.gov.uk/v1/payments/hu20sqlact5260q2nanm0q8u93",
43
+ "method": "GET"
44
+ },
45
+ "next_url": {
46
+ "href": "https://www.payments.service.gov.uk/secure/bb0a272c-8eaf-468d-b3xf-ae5e000d2231",
47
+ "method": "GET"
48
+ }
49
+ },
50
+ "amount": 14_500,
51
+ "reference": "12345",
52
+ "description": "Pay your council tax",
53
+ "return_url": "https://your.service.gov.uk/completed",
54
+ "payment_id": "hu20sqlact5260q2nanm0q8u93",
55
+ "payment_provider": "worldpay",
56
+ "provider_id": "10987654321"
57
+ }
58
+ end
59
+ # rubocop:enable Metrics/MethodLength
60
+
33
61
  end
34
62
  end
@@ -6,27 +6,85 @@ module DefraRubyMocks
6
6
  class GovpayGetPaymentService < BaseService
7
7
 
8
8
  def run(payment_id:, amount: Random.rand(100..1_000), created_at: Time.current)
9
+ # This currently supports only success results:
10
+ response_success.merge(
11
+ {
12
+ created_date: created_at,
13
+ amount: amount,
14
+ payment_id: payment_id,
15
+ total_amount: amount
16
+ }
17
+ )
18
+ end
19
+
20
+ private
21
+
22
+ # rubocop:disable Metrics/MethodLength
23
+ def response_success
9
24
  {
10
- created_date: created_at,
11
- amount: amount,
12
- state: {
13
- status: "success",
14
- finished: true
25
+ "amount": 10_501,
26
+ "description": "Waste carrier registration upper tier",
27
+ "reference": "12345",
28
+ "language": "en",
29
+ "metadata": {
30
+ "ledger_code": "AB100",
31
+ "an_internal_reference_number": 200
32
+ },
33
+ "email": "sherlock.holmes@example.com",
34
+ "state": {
35
+ "status": "success",
36
+ "finished": true
37
+ },
38
+ "payment_id": "cnnffa1e6s3u9a6n24u2cp527d",
39
+ "payment_provider": "sandbox",
40
+ "created_date": "2022-05-18T11:52:13.669Z",
41
+ "refund_summary": {
42
+ "status": "available",
43
+ "amount_available": 10_501,
44
+ "amount_submitted": 0
45
+ },
46
+ "settlement_summary": {
47
+ "capture_submit_time": "2022-05-18T11:52:39.172Z",
48
+ "captured_date": "2022-05-18"
15
49
  },
16
- description: "Your waste carriers registration fee",
17
- reference: "12345",
18
- language: "en",
19
- payment_id: payment_id,
20
- refund_summary: {
21
- status: "available",
22
- amount_available: amount - 100,
23
- amount_submitted: 0
50
+ "card_details": {
51
+ "last_digits_card_number": "5100",
52
+ "first_digits_card_number": "510510",
53
+ "cardholder_name": "Sherlock Holmes",
54
+ "expiry_date": "01/24",
55
+ "billing_address": {
56
+ "line1": "221 Baker Street",
57
+ "line2": "Flat b",
58
+ "postcode": "NW1 6XE",
59
+ "city": "London",
60
+ "country": "GB"
61
+ },
62
+ "card_brand": "Mastercard",
63
+ "card_type": "debit"
24
64
  },
25
- total_amount: amount,
26
- payment_provider: "worldpay",
27
- provider_id: "10987654321"
65
+ "delayed_capture": false,
66
+ "moto": false,
67
+ "provider_id": "9bb0c2c1-d0c5-4a63-8945-f4240e06f8ae",
68
+ "return_url": "https://some-wcr-env.defra.gov.uk/completed",
69
+ "authorisation_mode": "web",
70
+ "card_brand": "Mastercard",
71
+ "_links": {
72
+ "self": {
73
+ "href": "https://publicapi.payments.service.gov.uk/v1/payments/cnnffa1e6s3u9a6n24u2cp527d",
74
+ "method": "GET"
75
+ },
76
+ "events": {
77
+ "href": "https://publicapi.payments.service.gov.uk/v1/payments/cnnffa1e6s3u9a6n24u2cp527d/events",
78
+ "method": "GET"
79
+ },
80
+ "refunds": {
81
+ "href": "https://publicapi.payments.service.gov.uk/v1/payments/cnnffa1e6s3u9a6n24u2cp527d/refunds",
82
+ "method": "GET"
83
+ }
84
+ }
28
85
  }
29
86
  end
87
+ # rubocop:enable Metrics/MethodLength
30
88
 
31
89
  end
32
90
  end
@@ -0,0 +1,43 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DefraRubyMocks
4
+ class GovpayRefundDetailsService < BaseService
5
+
6
+ def run(payment_id:, refund_id:) # rubocop:disable Lint/UnusedMethodArgument
7
+ {
8
+ "amount": 2000,
9
+ "created_date": "2019-09-19T16:53:03.213Z",
10
+ "refund_id": "j6se0f2o427g28g8yg3u3i",
11
+ "status": status,
12
+ "settlement_summary": {
13
+ "settled_date": "2019-09-21"
14
+ }
15
+ }
16
+ end
17
+
18
+ private
19
+
20
+ # "submitted" for up to GOVPAY_REFUND_SUBMITTED_SUCCESS_LAG seconds after the last refund request, then "success"
21
+ def status
22
+ timestamp = File.read("#{Dir.tmpdir}/govpay_request_refund_service_last_run_time")
23
+ last_refund_time = timestamp ? Time.parse(timestamp) : 1.day.ago
24
+ submitted_success_lag = ENV.fetch("GOVPAY_REFUND_SUBMITTED_SUCCESS_LAG", 0).to_i
25
+ cutoff_time = (last_refund_time + submitted_success_lag.seconds).to_time
26
+ return "success" if submitted_success_lag.zero?
27
+
28
+ Time.zone.now < cutoff_time ? "submitted" : "success"
29
+ rescue Errno::ENOENT
30
+ write_timestamp_file("govpay_request_refund_service_last_run_time")
31
+
32
+ "success"
33
+ end
34
+
35
+ def write_timestamp_file(filename)
36
+ filepath = "#{Dir.tmpdir}/#{filename}"
37
+
38
+ # FileUtils.touch seems unreliable in VM so need to write/read the actual time
39
+ File.write(filepath, Time.zone.now)
40
+ end
41
+
42
+ end
43
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DefraRubyMocks
4
+ class GovpayRequestRefundService < BaseService
5
+
6
+ def run(payment_id:, amount:, refund_amount_available:) # rubocop:disable Lint/UnusedMethodArgument
7
+ write_timestamp
8
+
9
+ # This currently supports only "submitted" status:
10
+ {
11
+ "amount": amount,
12
+ "created_date": "2019-09-19T16:53:03.213Z",
13
+ "refund_id": "j6se0f2o427g28g8yg3u3i",
14
+ "status": "submitted"
15
+ }
16
+ end
17
+
18
+ private
19
+
20
+ # let the refund details service know how long since the refund was requested
21
+ def write_timestamp
22
+ filepath = "#{Dir.tmpdir}/govpay_request_refund_service_last_run_time"
23
+ # FileUtils.touch seems unreliable in VM so need to write/read the actual time
24
+ File.write(filepath, Time.zone.now)
25
+ end
26
+ end
27
+ end
data/config/routes.rb CHANGED
@@ -11,16 +11,6 @@ DefraRubyMocks::Engine.routes.draw do
11
11
  as: "company_officers",
12
12
  constraints: ->(_request) { DefraRubyMocks.configuration.enabled? }
13
13
 
14
- post "/worldpay/payments-service",
15
- to: "worldpay#payments_service",
16
- as: "worldpay_payments_service",
17
- constraints: ->(_request) { DefraRubyMocks.configuration.enabled? }
18
-
19
- get "/worldpay/dispatcher",
20
- to: "worldpay#dispatcher",
21
- as: "worldpay_dispatcher",
22
- constraints: ->(_request) { DefraRubyMocks.configuration.enabled? }
23
-
24
14
  post "/govpay/v1/payments",
25
15
  to: "govpay#create_payment",
26
16
  as: "govpay_create_payment",
@@ -30,4 +20,14 @@ DefraRubyMocks::Engine.routes.draw do
30
20
  to: "govpay#payment_details",
31
21
  as: "govpay_payment_details",
32
22
  constraints: ->(_request) { DefraRubyMocks.configuration.enabled? }
23
+
24
+ post "/govpay/v1/payments/:payment_id/refunds",
25
+ to: "govpay#create_refund",
26
+ as: "govpay_create_refund",
27
+ constraints: ->(_request) { DefraRubyMocks.configuration.enabled? }
28
+
29
+ get "/govpay/v1/payments/:payment_id/refunds/:refund_id",
30
+ to: "govpay#refund_details",
31
+ as: "govpay_refund_details",
32
+ constraints: ->(_request) { DefraRubyMocks.configuration.enabled? }
33
33
  end
@@ -5,7 +5,7 @@ module DefraRubyMocks
5
5
 
6
6
  DEFAULT_DELAY = 1000
7
7
 
8
- attr_accessor :worldpay_admin_code, :worldpay_mac_secret, :worldpay_merchant_code, :worldpay_domain, :govpay_domain
8
+ attr_accessor :govpay_domain
9
9
  attr_reader :delay
10
10
 
11
11
  def initialize
@@ -3,7 +3,6 @@
3
3
  require_relative "configuration"
4
4
  require_relative "invalid_config_error"
5
5
  require_relative "missing_resource_error"
6
- require_relative "unrecognised_worldpay_request_error"
7
6
 
8
7
  module DefraRubyMocks
9
8
  class Engine < ::Rails::Engine
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DefraRubyMocks
4
- VERSION = "2.3.2"
4
+ VERSION = "2.4.0"
5
5
  end