defra_ruby_mocks 1.1.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/README.md +52 -2
- data/Rakefile +0 -2
- data/app/controllers/defra_ruby_mocks/company_controller.rb +1 -1
- data/app/controllers/defra_ruby_mocks/worldpay_controller.rb +33 -12
- data/app/services/defra_ruby_mocks/{worldpay_request_service.rb → worldpay_payment_service.rb} +3 -9
- data/app/services/defra_ruby_mocks/worldpay_refund_service.rb +37 -0
- data/app/services/defra_ruby_mocks/worldpay_request_handler_service.rb +40 -0
- data/app/services/defra_ruby_mocks/worldpay_resource_service.rb +55 -0
- data/app/services/defra_ruby_mocks/worldpay_response_service.rb +71 -52
- data/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb +4 -0
- data/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb +4 -0
- data/app/views/defra_ruby_mocks/worldpay/stuck.html.erb +37 -0
- data/lib/defra_ruby_mocks/engine.rb +2 -1
- data/lib/defra_ruby_mocks/missing_resource_error.rb +9 -0
- data/lib/defra_ruby_mocks/unrecognised_worldpay_request_error.rb +5 -0
- data/lib/defra_ruby_mocks/version.rb +1 -1
- data/spec/dummy/log/development.log +180 -0
- data/spec/dummy/log/test.log +1287 -323
- data/spec/examples.txt +99 -56
- data/spec/fixtures/{worldpay_request_invalid.xml → payment_request_invalid.xml} +0 -0
- data/spec/fixtures/{worldpay_request_valid.xml → payment_request_valid.xml} +0 -0
- data/spec/fixtures/refund_request_invalid.xml +6 -0
- data/spec/fixtures/refund_request_valid.xml +11 -0
- data/spec/fixtures/unrecognised_request.xml +6 -0
- data/spec/requests/worldpay_spec.rb +87 -26
- data/spec/services/{worldpay_request_service_spec.rb → worldpay_payment_service_spec.rb} +25 -22
- data/spec/services/worldpay_refund_service_spec.rb +68 -0
- data/spec/services/worldpay_request_handler_service_spec.rb +79 -0
- data/spec/services/worldpay_resource_service_spec.rb +112 -0
- data/spec/services/worldpay_response_service_spec.rb +185 -58
- data/spec/support/helpers/xml_matchers.rb +19 -0
- metadata +50 -17
- data/app/views/defra_ruby_mocks/worldpay/payments_service.xml.erb +0 -4
- data/lib/defra_ruby_mocks/missing_registration_error.rb +0 -9
@@ -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>
|
@@ -2,7 +2,8 @@
|
|
2
2
|
|
3
3
|
require_relative "configuration"
|
4
4
|
require_relative "invalid_config_error"
|
5
|
-
require_relative "
|
5
|
+
require_relative "missing_resource_error"
|
6
|
+
require_relative "unrecognised_worldpay_request_error"
|
6
7
|
|
7
8
|
module DefraRubyMocks
|
8
9
|
class Engine < ::Rails::Engine
|
@@ -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)
|
data/spec/dummy/log/test.log
CHANGED
@@ -1,479 +1,1443 @@
|
|
1
|
-
Started GET "/defra_ruby_mocks/
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
Completed
|
12
|
-
Started GET "/defra_ruby_mocks/
|
13
|
-
Processing by DefraRubyMocks::
|
14
|
-
Parameters: {"
|
15
|
-
|
16
|
-
|
17
|
-
|
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/
|
21
|
-
Completed 200 OK in
|
22
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at
|
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/
|
26
|
-
Completed 404 Not Found in
|
27
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at
|
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/
|
31
|
-
Completed 200 OK in
|
32
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at
|
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/
|
36
|
-
Completed 404 Not Found in
|
37
|
-
Started GET "/defra_ruby_mocks/
|
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/
|
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/
|
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/
|
47
|
-
Completed 404 Not Found in
|
48
|
-
Started GET "/defra_ruby_mocks/company/
|
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"=>"
|
56
|
-
Rendered /Users/acruikshanks/projects/
|
57
|
-
Completed
|
58
|
-
Started GET "/defra_ruby_mocks/company/
|
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/
|
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
|
64
|
-
|
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/
|
68
|
-
Completed 404 Not Found in
|
69
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at
|
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/
|
73
|
-
Completed 200 OK in
|
74
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at
|
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/
|
78
|
-
Completed 404 Not Found in
|
79
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at
|
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/
|
83
|
-
Completed 200 OK in
|
84
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at
|
85
|
-
Started GET "/defra_ruby_mocks/
|
86
|
-
|
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/
|
90
|
-
Completed 404 Not Found in
|
91
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at
|
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/
|
95
|
-
Completed 200 OK in
|
96
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at
|
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
|
518
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
519
|
+
Parameters: {"id"=>"foo"}
|
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
|
523
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
524
|
+
Parameters: {"id"=>"05868270"}
|
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
|
97
579
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
98
580
|
Parameters: {"id"=>"foo"}
|
99
|
-
Rendered /Users/acruikshanks/projects/
|
100
|
-
Completed 404 Not Found in
|
101
|
-
Started GET "/defra_ruby_mocks/company/
|
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
|
584
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
585
|
+
Parameters: {"id"=>"SC247974"}
|
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
|
102
589
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
103
590
|
Parameters: {"id"=>"05868270"}
|
104
|
-
Rendered /Users/acruikshanks/projects/
|
105
|
-
Completed 200 OK in 1ms (Views: 0.
|
106
|
-
Started GET "/defra_ruby_mocks/
|
107
|
-
Started GET "/defra_ruby_mocks/
|
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
|
108
660
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
109
661
|
Parameters: {"id"=>"foo"}
|
110
|
-
Rendered /Users/acruikshanks/projects/
|
111
|
-
Completed 404 Not Found in
|
112
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at
|
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
|
113
665
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
114
666
|
Parameters: {"id"=>"SC247974"}
|
115
|
-
Rendered /Users/acruikshanks/projects/
|
667
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
|
116
668
|
Completed 200 OK in 5ms (Views: 4.8ms)
|
117
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at
|
669
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
118
670
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
119
671
|
Parameters: {"id"=>"99999999"}
|
120
|
-
Rendered /Users/acruikshanks/projects/
|
121
|
-
Completed 404 Not Found in 1ms (Views: 0.
|
122
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at
|
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
|
123
675
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
124
676
|
Parameters: {"id"=>"05868270"}
|
125
|
-
Rendered /Users/acruikshanks/projects/
|
126
|
-
Completed 200 OK in 1ms (Views: 0.
|
127
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at
|
128
|
-
Started GET "/defra_ruby_mocks/
|
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)
|
706
|
+
Completed 200 OK in 5ms (Views: 4.5ms)
|
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
|
709
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
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
|
129
714
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
130
715
|
Parameters: {"id"=>"99999999"}
|
131
|
-
Rendered /Users/acruikshanks/projects/
|
132
|
-
Completed 404 Not Found in
|
133
|
-
Started GET "/defra_ruby_mocks/company/
|
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
|
719
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
720
|
+
Parameters: {"id"=>"SC247974"}
|
721
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
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)
|
728
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
729
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
730
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
731
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
732
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
733
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
734
|
+
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-04 21:44:12 +0100
|
735
|
+
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-04 21:44:12 +0100
|
736
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
737
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
134
738
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
135
739
|
Parameters: {"id"=>"05868270"}
|
136
|
-
Rendered /Users/acruikshanks/projects/
|
137
|
-
Completed 200 OK in
|
138
|
-
Started GET "/defra_ruby_mocks/company/
|
740
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (10.5ms)
|
741
|
+
Completed 200 OK in 32ms (Views: 31.8ms)
|
742
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
743
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
744
|
+
Parameters: {"id"=>"99999999"}
|
745
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.4ms)
|
746
|
+
Completed 404 Not Found in 4ms (Views: 4.3ms)
|
747
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
139
748
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
140
749
|
Parameters: {"id"=>"foo"}
|
141
|
-
Rendered /Users/acruikshanks/projects/
|
750
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
142
751
|
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
143
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at
|
752
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
144
753
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
145
754
|
Parameters: {"id"=>"SC247974"}
|
146
|
-
Rendered /Users/acruikshanks/projects/
|
755
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
756
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
757
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
758
|
+
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
759
|
+
Completed 500 Internal Server Error in 11ms
|
760
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
761
|
+
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
762
|
+
Completed 500 Internal Server Error in 0ms
|
763
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
764
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
765
|
+
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
766
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (2.3ms)
|
767
|
+
Completed 200 OK in 17ms (Views: 16.3ms)
|
768
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
769
|
+
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
770
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.1ms)
|
147
771
|
Completed 200 OK in 1ms (Views: 0.4ms)
|
148
|
-
Started GET "/defra_ruby_mocks/
|
772
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
773
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
774
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
775
|
+
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-04 21:45:57 +0100
|
776
|
+
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-04 21:45:57 +0100
|
777
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
778
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
779
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
780
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
781
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
149
782
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
150
783
|
Parameters: {"id"=>"05868270"}
|
151
|
-
Rendered /Users/acruikshanks/projects/
|
152
|
-
Completed 200 OK in
|
153
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-
|
784
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
|
785
|
+
Completed 200 OK in 13ms (Views: 12.3ms)
|
786
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
154
787
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
155
788
|
Parameters: {"id"=>"foo"}
|
156
|
-
Rendered /Users/acruikshanks/projects/
|
157
|
-
Completed 404 Not Found in
|
158
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-
|
789
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.4ms)
|
790
|
+
Completed 404 Not Found in 18ms (Views: 18.2ms)
|
791
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
159
792
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
160
793
|
Parameters: {"id"=>"SC247974"}
|
161
|
-
Rendered /Users/acruikshanks/projects/
|
794
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
162
795
|
Completed 200 OK in 1ms (Views: 0.4ms)
|
163
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-
|
796
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
164
797
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
165
798
|
Parameters: {"id"=>"99999999"}
|
166
|
-
Rendered /Users/acruikshanks/projects/
|
799
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.0ms)
|
800
|
+
Completed 404 Not Found in 0ms (Views: 0.4ms)
|
801
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
802
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
803
|
+
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
804
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (1.8ms)
|
805
|
+
Completed 200 OK in 14ms (Views: 13.6ms)
|
806
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
807
|
+
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
808
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.1ms)
|
809
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
810
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
811
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
812
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
813
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
814
|
+
Parameters: {"id"=>"99999999"}
|
815
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.4ms)
|
816
|
+
Completed 404 Not Found in 14ms (Views: 13.5ms)
|
817
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
818
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
819
|
+
Parameters: {"id"=>"foo"}
|
820
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
167
821
|
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
168
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
822
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
823
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
824
|
+
Parameters: {"id"=>"SC247974"}
|
825
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
|
826
|
+
Completed 200 OK in 4ms (Views: 4.2ms)
|
827
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
828
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
829
|
+
Parameters: {"id"=>"05868270"}
|
830
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
831
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
832
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
833
|
+
Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
|
834
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/refund_request.xml.erb (0.5ms)
|
835
|
+
Completed 200 OK in 15ms (Views: 14.0ms)
|
836
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
837
|
+
Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
|
838
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/payment_request.xml.erb (0.5ms)
|
839
|
+
Completed 200 OK in 17ms (Views: 16.5ms)
|
840
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
841
|
+
Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
|
173
842
|
Completed 500 Internal Server Error in 0ms
|
174
|
-
Started GET "/defra_ruby_mocks/worldpay/
|
175
|
-
Processing by DefraRubyMocks::
|
176
|
-
|
177
|
-
Completed
|
178
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%
|
179
|
-
Processing by DefraRubyMocks::
|
180
|
-
Parameters: {"successURL"=>"http://example.com/
|
181
|
-
Redirected to http://example.com/
|
843
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
844
|
+
Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
|
845
|
+
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
846
|
+
Completed 500 Internal Server Error in 0ms
|
847
|
+
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-04 21:46:38 +0100
|
848
|
+
Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
|
849
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
850
|
+
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
182
851
|
Completed 302 Found in 1ms
|
183
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-
|
184
|
-
Processing by DefraRubyMocks::
|
852
|
+
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-04 21:46:38 +0100
|
853
|
+
Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
|
854
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
855
|
+
Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
|
856
|
+
Completed 302 Found in 1ms
|
857
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
858
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:46:38 +0100
|
859
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
860
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
861
|
+
Parameters: {"id"=>"05868270"}
|
862
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (1.7ms)
|
863
|
+
Completed 200 OK in 21ms (Views: 20.5ms)
|
864
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
865
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
866
|
+
Parameters: {"id"=>"99999999"}
|
867
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.4ms)
|
868
|
+
Completed 404 Not Found in 13ms (Views: 13.2ms)
|
869
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
870
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
871
|
+
Parameters: {"id"=>"foo"}
|
872
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
873
|
+
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
874
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
875
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
876
|
+
Parameters: {"id"=>"SC247974"}
|
877
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
878
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
879
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
880
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
881
|
+
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
882
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.7ms)
|
883
|
+
Completed 200 OK in 6ms (Views: 5.8ms)
|
884
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
885
|
+
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
886
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.1ms)
|
887
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
888
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
889
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
890
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
891
|
+
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-04 21:47:00 +0100
|
892
|
+
Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
|
893
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
894
|
+
Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
|
895
|
+
Completed 302 Found in 1ms
|
896
|
+
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-04 21:47:00 +0100
|
897
|
+
Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
|
185
898
|
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
186
899
|
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
187
900
|
Completed 302 Found in 1ms
|
188
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-
|
189
|
-
Processing by DefraRubyMocks::
|
901
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
902
|
+
Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
|
190
903
|
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
191
904
|
Completed 500 Internal Server Error in 0ms
|
192
|
-
Started GET "/defra_ruby_mocks/worldpay/
|
193
|
-
Processing by DefraRubyMocks::
|
194
|
-
|
905
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
906
|
+
Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
|
907
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/refund_request.xml.erb (0.5ms)
|
908
|
+
Completed 200 OK in 14ms (Views: 14.0ms)
|
909
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
910
|
+
Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
|
911
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/payment_request.xml.erb (0.4ms)
|
912
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
913
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:47:00 +0100
|
914
|
+
Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
|
195
915
|
Completed 500 Internal Server Error in 0ms
|
196
|
-
Started GET "/defra_ruby_mocks/company/
|
197
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
916
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
198
917
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
199
|
-
Parameters: {"id"=>"
|
200
|
-
Rendered /Users/acruikshanks/projects/
|
201
|
-
Completed 404 Not Found in
|
202
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-
|
918
|
+
Parameters: {"id"=>"99999999"}
|
919
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (11.5ms)
|
920
|
+
Completed 404 Not Found in 31ms (Views: 31.0ms)
|
921
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
203
922
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
204
923
|
Parameters: {"id"=>"SC247974"}
|
205
|
-
Rendered /Users/acruikshanks/projects/
|
206
|
-
Completed 200 OK in
|
207
|
-
Started GET "/defra_ruby_mocks/company/
|
924
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.3ms)
|
925
|
+
Completed 200 OK in 4ms (Views: 3.7ms)
|
926
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
927
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
928
|
+
Parameters: {"id"=>"foo"}
|
929
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
930
|
+
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
931
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
208
932
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
209
933
|
Parameters: {"id"=>"05868270"}
|
210
|
-
Rendered /Users/acruikshanks/projects/
|
211
|
-
Completed 200 OK in 1ms (Views: 0.
|
212
|
-
Started GET "/defra_ruby_mocks/company/
|
934
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
935
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
936
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
937
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
938
|
+
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
939
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.7ms)
|
940
|
+
Completed 200 OK in 15ms (Views: 14.2ms)
|
941
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
942
|
+
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
943
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.1ms)
|
944
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
945
|
+
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
946
|
+
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-04 21:47:16 +0100
|
947
|
+
Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
|
948
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
949
|
+
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
950
|
+
Completed 302 Found in 1ms
|
951
|
+
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-04 21:47:16 +0100
|
952
|
+
Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
|
953
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
954
|
+
Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
|
955
|
+
Completed 302 Found in 1ms
|
956
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
957
|
+
Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
|
958
|
+
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
959
|
+
Completed 500 Internal Server Error in 0ms
|
960
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
961
|
+
Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
|
962
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/refund_request.xml.erb (0.5ms)
|
963
|
+
Completed 200 OK in 13ms (Views: 12.8ms)
|
964
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
965
|
+
Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
|
966
|
+
Completed 500 Internal Server Error in 0ms
|
967
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
968
|
+
Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
|
969
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/payment_request.xml.erb (0.5ms)
|
970
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
971
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
972
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
973
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-06-05 10:58:38 +0100
|
974
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
975
|
+
Parameters: {"id"=>"foo"}
|
976
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (1.8ms)
|
977
|
+
Completed 404 Not Found in 30ms (Views: 29.6ms)
|
978
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-05 10:58:38 +0100
|
979
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
980
|
+
Parameters: {"id"=>"SC247974"}
|
981
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.3ms)
|
982
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
983
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-05 10:58:38 +0100
|
213
984
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
214
985
|
Parameters: {"id"=>"99999999"}
|
215
|
-
Rendered /Users/acruikshanks/projects/
|
216
|
-
Completed 404 Not Found in 1ms (Views: 0.
|
217
|
-
Started GET "/defra_ruby_mocks/
|
986
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
987
|
+
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
988
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-06-05 10:58:38 +0100
|
989
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
990
|
+
Parameters: {"id"=>"05868270"}
|
991
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
992
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
993
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-05 10:58:38 +0100
|
994
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 10:58:38 +0100
|
995
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-05 10:58:38 +0100
|
996
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 10:58:38 +0100
|
218
997
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
219
|
-
|
220
|
-
|
998
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (0.4ms)
|
999
|
+
Completed 200 OK in 14ms (Views: 13.4ms)
|
1000
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 10:58:38 +0100
|
221
1001
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
222
|
-
Rendered /Users/acruikshanks/projects/
|
223
|
-
Completed 200 OK in
|
224
|
-
Started GET "/defra_ruby_mocks/worldpay/
|
1002
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (0.4ms)
|
1003
|
+
Completed 200 OK in 6ms (Views: 5.2ms)
|
1004
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 10:58:38 +0100
|
1005
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1006
|
+
Completed 500 Internal Server Error in 0ms
|
1007
|
+
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-05 10:58:38 +0100
|
225
1008
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
226
1009
|
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
227
|
-
|
228
|
-
|
1010
|
+
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
1011
|
+
Completed 302 Found in 0ms
|
1012
|
+
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-05 10:58:38 +0100
|
1013
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1014
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
1015
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.7ms)
|
1016
|
+
Completed 200 OK in 6ms (Views: 5.2ms)
|
1017
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-06-05 10:58:38 +0100
|
229
1018
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
230
1019
|
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
231
1020
|
Completed 500 Internal Server Error in 0ms
|
232
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%
|
1021
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-06-05 11:08:07 +0100
|
233
1022
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
234
|
-
Parameters: {"successURL"=>"http://example.com/
|
235
|
-
|
236
|
-
|
237
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
1023
|
+
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
1024
|
+
Completed 500 Internal Server Error in 0ms
|
1025
|
+
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-05 11:08:07 +0100
|
238
1026
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
239
1027
|
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
240
1028
|
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
241
1029
|
Completed 302 Found in 1ms
|
242
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
Parameters: {"id"=>"foo"}
|
253
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.5ms)
|
254
|
-
Completed 404 Not Found in 5ms (Views: 5.3ms)
|
255
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
256
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
257
|
-
Parameters: {"id"=>"05868270"}
|
258
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
259
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
260
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
261
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
262
|
-
Parameters: {"id"=>"99999999"}
|
263
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
264
|
-
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
265
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
1030
|
+
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-05 11:08:07 +0100
|
1031
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1032
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
1033
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (1.9ms)
|
1034
|
+
Completed 200 OK in 14ms (Views: 13.1ms)
|
1035
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-06-05 11:13:31 +0100
|
1036
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1037
|
+
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
1038
|
+
Completed 500 Internal Server Error in 1ms
|
1039
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-06-05 11:14:51 +0100
|
266
1040
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
267
1041
|
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
268
1042
|
Completed 500 Internal Server Error in 0ms
|
269
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-
|
1043
|
+
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-05 11:14:52 +0100
|
1044
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1045
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
1046
|
+
Completed 500 Internal Server Error in 14ms
|
1047
|
+
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-05 11:14:52 +0100
|
270
1048
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
271
1049
|
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
1050
|
+
Completed 500 Internal Server Error in 1ms
|
1051
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-06-05 11:15:56 +0100
|
1052
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1053
|
+
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
272
1054
|
Completed 500 Internal Server Error in 0ms
|
273
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%
|
1055
|
+
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-05 11:15:56 +0100
|
274
1056
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
275
|
-
Parameters: {"successURL"=>"http://example.com/
|
276
|
-
|
277
|
-
|
278
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
1057
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
1058
|
+
Completed 500 Internal Server Error in 18ms
|
1059
|
+
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-05 11:15:56 +0100
|
279
1060
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
280
1061
|
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
1062
|
+
Completed 500 Internal Server Error in 1ms
|
1063
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending" for 127.0.0.1 at 2020-06-05 11:19:53 +0100
|
1064
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1065
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending"}
|
1066
|
+
Completed 500 Internal Server Error in 21ms
|
1067
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending" for 127.0.0.1 at 2020-06-05 11:19:53 +0100
|
1068
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1069
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending"}
|
1070
|
+
Completed 500 Internal Server Error in 1ms
|
1071
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending" for 127.0.0.1 at 2020-06-05 11:19:53 +0100
|
1072
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1073
|
+
Parameters: {"successURL"=>"http://example.com/forthewin", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending"}
|
1074
|
+
Completed 500 Internal Server Error in 0ms
|
1075
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending" for 127.0.0.1 at 2020-06-05 11:20:33 +0100
|
1076
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1077
|
+
Parameters: {"successURL"=>"http://example.com/forthewin", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending"}
|
1078
|
+
Completed 500 Internal Server Error in 0ms
|
1079
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending" for 127.0.0.1 at 2020-06-05 11:20:33 +0100
|
1080
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1081
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending"}
|
1082
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (2.2ms)
|
1083
|
+
Completed 200 OK in 14ms (Views: 13.2ms)
|
1084
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending" for 127.0.0.1 at 2020-06-05 11:20:33 +0100
|
1085
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1086
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending"}
|
281
1087
|
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
282
1088
|
Completed 302 Found in 1ms
|
283
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-
|
1089
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
284
1090
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
285
|
-
Rendered /Users/acruikshanks/projects/
|
286
|
-
Completed 200 OK in
|
287
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-
|
1091
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (1.8ms)
|
1092
|
+
Completed 200 OK in 22ms (Views: 21.1ms)
|
1093
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
288
1094
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
289
1095
|
Completed 500 Internal Server Error in 0ms
|
290
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-
|
291
|
-
|
292
|
-
|
293
|
-
|
1096
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
1097
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1098
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (0.5ms)
|
1099
|
+
Completed 200 OK in 6ms (Views: 5.1ms)
|
1100
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
1101
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1102
|
+
Parameters: {"successURL"=>"http://example.com/forthewin", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending"}
|
1103
|
+
Completed 500 Internal Server Error in 0ms
|
1104
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
1105
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1106
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending"}
|
1107
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.7ms)
|
1108
|
+
Completed 200 OK in 5ms (Views: 4.3ms)
|
1109
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
1110
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1111
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending"}
|
1112
|
+
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
1113
|
+
Completed 302 Found in 0ms
|
1114
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
1115
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
1116
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
1117
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
294
1118
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
295
|
-
Parameters: {"id"=>"
|
296
|
-
Rendered /Users/acruikshanks/projects/
|
297
|
-
Completed 404 Not Found in
|
298
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-
|
1119
|
+
Parameters: {"id"=>"foo"}
|
1120
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.4ms)
|
1121
|
+
Completed 404 Not Found in 13ms (Views: 12.8ms)
|
1122
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
299
1123
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
300
1124
|
Parameters: {"id"=>"SC247974"}
|
301
|
-
Rendered /Users/acruikshanks/projects/
|
302
|
-
Completed 200 OK in
|
303
|
-
Started GET "/defra_ruby_mocks/company/
|
304
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
305
|
-
Parameters: {"id"=>"foo"}
|
306
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
307
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
308
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
1125
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.3ms)
|
1126
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
1127
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
309
1128
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
310
1129
|
Parameters: {"id"=>"05868270"}
|
311
|
-
Rendered /Users/acruikshanks/projects/
|
312
|
-
Completed 200 OK in 1ms (Views: 0.
|
313
|
-
Started GET "/defra_ruby_mocks/
|
314
|
-
|
315
|
-
|
1130
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
1131
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
1132
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
1133
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1134
|
+
Parameters: {"id"=>"99999999"}
|
1135
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
1136
|
+
Completed 404 Not Found in 0ms (Views: 0.3ms)
|
1137
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:53:10 +0100
|
1138
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-05 11:53:10 +0100
|
1139
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:53:10 +0100
|
1140
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1141
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (3.2ms)
|
1142
|
+
Completed 200 OK in 28ms (Views: 23.7ms)
|
1143
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:53:10 +0100
|
1144
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1145
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (0.5ms)
|
1146
|
+
Completed 200 OK in 6ms (Views: 4.9ms)
|
1147
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:53:10 +0100
|
1148
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1149
|
+
Completed 500 Internal Server Error in 0ms
|
1150
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel" for 127.0.0.1 at 2020-06-05 11:53:10 +0100
|
316
1151
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
317
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
1152
|
+
Parameters: {"successURL"=>"http://example.com/forthewin", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel"}
|
318
1153
|
Completed 500 Internal Server Error in 0ms
|
319
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-
|
1154
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel" for 127.0.0.1 at 2020-06-05 11:53:10 +0100
|
320
1155
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
321
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
1156
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel"}
|
1157
|
+
Completed 500 Internal Server Error in 22ms
|
1158
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel" for 127.0.0.1 at 2020-06-05 11:53:10 +0100
|
1159
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1160
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel"}
|
322
1161
|
Completed 500 Internal Server Error in 1ms
|
323
|
-
Started GET "/defra_ruby_mocks/worldpay/
|
1162
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:53:59 +0100
|
1163
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-05 11:53:59 +0100
|
1164
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel" for 127.0.0.1 at 2020-06-05 11:53:59 +0100
|
324
1165
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
325
|
-
Parameters: {"successURL"=>"http://example.com/
|
326
|
-
|
327
|
-
Completed
|
328
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-
|
1166
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel"}
|
1167
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (2.0ms)
|
1168
|
+
Completed 200 OK in 15ms (Views: 14.5ms)
|
1169
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel" for 127.0.0.1 at 2020-06-05 11:53:59 +0100
|
329
1170
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
330
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
1171
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel"}
|
331
1172
|
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
332
|
-
Completed 302 Found in
|
333
|
-
Started GET "/defra_ruby_mocks/worldpay/
|
1173
|
+
Completed 302 Found in 0ms
|
1174
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel" for 127.0.0.1 at 2020-06-05 11:53:59 +0100
|
1175
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1176
|
+
Parameters: {"successURL"=>"http://example.com/forthewin", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel"}
|
1177
|
+
Completed 500 Internal Server Error in 0ms
|
1178
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:53:59 +0100
|
334
1179
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
335
|
-
|
336
|
-
|
1180
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (0.5ms)
|
1181
|
+
Completed 200 OK in 15ms (Views: 12.2ms)
|
1182
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:53:59 +0100
|
337
1183
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
338
|
-
Rendered /Users/acruikshanks/projects/
|
339
|
-
Completed 200 OK in
|
340
|
-
Started GET "/defra_ruby_mocks/
|
341
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
342
|
-
Parameters: {"id"=>"SC247974"}
|
343
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (2.8ms)
|
344
|
-
Completed 200 OK in 31ms (Views: 30.5ms)
|
345
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
346
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
347
|
-
Parameters: {"id"=>"foo"}
|
348
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.3ms)
|
349
|
-
Completed 404 Not Found in 5ms (Views: 4.4ms)
|
350
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
351
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
352
|
-
Parameters: {"id"=>"05868270"}
|
353
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
354
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
355
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
356
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
357
|
-
Parameters: {"id"=>"99999999"}
|
358
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
359
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
360
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
361
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
362
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
363
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
1184
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (0.5ms)
|
1185
|
+
Completed 200 OK in 7ms (Views: 5.0ms)
|
1186
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:53:59 +0100
|
364
1187
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
365
1188
|
Completed 500 Internal Server Error in 0ms
|
366
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-
|
1189
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 13:37:05 +0100
|
1190
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1191
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (8.7ms)
|
1192
|
+
Completed 200 OK in 31ms (Views: 27.8ms)
|
1193
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 13:37:05 +0100
|
1194
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1195
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (0.5ms)
|
1196
|
+
Completed 200 OK in 6ms (Views: 4.8ms)
|
1197
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 13:37:05 +0100
|
367
1198
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
368
|
-
|
369
|
-
|
370
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
1199
|
+
Completed 500 Internal Server Error in 0ms
|
1200
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel" for 127.0.0.1 at 2020-06-05 13:37:05 +0100
|
371
1201
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
372
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/
|
373
|
-
|
374
|
-
|
375
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fyour-registration%2F12345%2Fworldpay%2Fsuccess%2F54321%2FNEWREG%3Flocale%3Den" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
1202
|
+
Parameters: {"successURL"=>"http://example.com/forthewin", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel"}
|
1203
|
+
Completed 500 Internal Server Error in 0ms
|
1204
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel" for 127.0.0.1 at 2020-06-05 13:37:05 +0100
|
376
1205
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
377
|
-
Parameters: {"successURL"=>"http://example.com/
|
378
|
-
Redirected to http://example.com/
|
1206
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel"}
|
1207
|
+
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
379
1208
|
Completed 302 Found in 1ms
|
380
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%
|
1209
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel" for 127.0.0.1 at 2020-06-05 13:37:05 +0100
|
381
1210
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
382
|
-
Parameters: {"successURL"=>"http://example.com/
|
383
|
-
|
384
|
-
|
385
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-
|
386
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-
|
1211
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel"}
|
1212
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.8ms)
|
1213
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
1214
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-05 13:37:05 +0100
|
1215
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 13:37:05 +0100
|
1216
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-05 15:11:40 +0100
|
1217
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:11:40 +0100
|
1218
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:11:40 +0100
|
387
1219
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
388
|
-
Rendered /Users/acruikshanks/projects/
|
389
|
-
Completed 200 OK in
|
390
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-
|
1220
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (1.7ms)
|
1221
|
+
Completed 200 OK in 30ms (Views: 20.9ms)
|
1222
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:11:40 +0100
|
1223
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1224
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (0.5ms)
|
1225
|
+
Completed 200 OK in 6ms (Views: 5.0ms)
|
1226
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:11:40 +0100
|
391
1227
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
392
1228
|
Completed 500 Internal Server Error in 0ms
|
393
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%
|
1229
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel" for 127.0.0.1 at 2020-06-05 15:11:40 +0100
|
394
1230
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
395
|
-
Parameters: {"successURL"=>"http://example.com/
|
1231
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel"}
|
1232
|
+
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
1233
|
+
Completed 302 Found in 1ms
|
1234
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel" for 127.0.0.1 at 2020-06-05 15:11:40 +0100
|
1235
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1236
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel"}
|
1237
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.6ms)
|
1238
|
+
Completed 200 OK in 4ms (Views: 3.7ms)
|
1239
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel" for 127.0.0.1 at 2020-06-05 15:11:40 +0100
|
1240
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1241
|
+
Parameters: {"successURL"=>"http://example.com/forthewin", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel"}
|
396
1242
|
Completed 500 Internal Server Error in 0ms
|
397
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher
|
1243
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-05 15:13:25 +0100
|
1244
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:13:25 +0100
|
1245
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:13:25 +0100
|
398
1246
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
399
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/
|
1247
|
+
Parameters: {"successURL"=>"http://example.com/forthewin", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
1248
|
+
Completed 500 Internal Server Error in 0ms
|
1249
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:13:25 +0100
|
1250
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1251
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
1252
|
+
Completed 500 Internal Server Error in 25ms
|
1253
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:13:25 +0100
|
1254
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1255
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
1256
|
+
Completed 500 Internal Server Error in 3ms
|
1257
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:13:25 +0100
|
1258
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1259
|
+
Completed 500 Internal Server Error in 2ms
|
1260
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:13:25 +0100
|
1261
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1262
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (2.1ms)
|
1263
|
+
Completed 200 OK in 33ms (Views: 31.5ms)
|
1264
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:13:25 +0100
|
1265
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1266
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (0.5ms)
|
1267
|
+
Completed 200 OK in 7ms (Views: 5.1ms)
|
1268
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:14:11 +0100
|
1269
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1270
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
400
1271
|
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
401
1272
|
Completed 302 Found in 1ms
|
402
|
-
Started GET "/defra_ruby_mocks/
|
403
|
-
|
1273
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:14:11 +0100
|
1274
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1275
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
1276
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (2.0ms)
|
1277
|
+
Completed 200 OK in 13ms (Views: 13.0ms)
|
1278
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:14:11 +0100
|
1279
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1280
|
+
Parameters: {"successURL"=>"http://example.com/forthewin", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
1281
|
+
Completed 500 Internal Server Error in 0ms
|
1282
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:14:11 +0100
|
1283
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1284
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (0.5ms)
|
1285
|
+
Completed 200 OK in 15ms (Views: 12.2ms)
|
1286
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:14:11 +0100
|
1287
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1288
|
+
Completed 500 Internal Server Error in 0ms
|
1289
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:14:11 +0100
|
1290
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1291
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (0.5ms)
|
1292
|
+
Completed 200 OK in 7ms (Views: 5.1ms)
|
1293
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:14:11 +0100
|
1294
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-05 15:14:11 +0100
|
1295
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
1296
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
1297
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1298
|
+
Parameters: {"id"=>"foo"}
|
1299
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (1.7ms)
|
1300
|
+
Completed 404 Not Found in 31ms (Views: 30.6ms)
|
1301
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
404
1302
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
405
1303
|
Parameters: {"id"=>"SC247974"}
|
406
|
-
Rendered /Users/acruikshanks/projects/
|
407
|
-
Completed 200 OK in
|
408
|
-
Started GET "/defra_ruby_mocks/company/
|
1304
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.3ms)
|
1305
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
1306
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
409
1307
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
410
|
-
Parameters: {"id"=>"
|
411
|
-
Rendered /Users/acruikshanks/projects/
|
412
|
-
Completed 404 Not Found in
|
413
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-
|
1308
|
+
Parameters: {"id"=>"99999999"}
|
1309
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.0ms)
|
1310
|
+
Completed 404 Not Found in 0ms (Views: 0.3ms)
|
1311
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
414
1312
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
415
1313
|
Parameters: {"id"=>"05868270"}
|
416
|
-
Rendered /Users/acruikshanks/projects/
|
1314
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
417
1315
|
Completed 200 OK in 1ms (Views: 0.4ms)
|
418
|
-
Started GET "/defra_ruby_mocks/
|
419
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
420
|
-
Parameters: {"id"=>"99999999"}
|
421
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
422
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
423
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:54:20 +0000
|
424
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-01-20 15:54:20 +0000
|
425
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:54:20 +0000
|
1316
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
426
1317
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
427
|
-
|
428
|
-
|
1318
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (0.4ms)
|
1319
|
+
Completed 200 OK in 13ms (Views: 12.7ms)
|
1320
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
429
1321
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
430
|
-
|
431
|
-
Completed 200 OK in 38ms (Views: 37.8ms)
|
432
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-01-20 15:54:20 +0000
|
433
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
434
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
1322
|
+
MOCKS: Worldpay payments service error: undefined method `text' for nil:NilClass
|
435
1323
|
Completed 500 Internal Server Error in 1ms
|
436
|
-
Started GET "/defra_ruby_mocks/worldpay/
|
1324
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
1325
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1326
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (0.5ms)
|
1327
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
1328
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
437
1329
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
438
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
1330
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
1331
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.7ms)
|
1332
|
+
Completed 200 OK in 5ms (Views: 4.2ms)
|
1333
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
1334
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1335
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
439
1336
|
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
440
|
-
Completed 302 Found in
|
441
|
-
Started GET "/defra_ruby_mocks/
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-
|
1337
|
+
Completed 302 Found in 1ms
|
1338
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
1339
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1340
|
+
Parameters: {"successURL"=>"http://example.com/forthewin", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
1341
|
+
Completed 500 Internal Server Error in 7ms
|
1342
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
1343
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
1344
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
448
1345
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
449
1346
|
Parameters: {"id"=>"foo"}
|
450
|
-
Rendered /Users/acruikshanks/projects/
|
451
|
-
Completed 404 Not Found in
|
452
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-
|
1347
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (1.5ms)
|
1348
|
+
Completed 404 Not Found in 30ms (Views: 30.1ms)
|
1349
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
453
1350
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
454
1351
|
Parameters: {"id"=>"SC247974"}
|
455
|
-
Rendered /Users/acruikshanks/projects/
|
1352
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.3ms)
|
1353
|
+
Completed 200 OK in 4ms (Views: 3.8ms)
|
1354
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
1355
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1356
|
+
Parameters: {"id"=>"99999999"}
|
1357
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
1358
|
+
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
1359
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
1360
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1361
|
+
Parameters: {"id"=>"05868270"}
|
1362
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
456
1363
|
Completed 200 OK in 1ms (Views: 0.4ms)
|
457
|
-
Started GET "/defra_ruby_mocks/company/
|
1364
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
1365
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
1366
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1367
|
+
Parameters: {"successURL"=>"http://example.com/forthewin", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
1368
|
+
MOCKs: Worldpay dispatcher error: Could not find resource: foo
|
1369
|
+
Completed 500 Internal Server Error in 0ms
|
1370
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
1371
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1372
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
1373
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.7ms)
|
1374
|
+
Completed 200 OK in 7ms (Views: 6.6ms)
|
1375
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
1376
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1377
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
1378
|
+
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
1379
|
+
Completed 302 Found in 0ms
|
1380
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
1381
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1382
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (0.5ms)
|
1383
|
+
Completed 200 OK in 13ms (Views: 12.8ms)
|
1384
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
1385
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1386
|
+
MOCKS: Worldpay payments service error: undefined method `text' for nil:NilClass
|
1387
|
+
Completed 500 Internal Server Error in 1ms
|
1388
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
1389
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1390
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (0.4ms)
|
1391
|
+
Completed 200 OK in 5ms (Views: 4.8ms)
|
1392
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
1393
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-05 15:36:18 +0100
|
1394
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
1395
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
458
1396
|
Processing by DefraRubyMocks::CompanyController#show as HTML
|
459
1397
|
Parameters: {"id"=>"99999999"}
|
460
|
-
Rendered /Users/acruikshanks/projects/
|
1398
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (1.8ms)
|
1399
|
+
Completed 404 Not Found in 22ms (Views: 21.3ms)
|
1400
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
1401
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1402
|
+
Parameters: {"id"=>"05868270"}
|
1403
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
|
1404
|
+
Completed 200 OK in 4ms (Views: 3.7ms)
|
1405
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
1406
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1407
|
+
Parameters: {"id"=>"foo"}
|
1408
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
461
1409
|
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
462
|
-
Started GET "/defra_ruby_mocks/
|
1410
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
1411
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1412
|
+
Parameters: {"id"=>"SC247974"}
|
1413
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
1414
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
1415
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
1416
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
1417
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
463
1418
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
464
|
-
Rendered /Users/acruikshanks/projects/
|
465
|
-
Completed 200 OK in
|
466
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-
|
1419
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb (0.5ms)
|
1420
|
+
Completed 200 OK in 14ms (Views: 13.2ms)
|
1421
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
467
1422
|
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
1423
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb (0.5ms)
|
1424
|
+
Completed 200 OK in 13ms (Views: 12.6ms)
|
1425
|
+
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
1426
|
+
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1427
|
+
MOCKS: Worldpay payments service error: undefined method `text' for nil:NilClass
|
1428
|
+
Completed 500 Internal Server Error in 1ms
|
1429
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
474
1430
|
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
475
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
1431
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
476
1432
|
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
477
1433
|
Completed 302 Found in 1ms
|
478
|
-
Started GET "/defra_ruby_mocks/worldpay/
|
479
|
-
|
1434
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
1435
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1436
|
+
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
1437
|
+
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.6ms)
|
1438
|
+
Completed 200 OK in 4ms (Views: 3.9ms)
|
1439
|
+
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin&failureURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ffailure&pendingURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fpending&cancelURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fcancel&errorURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Ferror" for 127.0.0.1 at 2020-06-05 15:52:25 +0100
|
1440
|
+
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1441
|
+
Parameters: {"successURL"=>"http://example.com/forthewin", "failureURL"=>"http://example.com/fo/12345/worldpay/failure", "pendingURL"=>"http://example.com/fo/12345/worldpay/pending", "cancelURL"=>"http://example.com/fo/12345/worldpay/cancel", "errorURL"=>"http://example.com/fo/12345/worldpay/error"}
|
1442
|
+
MOCKS: Worldpay dispatcher error: Could not find resource: foo
|
1443
|
+
Completed 500 Internal Server Error in 0ms
|