defra_ruby_mocks 1.0.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +90 -2
  3. data/Rakefile +0 -2
  4. data/app/controllers/defra_ruby_mocks/company_controller.rb +1 -1
  5. data/app/controllers/defra_ruby_mocks/worldpay_controller.rb +51 -0
  6. data/app/services/defra_ruby_mocks/worldpay_payment_service.rb +47 -0
  7. data/app/services/defra_ruby_mocks/worldpay_refund_service.rb +37 -0
  8. data/app/services/defra_ruby_mocks/worldpay_request_handler_service.rb +40 -0
  9. data/app/services/defra_ruby_mocks/worldpay_resource_service.rb +55 -0
  10. data/app/services/defra_ruby_mocks/worldpay_response_service.rb +92 -0
  11. data/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb +4 -0
  12. data/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb +4 -0
  13. data/app/views/defra_ruby_mocks/worldpay/stuck.html.erb +37 -0
  14. data/config/routes.rb +11 -0
  15. data/lib/defra_ruby_mocks/configuration.rb +2 -0
  16. data/lib/defra_ruby_mocks/engine.rb +3 -0
  17. data/lib/defra_ruby_mocks/invalid_config_error.rb +9 -0
  18. data/lib/defra_ruby_mocks/missing_resource_error.rb +9 -0
  19. data/lib/defra_ruby_mocks/unrecognised_worldpay_request_error.rb +5 -0
  20. data/lib/defra_ruby_mocks/version.rb +1 -1
  21. data/spec/dummy/log/development.log +180 -0
  22. data/spec/dummy/log/test.log +679 -99
  23. data/spec/examples.txt +83 -30
  24. data/spec/fixtures/payment_request_invalid.xml +6 -0
  25. data/spec/fixtures/payment_request_valid.xml +30 -0
  26. data/spec/fixtures/refund_request_invalid.xml +6 -0
  27. data/spec/fixtures/refund_request_valid.xml +11 -0
  28. data/spec/fixtures/unrecognised_request.xml +6 -0
  29. data/spec/requests/company_spec.rb +3 -3
  30. data/spec/requests/worldpay_spec.rb +142 -0
  31. data/spec/services/worldpay_payment_service_spec.rb +95 -0
  32. data/spec/services/worldpay_refund_service_spec.rb +68 -0
  33. data/spec/services/worldpay_request_handler_service_spec.rb +79 -0
  34. data/spec/services/worldpay_resource_service_spec.rb +112 -0
  35. data/spec/services/worldpay_response_service_spec.rb +156 -0
  36. data/spec/spec_helper.rb +3 -2
  37. data/spec/support/helpers/configuration.rb +1 -0
  38. data/spec/support/helpers/helpers.rb +13 -0
  39. data/spec/support/helpers/waste_carriers_engine.rb +10 -0
  40. data/spec/support/helpers/xml_matchers.rb +19 -0
  41. metadata +75 -8
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE paymentService PUBLIC "-//WorldPay//DTD WorldPay PaymentService v1//EN"
3
+ "http://dtd.worldpay.com/paymentService_v1.dtd">
4
+ <paymentService version="1.4" merchantCode="<%= @values[:merchant_code] %>"><reply><orderStatus orderCode="<%= @values[:order_code] %>"><reference id="<%= @values[:id] %>"><%= @values[:url] %></reference></orderStatus></reply></paymentService>
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE paymentService PUBLIC "-//WorldPay//DTD WorldPay PaymentService v1//EN"
3
+ "http://dtd.worldpay.com/paymentService_v1.dtd">
4
+ <paymentService version="1.4" merchantCode="<%= @values[:merchant_code] %>"><reply><ok><refundReceived orderCode="<%= @values[:order_code] %>"><amount value="<%= @values[:refund_value] %>" currencyCode="<%= @values[:currency_code] %>" exponent="<%= @values[:exponent] %>" debitCreditIndicator="credit"/></refundReceived></ok></reply></paymentService>
@@ -0,0 +1,37 @@
1
+ <!doctype html>
2
+
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="utf-8">
6
+
7
+ <title>You is stuck</title>
8
+ <meta name="description" content="Thw Worldpay stuck page">
9
+ <meta name="author" content="Defra">
10
+ </head>
11
+
12
+ <body>
13
+ <main>
14
+ <div id="message">
15
+ <h1>Stuck!</h1>
16
+ <p>Looks like your registration has gotten stuck whilst paying for it using Worldpay.</p>
17
+ <p>We hope that's what you expected to happen.</p>
18
+ <p>Regards, the Ruby Services Team</p>
19
+ </div>
20
+ <% if @response %>
21
+ <div id="debug">
22
+ <h2>Debug</h2>
23
+ <ul>
24
+ <li><strong>Supplied URL</strong> <code><%= @response.supplied_url %></code></li>
25
+ <li><strong>Separator</strong> <code><%= @response.separator %></code></li>
26
+ <li><strong>Order key</strong> <code><%= @response.order_key %></code></li>
27
+ <li><strong>Mac</strong> <code><%= @response.mac %></code></li>
28
+ <li><strong>Value</strong> <code><%= @response.value %></code></li>
29
+ <li><strong>Status</strong> <code><%= @response.status %></code></li>
30
+ <li><strong>Reference</strong> <code><%= @response.reference %></code></li>
31
+ <li><strong>Url</strong> <code><%= @response.url %></code></li>
32
+ </ul>
33
+ </div>
34
+ <% end %>
35
+ </main>
36
+ </body>
37
+ </html>
@@ -5,4 +5,15 @@ DefraRubyMocks::Engine.routes.draw do
5
5
  to: "company#show",
6
6
  as: "company",
7
7
  constraints: ->(_request) { DefraRubyMocks.configuration.enabled? }
8
+
9
+ get "/worldpay/payments-service",
10
+ to: "worldpay#payments_service",
11
+ as: "worldpay_payments_service",
12
+ constraints: ->(_request) { DefraRubyMocks.configuration.enabled? }
13
+
14
+ get "/worldpay/dispatcher",
15
+ to: "worldpay#dispatcher",
16
+ as: "worldpay_dispatcher",
17
+ constraints: ->(_request) { DefraRubyMocks.configuration.enabled? }
18
+
8
19
  end
@@ -5,6 +5,8 @@ module DefraRubyMocks
5
5
 
6
6
  DEFAULT_DELAY = 1000
7
7
 
8
+ attr_accessor :worldpay_admin_code, :worldpay_mac_secret
9
+ attr_accessor :worldpay_merchant_code, :worldpay_domain
8
10
  attr_reader :delay
9
11
 
10
12
  def initialize
@@ -1,6 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "configuration"
4
+ require_relative "invalid_config_error"
5
+ require_relative "missing_resource_error"
6
+ require_relative "unrecognised_worldpay_request_error"
4
7
 
5
8
  module DefraRubyMocks
6
9
  class Engine < ::Rails::Engine
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DefraRubyMocks
4
+ class InvalidConfigError < StandardError
5
+ def initialize(attribute)
6
+ super("Mocks configuration contains a problem attribute: #{attribute}")
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DefraRubyMocks
4
+ class MissingResourceError < StandardError
5
+ def initialize(reference)
6
+ super("Could not find resource: #{reference}")
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DefraRubyMocks
4
+ class UnrecognisedWorldpayRequestError < StandardError; end
5
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DefraRubyMocks
4
- VERSION = "1.0.0"
4
+ VERSION = "1.4.1"
5
5
  end
@@ -0,0 +1,180 @@
1
+
2
+
3
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for ::1 at 2020-05-22 17:26:24 +0100
4
+
5
+ ActionController::RoutingError (No route matches [GET] "/defra_ruby_mocks/worldpay/stuck"):
6
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
7
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8
+ railties (4.2.11.3) lib/rails/rack/logger.rb:38:in `call_app'
9
+ railties (4.2.11.3) lib/rails/rack/logger.rb:20:in `block in call'
10
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
11
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:26:in `tagged'
12
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:68:in `tagged'
13
+ railties (4.2.11.3) lib/rails/rack/logger.rb:20:in `call'
14
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
15
+ rack (1.6.13) lib/rack/methodoverride.rb:22:in `call'
16
+ rack (1.6.13) lib/rack/runtime.rb:18:in `call'
17
+ activesupport (4.2.11.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
18
+ rack (1.6.13) lib/rack/lock.rb:17:in `call'
19
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/static.rb:120:in `call'
20
+ rack (1.6.13) lib/rack/sendfile.rb:113:in `call'
21
+ railties (4.2.11.3) lib/rails/engine.rb:518:in `call'
22
+ railties (4.2.11.3) lib/rails/application.rb:165:in `call'
23
+ rack (1.6.13) lib/rack/lock.rb:17:in `call'
24
+ rack (1.6.13) lib/rack/content_length.rb:15:in `call'
25
+ rack (1.6.13) lib/rack/handler/webrick.rb:88:in `service'
26
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service'
27
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run'
28
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread'
29
+
30
+
31
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
32
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
33
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
34
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (21.4ms)
35
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.4ms)
36
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (154.2ms)
37
+
38
+
39
+ Started GET "/worldpay/stuck" for ::1 at 2020-05-22 17:26:34 +0100
40
+
41
+ ActionController::RoutingError (No route matches [GET] "/worldpay/stuck"):
42
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
43
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
44
+ railties (4.2.11.3) lib/rails/rack/logger.rb:38:in `call_app'
45
+ railties (4.2.11.3) lib/rails/rack/logger.rb:20:in `block in call'
46
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
47
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:26:in `tagged'
48
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:68:in `tagged'
49
+ railties (4.2.11.3) lib/rails/rack/logger.rb:20:in `call'
50
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
51
+ rack (1.6.13) lib/rack/methodoverride.rb:22:in `call'
52
+ rack (1.6.13) lib/rack/runtime.rb:18:in `call'
53
+ activesupport (4.2.11.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
54
+ rack (1.6.13) lib/rack/lock.rb:17:in `call'
55
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/static.rb:120:in `call'
56
+ rack (1.6.13) lib/rack/sendfile.rb:113:in `call'
57
+ railties (4.2.11.3) lib/rails/engine.rb:518:in `call'
58
+ railties (4.2.11.3) lib/rails/application.rb:165:in `call'
59
+ rack (1.6.13) lib/rack/lock.rb:17:in `call'
60
+ rack (1.6.13) lib/rack/content_length.rb:15:in `call'
61
+ rack (1.6.13) lib/rack/handler/webrick.rb:88:in `service'
62
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service'
63
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run'
64
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread'
65
+
66
+
67
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
68
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
69
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
70
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
71
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
72
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.5ms)
73
+
74
+
75
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for ::1 at 2020-05-22 17:26:55 +0100
76
+
77
+ ActionController::RoutingError (No route matches [GET] "/defra_ruby_mocks/worldpay/stuck"):
78
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
79
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
80
+ railties (4.2.11.3) lib/rails/rack/logger.rb:38:in `call_app'
81
+ railties (4.2.11.3) lib/rails/rack/logger.rb:20:in `block in call'
82
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
83
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:26:in `tagged'
84
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:68:in `tagged'
85
+ railties (4.2.11.3) lib/rails/rack/logger.rb:20:in `call'
86
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
87
+ rack (1.6.13) lib/rack/methodoverride.rb:22:in `call'
88
+ rack (1.6.13) lib/rack/runtime.rb:18:in `call'
89
+ activesupport (4.2.11.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
90
+ rack (1.6.13) lib/rack/lock.rb:17:in `call'
91
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/static.rb:120:in `call'
92
+ rack (1.6.13) lib/rack/sendfile.rb:113:in `call'
93
+ railties (4.2.11.3) lib/rails/engine.rb:518:in `call'
94
+ railties (4.2.11.3) lib/rails/application.rb:165:in `call'
95
+ rack (1.6.13) lib/rack/lock.rb:17:in `call'
96
+ rack (1.6.13) lib/rack/content_length.rb:15:in `call'
97
+ rack (1.6.13) lib/rack/handler/webrick.rb:88:in `service'
98
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service'
99
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run'
100
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread'
101
+
102
+
103
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
104
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
105
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
106
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
107
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
108
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (93.9ms)
109
+
110
+
111
+ Started GET "/worldpay/stuck.html" for ::1 at 2020-05-22 17:27:28 +0100
112
+
113
+ ActionController::RoutingError (No route matches [GET] "/worldpay/stuck.html"):
114
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
115
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
116
+ railties (4.2.11.3) lib/rails/rack/logger.rb:38:in `call_app'
117
+ railties (4.2.11.3) lib/rails/rack/logger.rb:20:in `block in call'
118
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
119
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:26:in `tagged'
120
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:68:in `tagged'
121
+ railties (4.2.11.3) lib/rails/rack/logger.rb:20:in `call'
122
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
123
+ rack (1.6.13) lib/rack/methodoverride.rb:22:in `call'
124
+ rack (1.6.13) lib/rack/runtime.rb:18:in `call'
125
+ activesupport (4.2.11.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
126
+ rack (1.6.13) lib/rack/lock.rb:17:in `call'
127
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/static.rb:120:in `call'
128
+ rack (1.6.13) lib/rack/sendfile.rb:113:in `call'
129
+ railties (4.2.11.3) lib/rails/engine.rb:518:in `call'
130
+ railties (4.2.11.3) lib/rails/application.rb:165:in `call'
131
+ rack (1.6.13) lib/rack/lock.rb:17:in `call'
132
+ rack (1.6.13) lib/rack/content_length.rb:15:in `call'
133
+ rack (1.6.13) lib/rack/handler/webrick.rb:88:in `service'
134
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service'
135
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run'
136
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread'
137
+
138
+
139
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
140
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
141
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
142
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
143
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
144
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (93.9ms)
145
+
146
+
147
+ Started GET "/worldpay/stuck" for ::1 at 2020-05-22 17:27:34 +0100
148
+
149
+ ActionController::RoutingError (No route matches [GET] "/worldpay/stuck"):
150
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
151
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
152
+ railties (4.2.11.3) lib/rails/rack/logger.rb:38:in `call_app'
153
+ railties (4.2.11.3) lib/rails/rack/logger.rb:20:in `block in call'
154
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
155
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:26:in `tagged'
156
+ activesupport (4.2.11.3) lib/active_support/tagged_logging.rb:68:in `tagged'
157
+ railties (4.2.11.3) lib/rails/rack/logger.rb:20:in `call'
158
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
159
+ rack (1.6.13) lib/rack/methodoverride.rb:22:in `call'
160
+ rack (1.6.13) lib/rack/runtime.rb:18:in `call'
161
+ activesupport (4.2.11.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
162
+ rack (1.6.13) lib/rack/lock.rb:17:in `call'
163
+ actionpack (4.2.11.3) lib/action_dispatch/middleware/static.rb:120:in `call'
164
+ rack (1.6.13) lib/rack/sendfile.rb:113:in `call'
165
+ railties (4.2.11.3) lib/rails/engine.rb:518:in `call'
166
+ railties (4.2.11.3) lib/rails/application.rb:165:in `call'
167
+ rack (1.6.13) lib/rack/lock.rb:17:in `call'
168
+ rack (1.6.13) lib/rack/content_length.rb:15:in `call'
169
+ rack (1.6.13) lib/rack/handler/webrick.rb:88:in `service'
170
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/httpserver.rb:140:in `service'
171
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/httpserver.rb:96:in `run'
172
+ /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/2.4.0/webrick/server.rb:290:in `block in start_thread'
173
+
174
+
175
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
176
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
177
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
178
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
179
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
180
+ Rendered /Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.1ms)
@@ -1,147 +1,727 @@
1
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:10:46 +0000
2
- Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:10:46 +0000
3
- Processing by DefraRubyMocks::CompanyController#show as HTML
4
- Parameters: {"id"=>"foo"}
5
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (2.9ms)
6
- Completed 404 Not Found in 36ms (Views: 36.0ms)
7
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:10:46 +0000
8
- Processing by DefraRubyMocks::CompanyController#show as HTML
9
- Parameters: {"id"=>"SC247974"}
10
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.5ms)
11
- Completed 200 OK in 5ms (Views: 5.1ms)
12
- Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:10:46 +0000
13
- Processing by DefraRubyMocks::CompanyController#show as HTML
14
- Parameters: {"id"=>"99999999"}
15
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
16
- Completed 404 Not Found in 1ms (Views: 0.6ms)
17
- Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:10:46 +0000
1
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
2
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
3
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (4.0ms)
4
+ Completed 200 OK in 33ms (Views: 31.9ms)
5
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
6
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
7
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (0.4ms)
8
+ Completed 200 OK in 5ms (Views: 4.6ms)
9
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
10
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
11
+ Completed 500 Internal Server Error in 0ms
12
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
13
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
14
+ Parameters: {"successURL"=>"http://example.com/forthewin"}
15
+ Completed 500 Internal Server Error in 0ms
16
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
17
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
18
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
19
+ Completed 500 Internal Server Error in 10ms
20
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
21
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
22
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
23
+ Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
24
+ Completed 302 Found in 0ms
25
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
26
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
27
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
28
+ Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
18
29
  Processing by DefraRubyMocks::CompanyController#show as HTML
19
30
  Parameters: {"id"=>"05868270"}
20
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
21
- Completed 200 OK in 2ms (Views: 1.1ms)
22
- Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:13:25 +0000
31
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
32
+ Completed 200 OK in 14ms (Views: 13.3ms)
33
+ Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
23
34
  Processing by DefraRubyMocks::CompanyController#show as HTML
24
35
  Parameters: {"id"=>"99999999"}
25
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (2.8ms)
26
- Completed 404 Not Found in 31ms (Views: 30.7ms)
27
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:13:25 +0000
36
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.3ms)
37
+ Completed 404 Not Found in 5ms (Views: 4.4ms)
38
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
28
39
  Processing by DefraRubyMocks::CompanyController#show as HTML
29
40
  Parameters: {"id"=>"SC247974"}
30
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.5ms)
31
- Completed 200 OK in 5ms (Views: 4.6ms)
32
- Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:13:25 +0000
41
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
42
+ Completed 200 OK in 1ms (Views: 0.4ms)
43
+ Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-05-22 15:34:15 +0100
33
44
  Processing by DefraRubyMocks::CompanyController#show as HTML
34
45
  Parameters: {"id"=>"foo"}
35
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
36
- Completed 404 Not Found in 1ms (Views: 0.6ms)
37
- Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:13:25 +0000
46
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.0ms)
47
+ Completed 404 Not Found in 0ms (Views: 0.4ms)
48
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
49
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
50
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
51
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
52
+ Parameters: {"successURL"=>"http://example.com/forthewin"}
53
+ Completed 500 Internal Server Error in 0ms
54
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
55
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
56
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
57
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/stuck.html.erb (2.4ms)
58
+ Completed 200 OK in 15ms (Views: 14.2ms)
59
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
60
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
61
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
62
+ Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
63
+ Completed 302 Found in 0ms
64
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
65
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
66
+ Completed 500 Internal Server Error in 4ms
67
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
68
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
69
+ Completed 500 Internal Server Error in 3ms
70
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
71
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
72
+ Completed 500 Internal Server Error in 0ms
73
+ Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
38
74
  Processing by DefraRubyMocks::CompanyController#show as HTML
39
75
  Parameters: {"id"=>"05868270"}
40
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
76
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
77
+ Completed 200 OK in 13ms (Views: 13.1ms)
78
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
79
+ Processing by DefraRubyMocks::CompanyController#show as HTML
80
+ Parameters: {"id"=>"SC247974"}
81
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
41
82
  Completed 200 OK in 1ms (Views: 0.5ms)
42
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:13:25 +0000
43
- Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:16:06 +0000
83
+ Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
44
84
  Processing by DefraRubyMocks::CompanyController#show as HTML
45
85
  Parameters: {"id"=>"foo"}
46
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (4.6ms)
47
- Completed 404 Not Found in 37ms (Views: 35.9ms)
48
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:16:06 +0000
49
- Processing by DefraRubyMocks::CompanyController#show as HTML
50
- Parameters: {"id"=>"SC247974"}
51
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.7ms)
52
- Completed 200 OK in 7ms (Views: 6.6ms)
53
- Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:16:06 +0000
86
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.3ms)
87
+ Completed 404 Not Found in 4ms (Views: 4.3ms)
88
+ Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
54
89
  Processing by DefraRubyMocks::CompanyController#show as HTML
55
- Parameters: {"id"=>"05868270"}
56
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
57
- Completed 200 OK in 1ms (Views: 0.6ms)
58
- Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:16:06 +0000
90
+ Parameters: {"id"=>"99999999"}
91
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
92
+ Completed 404 Not Found in 1ms (Views: 0.4ms)
93
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
94
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-22 15:53:49 +0100
95
+ Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-05-22 15:53:49 +0100
59
96
  Processing by DefraRubyMocks::CompanyController#show as HTML
60
97
  Parameters: {"id"=>"99999999"}
61
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
98
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (1.7ms)
99
+ Completed 404 Not Found in 21ms (Views: 20.7ms)
100
+ Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-05-22 15:53:49 +0100
101
+ Processing by DefraRubyMocks::CompanyController#show as HTML
102
+ Parameters: {"id"=>"foo"}
103
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
62
104
  Completed 404 Not Found in 1ms (Views: 0.4ms)
63
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:16:06 +0000
64
- Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:16:42 +0000
105
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-22 15:53:50 +0100
106
+ Processing by DefraRubyMocks::CompanyController#show as HTML
107
+ Parameters: {"id"=>"SC247974"}
108
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.3ms)
109
+ Completed 200 OK in 5ms (Views: 4.5ms)
110
+ Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-05-22 15:53:50 +0100
111
+ Processing by DefraRubyMocks::CompanyController#show as HTML
112
+ Parameters: {"id"=>"05868270"}
113
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.0ms)
114
+ Completed 200 OK in 0ms (Views: 0.3ms)
115
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:53:50 +0100
116
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-05-22 15:53:50 +0100
117
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:53:50 +0100
118
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
119
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/refund_request.xml.erb (0.6ms)
120
+ Completed 200 OK in 13ms (Views: 12.6ms)
121
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:53:50 +0100
122
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
123
+ Completed 500 Internal Server Error in 0ms
124
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:53:50 +0100
125
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
126
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/payment_request.xml.erb (0.4ms)
127
+ Completed 200 OK in 4ms (Views: 3.9ms)
128
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-05-22 15:53:50 +0100
129
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
130
+ Parameters: {"successURL"=>"http://example.com/forthewin"}
131
+ Completed 500 Internal Server Error in 0ms
132
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 15:53:50 +0100
133
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
134
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
135
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/stuck.html.erb (0.7ms)
136
+ Completed 200 OK in 5ms (Views: 4.0ms)
137
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 15:53:50 +0100
138
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
139
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
140
+ Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
141
+ Completed 302 Found in 1ms
142
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
143
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
144
+ Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
65
145
  Processing by DefraRubyMocks::CompanyController#show as HTML
66
146
  Parameters: {"id"=>"99999999"}
67
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (3.0ms)
68
- Completed 404 Not Found in 28ms (Views: 27.2ms)
69
- Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:16:42 +0000
147
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (1.8ms)
148
+ Completed 404 Not Found in 20ms (Views: 19.7ms)
149
+ Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
70
150
  Processing by DefraRubyMocks::CompanyController#show as HTML
71
151
  Parameters: {"id"=>"05868270"}
72
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.5ms)
73
- Completed 200 OK in 6ms (Views: 5.4ms)
74
- Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:16:42 +0000
152
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
153
+ Completed 200 OK in 5ms (Views: 4.9ms)
154
+ Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
75
155
  Processing by DefraRubyMocks::CompanyController#show as HTML
76
156
  Parameters: {"id"=>"foo"}
77
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
78
- Completed 404 Not Found in 1ms (Views: 0.6ms)
79
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:16:42 +0000
157
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.0ms)
158
+ Completed 404 Not Found in 0ms (Views: 0.3ms)
159
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
80
160
  Processing by DefraRubyMocks::CompanyController#show as HTML
81
161
  Parameters: {"id"=>"SC247974"}
82
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
83
- Completed 200 OK in 1ms (Views: 0.5ms)
84
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:16:42 +0000
85
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:17:50 +0000
86
- Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:17:50 +0000
162
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
163
+ Completed 200 OK in 0ms (Views: 0.3ms)
164
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
165
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
166
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
167
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
168
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/stuck.html.erb (0.6ms)
169
+ Completed 200 OK in 6ms (Views: 5.4ms)
170
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
171
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
172
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
173
+ Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
174
+ Completed 302 Found in 1ms
175
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
176
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
177
+ Parameters: {"successURL"=>"http://example.com/forthewin"}
178
+ Completed 500 Internal Server Error in 0ms
179
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
180
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
181
+ Completed 500 Internal Server Error in 0ms
182
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
183
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
184
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/payment_request.xml.erb (0.5ms)
185
+ Completed 200 OK in 12ms (Views: 11.9ms)
186
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
187
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
188
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/refund_request.xml.erb (0.4ms)
189
+ Completed 200 OK in 4ms (Views: 3.8ms)
190
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
191
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 15:56:46 +0100
192
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 15:57:47 +0100
193
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:00:46 +0100
194
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:00:46 +0100
195
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:15:06 +0100
196
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:15:06 +0100
197
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
198
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (9.2ms)
199
+ Completed 500 Internal Server Error in 22ms
200
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:17:11 +0100
201
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
202
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (8.4ms)
203
+ Completed 500 Internal Server Error in 19ms
204
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:17:12 +0100
205
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:17:53 +0100
206
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:17:53 +0100
207
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
208
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (9.4ms)
209
+ undefined method `supplied_url' for #<Hash:0x00007fb2644d2920>
210
+ Completed 500 Internal Server Error in 22ms
211
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:18:09 +0100
212
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
213
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (8.8ms)
214
+ undefined method `supplied_url' for #<Hash:0x00007f7f30f7df08>
215
+ Completed 500 Internal Server Error in 21ms
216
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:18:09 +0100
217
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:19:44 +0100
218
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:19:44 +0100
219
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
220
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (1.8ms)
221
+ Completed 200 OK in 14ms (Views: 13.9ms)
222
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 16:21:40 +0100
223
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
224
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/refund_request.xml.erb (1.6ms)
225
+ Completed 200 OK in 29ms (Views: 19.6ms)
226
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 16:21:40 +0100
227
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
228
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/payment_request.xml.erb (0.4ms)
229
+ Completed 200 OK in 7ms (Views: 3.3ms)
230
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 16:21:40 +0100
231
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
232
+ Completed 500 Internal Server Error in 0ms
233
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 16:21:40 +0100
234
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
235
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
236
+ Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
237
+ Completed 302 Found in 1ms
238
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 16:21:40 +0100
239
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
240
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
241
+ Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
242
+ Completed 302 Found in 0ms
243
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-05-22 16:21:40 +0100
244
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
245
+ Parameters: {"successURL"=>"http://example.com/forthewin"}
246
+ Completed 500 Internal Server Error in 0ms
247
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-05-22 16:21:40 +0100
248
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 16:21:40 +0100
249
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 16:22:46 +0100
250
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-05-22 16:22:46 +0100
251
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 16:22:46 +0100
252
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
253
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
254
+ Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
255
+ Completed 302 Found in 1ms
256
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 16:22:46 +0100
257
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
258
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
259
+ Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
260
+ Completed 302 Found in 1ms
261
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-05-22 16:22:46 +0100
262
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
263
+ Parameters: {"successURL"=>"http://example.com/forthewin"}
264
+ Completed 500 Internal Server Error in 0ms
265
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 16:22:46 +0100
266
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
267
+ Completed 500 Internal Server Error in 3ms
268
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 16:22:46 +0100
269
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
270
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/payment_request.xml.erb (1.8ms)
271
+ Completed 200 OK in 25ms (Views: 21.6ms)
272
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 16:22:46 +0100
273
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
274
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/refund_request.xml.erb (0.4ms)
275
+ Completed 200 OK in 7ms (Views: 3.7ms)
276
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 16:24:46 +0100
277
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
278
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
279
+ Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
280
+ Completed 302 Found in 1ms
281
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 16:33:34 +0100
282
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
283
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
284
+ Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
285
+ Completed 302 Found in 1ms
286
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 16:33:51 +0100
287
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
288
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
289
+ Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
290
+ Completed 302 Found in 1ms
291
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 16:34:05 +0100
292
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
293
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
294
+ Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
295
+ Completed 302 Found in 1ms
296
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 16:43:37 +0100
297
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
298
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
299
+ Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
300
+ Completed 302 Found in 1ms
301
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:50:40 +0100
302
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:51:05 +0100
303
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:51:05 +0100
304
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
305
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (2.1ms)
306
+ Completed 200 OK in 15ms (Views: 14.1ms)
307
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:52:00 +0100
308
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:52:00 +0100
309
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
310
+ Completed 500 Internal Server Error in 2ms
311
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:53:22 +0100
312
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 16:53:22 +0100
313
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
314
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (1.9ms)
315
+ Completed 200 OK in 13ms (Views: 13.1ms)
316
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:02:51 +0100
317
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:02:51 +0100
318
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
319
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (2.2ms)
320
+ Completed 200 OK in 16ms (Views: 15.6ms)
321
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:05:06 +0100
322
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:05:06 +0100
323
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
324
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (2.8ms)
325
+ Completed 200 OK in 16ms (Views: 15.7ms)
326
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:05:24 +0100
327
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:05:24 +0100
328
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
329
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (2.1ms)
330
+ Completed 200 OK in 14ms (Views: 14.0ms)
331
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:05:50 +0100
332
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:05:50 +0100
333
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
334
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (6.1ms)
335
+ Completed 500 Internal Server Error in 17ms
336
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:07:14 +0100
337
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
338
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (6.2ms)
339
+ Completed 500 Internal Server Error in 19ms
340
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:07:14 +0100
341
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:07:48 +0100
342
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:07:48 +0100
343
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
344
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (7.6ms)
345
+ Completed 500 Internal Server Error in 20ms
346
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:08:24 +0100
347
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
348
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (6.4ms)
349
+ Completed 500 Internal Server Error in 19ms
350
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:08:24 +0100
351
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:08:45 +0100
352
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:08:45 +0100
353
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
354
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (7.5ms)
355
+ Completed 500 Internal Server Error in 21ms
356
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:11:18 +0100
357
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
358
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (6.1ms)
359
+ Completed 500 Internal Server Error in 18ms
360
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:11:18 +0100
361
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:12:16 +0100
362
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
363
+ Completed 500 Internal Server Error in 0ms
364
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:12:16 +0100
365
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:12:41 +0100
366
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:12:42 +0100
367
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
368
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (7.1ms)
369
+ Completed 500 Internal Server Error in 20ms
370
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:13:19 +0100
371
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:13:19 +0100
372
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
373
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (7.8ms)
374
+ Completed 500 Internal Server Error in 19ms
375
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:13:35 +0100
376
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
377
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (5.9ms)
378
+ Completed 500 Internal Server Error in 18ms
379
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:13:35 +0100
380
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:13:46 +0100
381
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:13:46 +0100
382
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
383
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (7.7ms)
384
+ Completed 500 Internal Server Error in 21ms
385
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:14:10 +0100
386
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
387
+ Completed 500 Internal Server Error in 0ms
388
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:14:10 +0100
389
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:14:45 +0100
390
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
391
+ Completed 500 Internal Server Error in 1ms
392
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:14:45 +0100
393
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:15:17 +0100
394
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:15:17 +0100
395
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
396
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (2.6ms)
397
+ Completed 200 OK in 15ms (Views: 14.8ms)
398
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:16:10 +0100
399
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:16:10 +0100
400
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
401
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (2.3ms)
402
+ Completed 200 OK in 15ms (Views: 14.4ms)
403
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:16:32 +0100
404
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:16:32 +0100
405
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
406
+ Completed 500 Internal Server Error in 0ms
407
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:16:58 +0100
408
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:16:58 +0100
409
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
410
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (2.6ms)
411
+ Completed 200 OK in 15ms (Views: 14.8ms)
412
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:17:17 +0100
413
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:17:17 +0100
414
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
415
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (1.8ms)
416
+ Completed 200 OK in 14ms (Views: 14.2ms)
417
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:17:30 +0100
418
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:17:30 +0100
419
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
420
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (1.8ms)
421
+ Completed 200 OK in 14ms (Views: 13.9ms)
422
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:18:00 +0100
423
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:18:00 +0100
424
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
425
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (1.7ms)
426
+ Completed 200 OK in 14ms (Views: 13.7ms)
427
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:34:18 +0100
428
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:34:18 +0100
429
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
430
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (2.1ms)
431
+ Completed 200 OK in 15ms (Views: 14.8ms)
432
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:34:19 +0100
433
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
434
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.1ms)
435
+ Completed 200 OK in 1ms (Views: 0.3ms)
436
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:35:15 +0100
437
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
438
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (1.7ms)
439
+ Completed 200 OK in 15ms (Views: 14.1ms)
440
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:35:56 +0100
441
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
442
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (1.9ms)
443
+ Completed 200 OK in 13ms (Views: 12.9ms)
444
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-22 17:36:58 +0100
445
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
446
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (1.7ms)
447
+ Completed 200 OK in 15ms (Views: 14.2ms)
448
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-05-22 17:38:43 +0100
449
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 17:38:43 +0100
450
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 17:38:43 +0100
451
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
452
+ Completed 500 Internal Server Error in 6ms
453
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 17:38:43 +0100
454
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
455
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/payment_request.xml.erb (1.8ms)
456
+ Completed 200 OK in 23ms (Views: 20.4ms)
457
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-22 17:38:43 +0100
458
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
459
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/refund_request.xml.erb (0.5ms)
460
+ Completed 200 OK in 8ms (Views: 4.2ms)
461
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 17:38:43 +0100
462
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
463
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
464
+ Completed 500 Internal Server Error in 1ms
465
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-22 17:38:43 +0100
466
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
467
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
468
+ Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
469
+ Completed 302 Found in 1ms
470
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-05-22 17:38:43 +0100
471
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
472
+ Parameters: {"successURL"=>"http://example.com/forthewin"}
473
+ Completed 500 Internal Server Error in 0ms
474
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-26 22:00:36 +0100
475
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
476
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
477
+ Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
478
+ Completed 302 Found in 1ms
479
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-05-26 22:00:48 +0100
480
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
481
+ Parameters: {"successURL"=>"http://example.com/forthewin"}
482
+ Completed 500 Internal Server Error in 0ms
483
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
484
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
485
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
486
+ Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
487
+ Completed 302 Found in 1ms
488
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
489
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
490
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
491
+ Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
492
+ Completed 302 Found in 0ms
493
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
494
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
495
+ Completed 500 Internal Server Error in 0ms
496
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
497
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
498
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/payment_request.xml.erb (2.1ms)
499
+ Completed 200 OK in 24ms (Views: 24.1ms)
500
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
501
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
502
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/refund_request.xml.erb (0.5ms)
503
+ Completed 200 OK in 5ms (Views: 4.4ms)
504
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
505
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
506
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
507
+ Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
87
508
  Processing by DefraRubyMocks::CompanyController#show as HTML
88
509
  Parameters: {"id"=>"99999999"}
89
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (3.8ms)
90
- Completed 404 Not Found in 36ms (Views: 35.8ms)
91
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:17:50 +0000
510
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.4ms)
511
+ Completed 404 Not Found in 14ms (Views: 13.3ms)
512
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
92
513
  Processing by DefraRubyMocks::CompanyController#show as HTML
93
514
  Parameters: {"id"=>"SC247974"}
94
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.8ms)
95
- Completed 200 OK in 10ms (Views: 9.0ms)
96
- Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:17:50 +0000
515
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
516
+ Completed 200 OK in 5ms (Views: 4.6ms)
517
+ Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
97
518
  Processing by DefraRubyMocks::CompanyController#show as HTML
98
519
  Parameters: {"id"=>"foo"}
99
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
100
- Completed 404 Not Found in 1ms (Views: 0.8ms)
101
- Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:17:50 +0000
520
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
521
+ Completed 404 Not Found in 1ms (Views: 0.4ms)
522
+ Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
102
523
  Processing by DefraRubyMocks::CompanyController#show as HTML
103
524
  Parameters: {"id"=>"05868270"}
104
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
105
- Completed 200 OK in 1ms (Views: 0.6ms)
106
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:31:03 +0000
107
- Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:31:03 +0000
525
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
526
+ Completed 200 OK in 0ms (Views: 0.3ms)
527
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
528
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
529
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
530
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.6ms)
531
+ Completed 200 OK in 6ms (Views: 5.5ms)
532
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:00:49 +0100
533
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
534
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.1ms)
535
+ Completed 200 OK in 1ms (Views: 0.4ms)
536
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
537
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
538
+ Parameters: {"successURL"=>"http://example.com/forthewin"}
539
+ IN DISPATCHER
540
+ ["/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:684:in `block in call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:683:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:683:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:422:in `invoke'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/proxy.rb:180:in `message_received'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/proxy.rb:327:in `message_received'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/verifying_proxy.rb:161:in `proxy_method_invoked'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'", "/Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/controllers/defra_ruby_mocks/worldpay_api_controller.rb:21:in `dispatcher'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/implicit_render.rb:4:in `send_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/abstract_controller/base.rb:198:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/rendering.rb:10:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:117:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:505:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:92:in `__run_callbacks__'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:81:in `run_callbacks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/rescue.rb:29:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/notifications.rb:164:in `block in instrument'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/notifications/instrumenter.rb:20:in `instrument'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/notifications.rb:164:in `instrument'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/instrumentation.rb:30:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/params_wrapper.rb:250:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/abstract_controller/base.rb:137:in `process'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionview-4.2.11.3/lib/action_view/rendering.rb:30:in `process'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal.rb:196:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal.rb:237:in `block in action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/route_set.rb:74:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/route_set.rb:43:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/mapper.rb:49:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:43:in `block in serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:30:in `each'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:30:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/route_set.rb:817:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/engine.rb:518:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/railtie.rb:194:in `public_send'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/railtie.rb:194:in `method_missing'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/mapper.rb:51:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:43:in `block in serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:30:in `each'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:30:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/route_set.rb:817:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/etag.rb:24:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/conditionalget.rb:25:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/head.rb:13:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/params_parser.rb:27:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/flash.rb:260:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/session/abstract/id.rb:252:in `context'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/session/abstract/id.rb:247:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/cookies.rb:560:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:88:in `__run_callbacks__'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:778:in `_run_call_callbacks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:81:in `run_callbacks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/callbacks.rb:27:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/remote_ip.rb:78:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/rack/logger.rb:38:in `call_app'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/rack/logger.rb:20:in `block in call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/tagged_logging.rb:68:in `block in tagged'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/tagged_logging.rb:26:in `tagged'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/tagged_logging.rb:68:in `tagged'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/rack/logger.rb:20:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/request_id.rb:21:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/methodoverride.rb:22:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/runtime.rb:18:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/lock.rb:17:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/static.rb:120:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/sendfile.rb:113:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/engine.rb:518:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/application.rb:165:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-test-0.6.3/lib/rack/test.rb:124:in `request'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/testing/integration.rb:297:in `process'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/testing/integration.rb:32:in `get'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/testing/integration.rb:346:in `block (2 levels) in <module:Runner>'", "/Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/spec/requests/worldpay_api_spec.rb:113:in `block (6 levels) in <module:DefraRubyMocks>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:257:in `instance_exec'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:257:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:503:in `block in with_around_and_singleton_context_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:460:in `block in with_around_example_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:345:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-rails-3.8.3/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:450:in `instance_exec'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:450:in `instance_exec'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:373:in `execute_with'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:345:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:464:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:460:in `with_around_example_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:503:in `with_around_and_singleton_context_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:254:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:633:in `block in run_examples'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:629:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:629:in `run_examples'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:595:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:116:in `block (3 levels) in run_specs'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:116:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:116:in `block (2 levels) in run_specs'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/configuration.rb:2008:in `with_suite_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:111:in `block in run_specs'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/reporter.rb:74:in `report'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:110:in `run_specs'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:87:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:71:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/exe/rspec:4:in `<top (required)>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/bin/rspec:23:in `load'", "/Users/acruikshanks/.rbenv/versions/2.4.2/bin/rspec:23:in `<top (required)>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli/exec.rb:74:in `load'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli/exec.rb:28:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli.rb:463:in `exec'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/vendor/thor/lib/thor.rb:387:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli.rb:27:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/vendor/thor/lib/thor/base.rb:466:in `start'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli.rb:18:in `start'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/exe/bundle:30:in `block in <top (required)>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/friendly_errors.rb:124:in `with_friendly_errors'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/exe/bundle:22:in `<top (required)>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/bin/bundle:23:in `load'", "/Users/acruikshanks/.rbenv/versions/2.4.2/bin/bundle:23:in `<main>'"]
541
+ Could not find resource: foo
542
+ Completed 500 Internal Server Error in 1ms
543
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
544
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
545
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
546
+ IN DISPATCHER
547
+ GOT A RESPONSE
548
+ CREATING STUCK COOKIE
549
+ GOING TO STUCK
550
+ Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
551
+ Completed 302 Found in 1ms
552
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
553
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
554
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
555
+ IN DISPATCHER
556
+ GOT A RESPONSE
557
+ Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
558
+ Completed 302 Found in 1ms
559
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
560
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
561
+ Completed 500 Internal Server Error in 5ms
562
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
563
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
564
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/payment_request.xml.erb (2.0ms)
565
+ Completed 200 OK in 22ms (Views: 21.7ms)
566
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
567
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
568
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/refund_request.xml.erb (0.5ms)
569
+ Completed 200 OK in 5ms (Views: 4.3ms)
570
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
571
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
572
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
573
+ Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
574
+ Processing by DefraRubyMocks::CompanyController#show as HTML
575
+ Parameters: {"id"=>"99999999"}
576
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.3ms)
577
+ Completed 404 Not Found in 13ms (Views: 13.0ms)
578
+ Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
108
579
  Processing by DefraRubyMocks::CompanyController#show as HTML
109
580
  Parameters: {"id"=>"foo"}
110
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (3.0ms)
111
- Completed 404 Not Found in 34ms (Views: 33.5ms)
112
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:31:03 +0000
581
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.0ms)
582
+ Completed 404 Not Found in 0ms (Views: 0.4ms)
583
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
113
584
  Processing by DefraRubyMocks::CompanyController#show as HTML
114
585
  Parameters: {"id"=>"SC247974"}
115
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
116
- Completed 200 OK in 5ms (Views: 4.8ms)
117
- Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:31:03 +0000
118
- Processing by DefraRubyMocks::CompanyController#show as HTML
119
- Parameters: {"id"=>"99999999"}
120
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
121
- Completed 404 Not Found in 1ms (Views: 0.5ms)
122
- Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:31:03 +0000
586
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
587
+ Completed 200 OK in 5ms (Views: 5.1ms)
588
+ Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
123
589
  Processing by DefraRubyMocks::CompanyController#show as HTML
124
590
  Parameters: {"id"=>"05868270"}
125
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
126
- Completed 200 OK in 1ms (Views: 0.5ms)
127
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:37:44 +0000
128
- Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:37:44 +0000
591
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
592
+ Completed 200 OK in 1ms (Views: 0.4ms)
593
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
594
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
595
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
596
+ GOT TO STUCK
597
+ {"supplied_url":"http://example.com/foobar","separator":"?","order_key":"ok","mac":"mc","value":15400,"status":"st","reference":"rf","url":"ul"}
598
+ RENDERING STUCK
599
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.6ms)
600
+ Completed 200 OK in 5ms (Views: 4.7ms)
601
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
602
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
603
+ GOT TO STUCK
604
+
605
+ RENDERING STUCK
606
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.0ms)
607
+ Completed 200 OK in 0ms (Views: 0.3ms)
608
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
609
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
610
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
611
+ IN DISPATCHER
612
+ GOT A RESPONSE
613
+ CREATING STUCK COOKIE
614
+ GOING TO STUCK
615
+ Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
616
+ Completed 302 Found in 1ms
617
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
618
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
619
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
620
+ IN DISPATCHER
621
+ GOT A RESPONSE
622
+ Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
623
+ Completed 302 Found in 1ms
624
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
625
+ Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
626
+ Parameters: {"successURL"=>"http://example.com/forthewin"}
627
+ IN DISPATCHER
628
+ ["/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:684:in `block in call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:683:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:683:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:422:in `invoke'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/proxy.rb:180:in `message_received'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/proxy.rb:327:in `message_received'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/verifying_proxy.rb:161:in `proxy_method_invoked'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'", "/Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/controllers/defra_ruby_mocks/worldpay_api_controller.rb:19:in `dispatcher'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/implicit_render.rb:4:in `send_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/abstract_controller/base.rb:198:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/rendering.rb:10:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:117:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:505:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:92:in `__run_callbacks__'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:81:in `run_callbacks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/rescue.rb:29:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/notifications.rb:164:in `block in instrument'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/notifications/instrumenter.rb:20:in `instrument'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/notifications.rb:164:in `instrument'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/instrumentation.rb:30:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/params_wrapper.rb:250:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/abstract_controller/base.rb:137:in `process'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionview-4.2.11.3/lib/action_view/rendering.rb:30:in `process'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal.rb:196:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal.rb:237:in `block in action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/route_set.rb:74:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/route_set.rb:43:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/mapper.rb:49:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:43:in `block in serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:30:in `each'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:30:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/route_set.rb:817:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/engine.rb:518:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/railtie.rb:194:in `public_send'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/railtie.rb:194:in `method_missing'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/mapper.rb:51:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:43:in `block in serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:30:in `each'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:30:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/route_set.rb:817:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/etag.rb:24:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/conditionalget.rb:25:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/head.rb:13:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/params_parser.rb:27:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/flash.rb:260:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/session/abstract/id.rb:252:in `context'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/session/abstract/id.rb:247:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/cookies.rb:560:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:88:in `__run_callbacks__'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:778:in `_run_call_callbacks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:81:in `run_callbacks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/callbacks.rb:27:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/remote_ip.rb:78:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/rack/logger.rb:38:in `call_app'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/rack/logger.rb:20:in `block in call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/tagged_logging.rb:68:in `block in tagged'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/tagged_logging.rb:26:in `tagged'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/tagged_logging.rb:68:in `tagged'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/rack/logger.rb:20:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/request_id.rb:21:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/methodoverride.rb:22:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/runtime.rb:18:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/lock.rb:17:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/static.rb:120:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/sendfile.rb:113:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/engine.rb:518:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/application.rb:165:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-test-0.6.3/lib/rack/test.rb:124:in `request'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/testing/integration.rb:297:in `process'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/testing/integration.rb:32:in `get'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/testing/integration.rb:346:in `block (2 levels) in <module:Runner>'", "/Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/spec/requests/worldpay_api_spec.rb:113:in `block (6 levels) in <module:DefraRubyMocks>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:257:in `instance_exec'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:257:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:503:in `block in with_around_and_singleton_context_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:460:in `block in with_around_example_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:345:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-rails-3.8.3/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:450:in `instance_exec'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:450:in `instance_exec'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:373:in `execute_with'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:345:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:464:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:460:in `with_around_example_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:503:in `with_around_and_singleton_context_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:254:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:633:in `block in run_examples'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:629:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:629:in `run_examples'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:595:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:116:in `block (3 levels) in run_specs'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:116:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:116:in `block (2 levels) in run_specs'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/configuration.rb:2008:in `with_suite_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:111:in `block in run_specs'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/reporter.rb:74:in `report'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:110:in `run_specs'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:87:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:71:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/exe/rspec:4:in `<top (required)>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/bin/rspec:23:in `load'", "/Users/acruikshanks/.rbenv/versions/2.4.2/bin/rspec:23:in `<top (required)>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli/exec.rb:74:in `load'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli/exec.rb:28:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli.rb:463:in `exec'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/vendor/thor/lib/thor.rb:387:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli.rb:27:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/vendor/thor/lib/thor/base.rb:466:in `start'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli.rb:18:in `start'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/exe/bundle:30:in `block in <top (required)>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/friendly_errors.rb:124:in `with_friendly_errors'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/exe/bundle:22:in `<top (required)>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/bin/bundle:23:in `load'", "/Users/acruikshanks/.rbenv/versions/2.4.2/bin/bundle:23:in `<main>'"]
629
+ Could not find resource: foo
630
+ Completed 500 Internal Server Error in 1ms
631
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
632
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
633
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/payment_request.xml.erb (1.8ms)
634
+ Completed 200 OK in 23ms (Views: 22.5ms)
635
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
636
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
637
+ Completed 500 Internal Server Error in 0ms
638
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
639
+ Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
640
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/refund_request.xml.erb (0.5ms)
641
+ Completed 200 OK in 4ms (Views: 3.7ms)
642
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
643
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
644
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
645
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
646
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
647
+ GOT TO STUCK
648
+ {"supplied_url":"http://example.com/foobar","separator":"?","order_key":"ok","mac":"mc","value":15400,"status":"st","reference":"rf","url":"ul"}
649
+ RENDERING STUCK
650
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.7ms)
651
+ Completed 200 OK in 6ms (Views: 5.5ms)
652
+ Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
653
+ Processing by DefraRubyMocks::WorldpayController#stuck as HTML
654
+ GOT TO STUCK
655
+
656
+ RENDERING STUCK
657
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.1ms)
658
+ Completed 200 OK in 1ms (Views: 0.3ms)
659
+ Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
660
+ Processing by DefraRubyMocks::CompanyController#show as HTML
661
+ Parameters: {"id"=>"foo"}
662
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.3ms)
663
+ Completed 404 Not Found in 13ms (Views: 12.7ms)
664
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
665
+ Processing by DefraRubyMocks::CompanyController#show as HTML
666
+ Parameters: {"id"=>"SC247974"}
667
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
668
+ Completed 200 OK in 5ms (Views: 4.8ms)
669
+ Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
129
670
  Processing by DefraRubyMocks::CompanyController#show as HTML
130
671
  Parameters: {"id"=>"99999999"}
131
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (3.0ms)
132
- Completed 404 Not Found in 30ms (Views: 30.0ms)
133
- Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:37:44 +0000
672
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
673
+ Completed 404 Not Found in 1ms (Views: 0.4ms)
674
+ Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
134
675
  Processing by DefraRubyMocks::CompanyController#show as HTML
135
676
  Parameters: {"id"=>"05868270"}
136
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
677
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
678
+ Completed 200 OK in 1ms (Views: 0.4ms)
679
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
680
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
681
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
682
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
683
+ Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
684
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
685
+ Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
686
+ Completed 302 Found in 1ms
687
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
688
+ Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
689
+ Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
690
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (21.6ms)
691
+ Completed 200 OK in 43ms (Views: 42.8ms)
692
+ Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
693
+ Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
694
+ Parameters: {"successURL"=>"http://example.com/forthewin"}
695
+ Completed 500 Internal Server Error in 0ms
696
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
697
+ Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
698
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (0.7ms)
699
+ Completed 200 OK in 13ms (Views: 12.1ms)
700
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
701
+ Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
702
+ Completed 500 Internal Server Error in 0ms
703
+ Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
704
+ Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
705
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (0.6ms)
137
706
  Completed 200 OK in 5ms (Views: 4.5ms)
138
- Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:37:44 +0000
707
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
708
+ Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
139
709
  Processing by DefraRubyMocks::CompanyController#show as HTML
140
- Parameters: {"id"=>"foo"}
141
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
142
- Completed 404 Not Found in 1ms (Views: 0.5ms)
143
- Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:37:44 +0000
710
+ Parameters: {"id"=>"05868270"}
711
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
712
+ Completed 200 OK in 33ms (Views: 32.7ms)
713
+ Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
714
+ Processing by DefraRubyMocks::CompanyController#show as HTML
715
+ Parameters: {"id"=>"99999999"}
716
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.4ms)
717
+ Completed 404 Not Found in 5ms (Views: 4.6ms)
718
+ Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
144
719
  Processing by DefraRubyMocks::CompanyController#show as HTML
145
720
  Parameters: {"id"=>"SC247974"}
146
- Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
721
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
147
722
  Completed 200 OK in 1ms (Views: 0.4ms)
723
+ Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
724
+ Processing by DefraRubyMocks::CompanyController#show as HTML
725
+ Parameters: {"id"=>"foo"}
726
+ Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
727
+ Completed 404 Not Found in 1ms (Views: 0.5ms)