defra_ruby_mocks 1.5.0 → 2.0.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 +4 -4
- data/README.md +3 -3
- data/app/services/defra_ruby_mocks/base_service.rb +8 -2
- data/lib/defra_ruby_mocks/version.rb +1 -1
- data/spec/requests/company_spec.rb +4 -4
- data/spec/requests/worldpay_spec.rb +5 -5
- data/spec/spec_helper.rb +3 -0
- metadata +23 -15
- data/spec/dummy/log/development.log +0 -180
- data/spec/dummy/log/test.log +0 -1443
- data/spec/examples.txt +0 -99
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a765c4c2a161ee30df850c9d40cfbfad3ed9cb5a521e41083b6e27794678b340
|
4
|
+
data.tar.gz: bbef0343174295fe77676a0f8f3d50faca67fc016994c4474bfd8de9ff66dc8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d4b1e1890c8568d644542407c4a4395e2920bb1a8ad0a545568d064447b70a22c2f9190756e9048a70adef917bca55e055806e9e827beeeecd85d5cfa472aa2
|
7
|
+
data.tar.gz: 71598c40f92872c6be03a66d747629a892e3a1a60bea98cd753b046e8be495d0074579cb36fc4101afff9cbbd85fe41ab52b76d8508d99e63e3a0eacc06b292d
|
data/README.md
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# Defra Ruby Mocks
|
2
2
|
|
3
|
-
[](https://travis-ci.com/DEFRA/defra-ruby-mocks)
|
4
4
|
[](https://sonarcloud.io/dashboard?id=DEFRA_defra-ruby-mocks)
|
5
5
|
[](https://sonarcloud.io/dashboard?id=DEFRA_defra-ruby-mocks)
|
6
|
-
[](https://hakiri.io/github/DEFRA/defra-ruby-mocks/main)
|
7
7
|
[](http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3)
|
8
8
|
|
9
9
|
A Rails Engine used by the [Ruby services team](https://github.com/DEFRA/ruby-services-team) in their digital services.
|
@@ -21,7 +21,7 @@ Things to note
|
|
21
21
|
|
22
22
|
Make sure you already have:
|
23
23
|
|
24
|
-
- Ruby 2.
|
24
|
+
- Ruby 2.7.1
|
25
25
|
- [Bundler](http://bundler.io/) – for installing Ruby gems
|
26
26
|
|
27
27
|
## Mounting the engine
|
@@ -2,8 +2,14 @@
|
|
2
2
|
|
3
3
|
module DefraRubyMocks
|
4
4
|
class BaseService
|
5
|
-
def self.run(
|
6
|
-
|
5
|
+
def self.run(options = nil)
|
6
|
+
if options && !options.is_a?(Hash)
|
7
|
+
new.run(options)
|
8
|
+
elsif options
|
9
|
+
new.run(**options)
|
10
|
+
else
|
11
|
+
new.run
|
12
|
+
end
|
7
13
|
end
|
8
14
|
end
|
9
15
|
end
|
@@ -18,7 +18,7 @@ module DefraRubyMocks
|
|
18
18
|
get "#{path}/#{company_number}"
|
19
19
|
content = JSON.parse(response.body)
|
20
20
|
|
21
|
-
expect(response.
|
21
|
+
expect(response.media_type).to eq("application/json")
|
22
22
|
expect(response.code).to eq("404")
|
23
23
|
expect(content).to include("errors")
|
24
24
|
end
|
@@ -31,7 +31,7 @@ module DefraRubyMocks
|
|
31
31
|
get "#{path}/#{company_number}"
|
32
32
|
company_status = JSON.parse(response.body)["company_status"]
|
33
33
|
|
34
|
-
expect(response.
|
34
|
+
expect(response.media_type).to eq("application/json")
|
35
35
|
expect(response.code).to eq("200")
|
36
36
|
expect(company_status).not_to eq("active")
|
37
37
|
end
|
@@ -45,7 +45,7 @@ module DefraRubyMocks
|
|
45
45
|
get "#{path}/#{company_number}"
|
46
46
|
company_status = JSON.parse(response.body)["company_status"]
|
47
47
|
|
48
|
-
expect(response.
|
48
|
+
expect(response.media_type).to eq("application/json")
|
49
49
|
expect(response.code).to eq("200")
|
50
50
|
expect(company_status).to eq("active")
|
51
51
|
end
|
@@ -58,7 +58,7 @@ module DefraRubyMocks
|
|
58
58
|
get "#{path}/#{company_number}"
|
59
59
|
content = JSON.parse(response.body)
|
60
60
|
|
61
|
-
expect(response.
|
61
|
+
expect(response.media_type).to eq("application/json")
|
62
62
|
expect(response.code).to eq("404")
|
63
63
|
expect(content).to include("errors")
|
64
64
|
end
|
@@ -24,9 +24,9 @@ module DefraRubyMocks
|
|
24
24
|
let(:data) { File.read("spec/fixtures/payment_request_valid.xml") }
|
25
25
|
|
26
26
|
it "returns an XML response with a 200 code" do
|
27
|
-
get path, {
|
27
|
+
get path, headers: { "RAW_POST_DATA" => data }
|
28
28
|
|
29
|
-
expect(response.
|
29
|
+
expect(response.media_type).to eq("application/xml")
|
30
30
|
expect(response.code).to eq("200")
|
31
31
|
expect(response.body).to be_xml
|
32
32
|
end
|
@@ -36,7 +36,7 @@ module DefraRubyMocks
|
|
36
36
|
let(:data) { File.read("spec/fixtures/payment_request_invalid.xml") }
|
37
37
|
|
38
38
|
it "returns a response with a 500 code" do
|
39
|
-
get path, {
|
39
|
+
get path, headers: { "RAW_POST_DATA" => data }
|
40
40
|
|
41
41
|
expect(response.code).to eq("500")
|
42
42
|
end
|
@@ -48,9 +48,9 @@ module DefraRubyMocks
|
|
48
48
|
let(:data) { File.read("spec/fixtures/refund_request_valid.xml") }
|
49
49
|
|
50
50
|
it "returns an XML response with a 200 code" do
|
51
|
-
get path, {
|
51
|
+
get path, headers: { "RAW_POST_DATA" => data }
|
52
52
|
|
53
|
-
expect(response.
|
53
|
+
expect(response.media_type).to eq("application/xml")
|
54
54
|
expect(response.code).to eq("200")
|
55
55
|
expect(response.body).to be_xml
|
56
56
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -4,6 +4,9 @@
|
|
4
4
|
# This is as per its docs https://github.com/colszowka/simplecov#getting-started
|
5
5
|
require "./spec/support/simplecov"
|
6
6
|
|
7
|
+
require "rails-controller-testing"
|
8
|
+
Rails::Controller::Testing.install
|
9
|
+
|
7
10
|
# This file was generated by the `rails generate rspec:install` command. Conventionally, all
|
8
11
|
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
9
12
|
# The generated `.rspec` file contains `--require spec_helper` which will cause
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: defra_ruby_mocks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Defra
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 6.0.3.1
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 6.0.3.1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: sprockets
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,20 +94,34 @@ dependencies:
|
|
94
94
|
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rails-controller-testing
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
97
111
|
- !ruby/object:Gem::Dependency
|
98
112
|
name: rspec-rails
|
99
113
|
requirement: !ruby/object:Gem::Requirement
|
100
114
|
requirements:
|
101
|
-
- - "
|
115
|
+
- - ">="
|
102
116
|
- !ruby/object:Gem::Version
|
103
|
-
version:
|
117
|
+
version: '0'
|
104
118
|
type: :development
|
105
119
|
prerelease: false
|
106
120
|
version_requirements: !ruby/object:Gem::Requirement
|
107
121
|
requirements:
|
108
|
-
- - "
|
122
|
+
- - ">="
|
109
123
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
124
|
+
version: '0'
|
111
125
|
- !ruby/object:Gem::Dependency
|
112
126
|
name: simplecov
|
113
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -189,13 +203,10 @@ files:
|
|
189
203
|
- spec/dummy/config/locales/en.yml
|
190
204
|
- spec/dummy/config/routes.rb
|
191
205
|
- spec/dummy/config/secrets.yml
|
192
|
-
- spec/dummy/log/development.log
|
193
|
-
- spec/dummy/log/test.log
|
194
206
|
- spec/dummy/public/404.html
|
195
207
|
- spec/dummy/public/422.html
|
196
208
|
- spec/dummy/public/500.html
|
197
209
|
- spec/dummy/public/favicon.ico
|
198
|
-
- spec/examples.txt
|
199
210
|
- spec/fixtures/payment_request_invalid.xml
|
200
211
|
- spec/fixtures/payment_request_valid.xml
|
201
212
|
- spec/fixtures/refund_request_invalid.xml
|
@@ -237,7 +248,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
237
248
|
- !ruby/object:Gem::Version
|
238
249
|
version: '0'
|
239
250
|
requirements: []
|
240
|
-
rubygems_version: 3.
|
251
|
+
rubygems_version: 3.1.2
|
241
252
|
signing_key:
|
242
253
|
specification_version: 4
|
243
254
|
summary: Defra Ruby on Rails external API mocking engine
|
@@ -276,10 +287,7 @@ test_files:
|
|
276
287
|
- spec/dummy/public/422.html
|
277
288
|
- spec/dummy/public/500.html
|
278
289
|
- spec/dummy/public/404.html
|
279
|
-
- spec/dummy/log/test.log
|
280
|
-
- spec/dummy/log/development.log
|
281
290
|
- spec/dummy/README.rdoc
|
282
|
-
- spec/examples.txt
|
283
291
|
- spec/defra_ruby_mocks_spec.rb
|
284
292
|
- spec/requests/company_spec.rb
|
285
293
|
- spec/requests/worldpay_spec.rb
|
@@ -1,180 +0,0 @@
|
|
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
DELETED
@@ -1,1443 +0,0 @@
|
|
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
|
29
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
30
|
-
Parameters: {"id"=>"05868270"}
|
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
|
34
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
35
|
-
Parameters: {"id"=>"99999999"}
|
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
|
39
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
40
|
-
Parameters: {"id"=>"SC247974"}
|
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
|
44
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
45
|
-
Parameters: {"id"=>"foo"}
|
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
|
74
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
75
|
-
Parameters: {"id"=>"05868270"}
|
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)
|
82
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
83
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-05-22 15:39:00 +0100
|
84
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
85
|
-
Parameters: {"id"=>"foo"}
|
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
|
89
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
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
|
96
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
97
|
-
Parameters: {"id"=>"99999999"}
|
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)
|
104
|
-
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
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
|
145
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
146
|
-
Parameters: {"id"=>"99999999"}
|
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
|
150
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
151
|
-
Parameters: {"id"=>"05868270"}
|
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
|
155
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
156
|
-
Parameters: {"id"=>"foo"}
|
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
|
160
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
161
|
-
Parameters: {"id"=>"SC247974"}
|
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
|
508
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
509
|
-
Parameters: {"id"=>"99999999"}
|
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
|
513
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
514
|
-
Parameters: {"id"=>"SC247974"}
|
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
|
579
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
580
|
-
Parameters: {"id"=>"foo"}
|
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
|
589
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
590
|
-
Parameters: {"id"=>"05868270"}
|
591
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
592
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
593
|
-
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
|
594
|
-
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
|
595
|
-
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
596
|
-
GOT TO STUCK
|
597
|
-
{"supplied_url":"http://example.com/foobar","separator":"?","order_key":"ok","mac":"mc","value":15400,"status":"st","reference":"rf","url":"ul"}
|
598
|
-
RENDERING STUCK
|
599
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.6ms)
|
600
|
-
Completed 200 OK in 5ms (Views: 4.7ms)
|
601
|
-
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:36:04 +0100
|
602
|
-
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
603
|
-
GOT TO STUCK
|
604
|
-
|
605
|
-
RENDERING STUCK
|
606
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.0ms)
|
607
|
-
Completed 200 OK in 0ms (Views: 0.3ms)
|
608
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
609
|
-
Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
|
610
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
611
|
-
IN DISPATCHER
|
612
|
-
GOT A RESPONSE
|
613
|
-
CREATING STUCK COOKIE
|
614
|
-
GOING TO STUCK
|
615
|
-
Redirected to http://www.example.com/defra_ruby_mocks/worldpay/stuck
|
616
|
-
Completed 302 Found in 1ms
|
617
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
618
|
-
Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
|
619
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
620
|
-
IN DISPATCHER
|
621
|
-
GOT A RESPONSE
|
622
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
623
|
-
Completed 302 Found in 1ms
|
624
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
625
|
-
Processing by DefraRubyMocks::WorldpayApiController#dispatcher as HTML
|
626
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
627
|
-
IN DISPATCHER
|
628
|
-
["/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:684:in `block in call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:683:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:683:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/message_expectation.rb:422:in `invoke'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/proxy.rb:180:in `message_received'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/proxy.rb:327:in `message_received'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/verifying_proxy.rb:161:in `proxy_method_invoked'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-mocks-3.8.2/lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'", "/Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/controllers/defra_ruby_mocks/worldpay_api_controller.rb:19:in `dispatcher'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/implicit_render.rb:4:in `send_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/abstract_controller/base.rb:198:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/rendering.rb:10:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/abstract_controller/callbacks.rb:20:in `block in process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:117:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:505:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:92:in `__run_callbacks__'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:81:in `run_callbacks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/abstract_controller/callbacks.rb:19:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/rescue.rb:29:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/notifications.rb:164:in `block in instrument'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/notifications/instrumenter.rb:20:in `instrument'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/notifications.rb:164:in `instrument'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/instrumentation.rb:30:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/params_wrapper.rb:250:in `process_action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/abstract_controller/base.rb:137:in `process'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionview-4.2.11.3/lib/action_view/rendering.rb:30:in `process'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal.rb:196:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_controller/metal.rb:237:in `block in action'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/route_set.rb:74:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/route_set.rb:43:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/mapper.rb:49:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:43:in `block in serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:30:in `each'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:30:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/route_set.rb:817:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/engine.rb:518:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/railtie.rb:194:in `public_send'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/railtie.rb:194:in `method_missing'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/mapper.rb:51:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:43:in `block in serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:30:in `each'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/journey/router.rb:30:in `serve'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/routing/route_set.rb:817:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/etag.rb:24:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/conditionalget.rb:25:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/head.rb:13:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/params_parser.rb:27:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/flash.rb:260:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/session/abstract/id.rb:252:in `context'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/session/abstract/id.rb:247:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/cookies.rb:560:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:88:in `__run_callbacks__'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:778:in `_run_call_callbacks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/callbacks.rb:81:in `run_callbacks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/callbacks.rb:27:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/remote_ip.rb:78:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/rack/logger.rb:38:in `call_app'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/rack/logger.rb:20:in `block in call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/tagged_logging.rb:68:in `block in tagged'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/tagged_logging.rb:26:in `tagged'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/tagged_logging.rb:68:in `tagged'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/rack/logger.rb:20:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/request_id.rb:21:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/methodoverride.rb:22:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/runtime.rb:18:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/activesupport-4.2.11.3/lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/lock.rb:17:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/middleware/static.rb:120:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-1.6.13/lib/rack/sendfile.rb:113:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/engine.rb:518:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/railties-4.2.11.3/lib/rails/application.rb:165:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-test-0.6.3/lib/rack/mock_session.rb:30:in `request'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-test-0.6.3/lib/rack/test.rb:244:in `process_request'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rack-test-0.6.3/lib/rack/test.rb:124:in `request'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/testing/integration.rb:297:in `process'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/testing/integration.rb:32:in `get'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/actionpack-4.2.11.3/lib/action_dispatch/testing/integration.rb:346:in `block (2 levels) in <module:Runner>'", "/Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/spec/requests/worldpay_api_spec.rb:113:in `block (6 levels) in <module:DefraRubyMocks>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:257:in `instance_exec'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:257:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:503:in `block in with_around_and_singleton_context_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:460:in `block in with_around_example_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:464:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:604:in `block in run_around_example_hooks_for'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:345:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-rails-3.8.3/lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:450:in `instance_exec'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:450:in `instance_exec'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:373:in `execute_with'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:606:in `block (2 levels) in run_around_example_hooks_for'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:345:in `call'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:607:in `run_around_example_hooks_for'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/hooks.rb:464:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:460:in `with_around_example_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:503:in `with_around_and_singleton_context_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example.rb:254:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:633:in `block in run_examples'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:629:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:629:in `run_examples'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:595:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `block in run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/example_group.rb:596:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:116:in `block (3 levels) in run_specs'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:116:in `map'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:116:in `block (2 levels) in run_specs'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/configuration.rb:2008:in `with_suite_hooks'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:111:in `block in run_specs'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/reporter.rb:74:in `report'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:110:in `run_specs'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:87:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:71:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/lib/rspec/core/runner.rb:45:in `invoke'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/rspec-core-3.8.2/exe/rspec:4:in `<top (required)>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/bin/rspec:23:in `load'", "/Users/acruikshanks/.rbenv/versions/2.4.2/bin/rspec:23:in `<top (required)>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli/exec.rb:74:in `load'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli/exec.rb:74:in `kernel_load'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli/exec.rb:28:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli.rb:463:in `exec'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/vendor/thor/lib/thor.rb:387:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli.rb:27:in `dispatch'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/vendor/thor/lib/thor/base.rb:466:in `start'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/cli.rb:18:in `start'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/exe/bundle:30:in `block in <top (required)>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/lib/bundler/friendly_errors.rb:124:in `with_friendly_errors'", "/Users/acruikshanks/.rbenv/versions/2.4.2/lib/ruby/gems/2.4.0/gems/bundler-1.17.3/exe/bundle:22:in `<top (required)>'", "/Users/acruikshanks/.rbenv/versions/2.4.2/bin/bundle:23:in `load'", "/Users/acruikshanks/.rbenv/versions/2.4.2/bin/bundle:23:in `<main>'"]
|
629
|
-
Could not find resource: foo
|
630
|
-
Completed 500 Internal Server Error in 1ms
|
631
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
632
|
-
Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
|
633
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/payment_request.xml.erb (1.8ms)
|
634
|
-
Completed 200 OK in 23ms (Views: 22.5ms)
|
635
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
636
|
-
Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
|
637
|
-
Completed 500 Internal Server Error in 0ms
|
638
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
639
|
-
Processing by DefraRubyMocks::WorldpayApiController#payments_service as HTML
|
640
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay_api/refund_request.xml.erb (0.5ms)
|
641
|
-
Completed 200 OK in 4ms (Views: 3.7ms)
|
642
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
643
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
644
|
-
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
645
|
-
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
646
|
-
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
647
|
-
GOT TO STUCK
|
648
|
-
{"supplied_url":"http://example.com/foobar","separator":"?","order_key":"ok","mac":"mc","value":15400,"status":"st","reference":"rf","url":"ul"}
|
649
|
-
RENDERING STUCK
|
650
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.7ms)
|
651
|
-
Completed 200 OK in 6ms (Views: 5.5ms)
|
652
|
-
Started GET "/defra_ruby_mocks/worldpay/stuck" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
653
|
-
Processing by DefraRubyMocks::WorldpayController#stuck as HTML
|
654
|
-
GOT TO STUCK
|
655
|
-
|
656
|
-
RENDERING STUCK
|
657
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/stuck.html.erb (0.1ms)
|
658
|
-
Completed 200 OK in 1ms (Views: 0.3ms)
|
659
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
660
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
661
|
-
Parameters: {"id"=>"foo"}
|
662
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.3ms)
|
663
|
-
Completed 404 Not Found in 13ms (Views: 12.7ms)
|
664
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
665
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
666
|
-
Parameters: {"id"=>"SC247974"}
|
667
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
|
668
|
-
Completed 200 OK in 5ms (Views: 4.8ms)
|
669
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-05-26 22:36:35 +0100
|
670
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
671
|
-
Parameters: {"id"=>"99999999"}
|
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
|
675
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
676
|
-
Parameters: {"id"=>"05868270"}
|
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
|
714
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
715
|
-
Parameters: {"id"=>"99999999"}
|
716
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.4ms)
|
717
|
-
Completed 404 Not Found in 5ms (Views: 4.6ms)
|
718
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-03 14:25:41 +0100
|
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
|
738
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
739
|
-
Parameters: {"id"=>"05868270"}
|
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
|
748
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
749
|
-
Parameters: {"id"=>"foo"}
|
750
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
751
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
752
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-06-04 21:44:12 +0100
|
753
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
754
|
-
Parameters: {"id"=>"SC247974"}
|
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)
|
771
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
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
|
782
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
783
|
-
Parameters: {"id"=>"05868270"}
|
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
|
787
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
788
|
-
Parameters: {"id"=>"foo"}
|
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
|
792
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
793
|
-
Parameters: {"id"=>"SC247974"}
|
794
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
795
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
796
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-04 21:45:57 +0100
|
797
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
798
|
-
Parameters: {"id"=>"99999999"}
|
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)
|
821
|
-
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
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
|
842
|
-
Completed 500 Internal Server Error in 0ms
|
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
|
851
|
-
Completed 302 Found in 1ms
|
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
|
898
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
899
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
900
|
-
Completed 302 Found in 1ms
|
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
|
903
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
904
|
-
Completed 500 Internal Server Error in 0ms
|
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
|
915
|
-
Completed 500 Internal Server Error in 0ms
|
916
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-06-04 21:47:16 +0100
|
917
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
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
|
922
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
923
|
-
Parameters: {"id"=>"SC247974"}
|
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
|
932
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
933
|
-
Parameters: {"id"=>"05868270"}
|
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
|
984
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
985
|
-
Parameters: {"id"=>"99999999"}
|
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
|
997
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
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
|
1001
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
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
|
1008
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1009
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
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
|
1018
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1019
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
1020
|
-
Completed 500 Internal Server Error in 0ms
|
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
|
1022
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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
|
1026
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1027
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
1028
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
1029
|
-
Completed 302 Found in 1ms
|
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
|
1040
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
1041
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
1042
|
-
Completed 500 Internal Server Error in 0ms
|
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
|
1048
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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"}
|
1054
|
-
Completed 500 Internal Server Error in 0ms
|
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
|
1056
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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
|
1060
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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"}
|
1087
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
1088
|
-
Completed 302 Found in 1ms
|
1089
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 11:29:35 +0100
|
1090
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
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
|
1094
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1095
|
-
Completed 500 Internal Server Error in 0ms
|
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
|
1118
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
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
|
1123
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1124
|
-
Parameters: {"id"=>"SC247974"}
|
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
|
1128
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1129
|
-
Parameters: {"id"=>"05868270"}
|
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
|
1151
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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"}
|
1153
|
-
Completed 500 Internal Server Error in 0ms
|
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
|
1155
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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"}
|
1161
|
-
Completed 500 Internal Server Error in 1ms
|
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
|
1165
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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
|
1170
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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"}
|
1172
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
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
|
1179
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
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
|
1183
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
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
|
1187
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1188
|
-
Completed 500 Internal Server Error in 0ms
|
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
|
1198
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
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
|
1201
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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
|
1205
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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
|
1208
|
-
Completed 302 Found in 1ms
|
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
|
1210
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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
|
1219
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
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
|
1227
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1228
|
-
Completed 500 Internal Server Error in 0ms
|
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
|
1230
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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"}
|
1242
|
-
Completed 500 Internal Server Error in 0ms
|
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
|
1246
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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"}
|
1271
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
1272
|
-
Completed 302 Found in 1ms
|
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
|
1302
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1303
|
-
Parameters: {"id"=>"SC247974"}
|
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
|
1307
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
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
|
1312
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1313
|
-
Parameters: {"id"=>"05868270"}
|
1314
|
-
Rendered /Users/acruikshanks/projects/gitlab/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
1315
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
1316
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-06-05 15:36:01 +0100
|
1317
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
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
|
1321
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
1322
|
-
MOCKS: Worldpay payments service error: undefined method `text' for nil:NilClass
|
1323
|
-
Completed 500 Internal Server Error in 1ms
|
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
|
1329
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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"}
|
1336
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
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
|
1345
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1346
|
-
Parameters: {"id"=>"foo"}
|
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
|
1350
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1351
|
-
Parameters: {"id"=>"SC247974"}
|
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)
|
1363
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
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
|
1396
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1397
|
-
Parameters: {"id"=>"99999999"}
|
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)
|
1409
|
-
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
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
|
1418
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
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
|
1422
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
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
|
1430
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
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"}
|
1432
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
1433
|
-
Completed 302 Found in 1ms
|
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
|