defra_ruby_mocks 1.2.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 +5 -5
- data/README.md +45 -5
- data/Rakefile +0 -2
- data/app/controllers/defra_ruby_mocks/company_controller.rb +1 -1
- data/app/controllers/defra_ruby_mocks/worldpay_controller.rb +18 -5
- data/app/services/defra_ruby_mocks/base_service.rb +8 -2
- data/app/services/defra_ruby_mocks/worldpay_resource_service.rb +55 -0
- data/app/services/defra_ruby_mocks/worldpay_response_service.rb +71 -52
- data/app/views/defra_ruby_mocks/worldpay/stuck.html.erb +37 -0
- data/lib/defra_ruby_mocks/engine.rb +1 -1
- data/lib/defra_ruby_mocks/missing_resource_error.rb +9 -0
- data/lib/defra_ruby_mocks/version.rb +1 -1
- data/spec/requests/company_spec.rb +4 -4
- data/spec/requests/worldpay_spec.rb +64 -20
- data/spec/services/worldpay_resource_service_spec.rb +112 -0
- data/spec/services/worldpay_response_service_spec.rb +185 -58
- data/spec/spec_helper.rb +3 -0
- metadata +44 -19
- data/lib/defra_ruby_mocks/missing_registration_error.rb +0 -9
- data/spec/dummy/log/development.log +0 -0
- data/spec/dummy/log/test.log +0 -479
- data/spec/examples.txt +0 -56
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-
|
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,28 @@ 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
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: sprockets
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 3.7.2
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 3.7.2
|
27
41
|
- !ruby/object:Gem::Dependency
|
28
42
|
name: nokogiri
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,21 +95,21 @@ dependencies:
|
|
81
95
|
- !ruby/object:Gem::Version
|
82
96
|
version: '0'
|
83
97
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
98
|
+
name: rails-controller-testing
|
85
99
|
requirement: !ruby/object:Gem::Requirement
|
86
100
|
requirements:
|
87
|
-
- - "
|
101
|
+
- - ">="
|
88
102
|
- !ruby/object:Gem::Version
|
89
|
-
version:
|
103
|
+
version: '0'
|
90
104
|
type: :development
|
91
105
|
prerelease: false
|
92
106
|
version_requirements: !ruby/object:Gem::Requirement
|
93
107
|
requirements:
|
94
|
-
- - "
|
108
|
+
- - ">="
|
95
109
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
110
|
+
version: '0'
|
97
111
|
- !ruby/object:Gem::Dependency
|
98
|
-
name:
|
112
|
+
name: rspec-rails
|
99
113
|
requirement: !ruby/object:Gem::Requirement
|
100
114
|
requirements:
|
101
115
|
- - ">="
|
@@ -108,6 +122,20 @@ dependencies:
|
|
108
122
|
- - ">="
|
109
123
|
- !ruby/object:Gem::Version
|
110
124
|
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: simplecov
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 0.17.1
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 0.17.1
|
111
139
|
description: A Rails engine which can be used to mock external services when loaded
|
112
140
|
into an application
|
113
141
|
email:
|
@@ -127,17 +155,19 @@ files:
|
|
127
155
|
- app/services/defra_ruby_mocks/worldpay_payment_service.rb
|
128
156
|
- app/services/defra_ruby_mocks/worldpay_refund_service.rb
|
129
157
|
- app/services/defra_ruby_mocks/worldpay_request_handler_service.rb
|
158
|
+
- app/services/defra_ruby_mocks/worldpay_resource_service.rb
|
130
159
|
- app/services/defra_ruby_mocks/worldpay_response_service.rb
|
131
160
|
- app/views/defra_ruby_mocks/company/not_found.json.erb
|
132
161
|
- app/views/defra_ruby_mocks/company/show.json.erb
|
133
162
|
- app/views/defra_ruby_mocks/worldpay/payment_request.xml.erb
|
134
163
|
- app/views/defra_ruby_mocks/worldpay/refund_request.xml.erb
|
164
|
+
- app/views/defra_ruby_mocks/worldpay/stuck.html.erb
|
135
165
|
- config/routes.rb
|
136
166
|
- lib/defra_ruby_mocks.rb
|
137
167
|
- lib/defra_ruby_mocks/configuration.rb
|
138
168
|
- lib/defra_ruby_mocks/engine.rb
|
139
169
|
- lib/defra_ruby_mocks/invalid_config_error.rb
|
140
|
-
- lib/defra_ruby_mocks/
|
170
|
+
- lib/defra_ruby_mocks/missing_resource_error.rb
|
141
171
|
- lib/defra_ruby_mocks/unrecognised_worldpay_request_error.rb
|
142
172
|
- lib/defra_ruby_mocks/version.rb
|
143
173
|
- lib/tasks/changelog.rake
|
@@ -173,13 +203,10 @@ files:
|
|
173
203
|
- spec/dummy/config/locales/en.yml
|
174
204
|
- spec/dummy/config/routes.rb
|
175
205
|
- spec/dummy/config/secrets.yml
|
176
|
-
- spec/dummy/log/development.log
|
177
|
-
- spec/dummy/log/test.log
|
178
206
|
- spec/dummy/public/404.html
|
179
207
|
- spec/dummy/public/422.html
|
180
208
|
- spec/dummy/public/500.html
|
181
209
|
- spec/dummy/public/favicon.ico
|
182
|
-
- spec/examples.txt
|
183
210
|
- spec/fixtures/payment_request_invalid.xml
|
184
211
|
- spec/fixtures/payment_request_valid.xml
|
185
212
|
- spec/fixtures/refund_request_invalid.xml
|
@@ -193,6 +220,7 @@ files:
|
|
193
220
|
- spec/services/worldpay_payment_service_spec.rb
|
194
221
|
- spec/services/worldpay_refund_service_spec.rb
|
195
222
|
- spec/services/worldpay_request_handler_service_spec.rb
|
223
|
+
- spec/services/worldpay_resource_service_spec.rb
|
196
224
|
- spec/services/worldpay_response_service_spec.rb
|
197
225
|
- spec/spec_helper.rb
|
198
226
|
- spec/support/helpers/configuration.rb
|
@@ -220,8 +248,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
220
248
|
- !ruby/object:Gem::Version
|
221
249
|
version: '0'
|
222
250
|
requirements: []
|
223
|
-
|
224
|
-
rubygems_version: 2.6.13
|
251
|
+
rubygems_version: 3.1.2
|
225
252
|
signing_key:
|
226
253
|
specification_version: 4
|
227
254
|
summary: Defra Ruby on Rails external API mocking engine
|
@@ -260,10 +287,7 @@ test_files:
|
|
260
287
|
- spec/dummy/public/422.html
|
261
288
|
- spec/dummy/public/500.html
|
262
289
|
- spec/dummy/public/404.html
|
263
|
-
- spec/dummy/log/test.log
|
264
|
-
- spec/dummy/log/development.log
|
265
290
|
- spec/dummy/README.rdoc
|
266
|
-
- spec/examples.txt
|
267
291
|
- spec/defra_ruby_mocks_spec.rb
|
268
292
|
- spec/requests/company_spec.rb
|
269
293
|
- spec/requests/worldpay_spec.rb
|
@@ -281,6 +305,7 @@ test_files:
|
|
281
305
|
- spec/fixtures/refund_request_invalid.xml
|
282
306
|
- spec/rails_helper.rb
|
283
307
|
- spec/services/worldpay_response_service_spec.rb
|
308
|
+
- spec/services/worldpay_resource_service_spec.rb
|
284
309
|
- spec/services/companies_house_service_spec.rb
|
285
310
|
- spec/services/worldpay_payment_service_spec.rb
|
286
311
|
- spec/services/worldpay_refund_service_spec.rb
|
File without changes
|
data/spec/dummy/log/test.log
DELETED
@@ -1,479 +0,0 @@
|
|
1
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:10:46 +0000
|
2
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:10:46 +0000
|
3
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
4
|
-
Parameters: {"id"=>"foo"}
|
5
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (2.9ms)
|
6
|
-
Completed 404 Not Found in 36ms (Views: 36.0ms)
|
7
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:10:46 +0000
|
8
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
9
|
-
Parameters: {"id"=>"SC247974"}
|
10
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.5ms)
|
11
|
-
Completed 200 OK in 5ms (Views: 5.1ms)
|
12
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:10:46 +0000
|
13
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
14
|
-
Parameters: {"id"=>"99999999"}
|
15
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
16
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
17
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:10:46 +0000
|
18
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
19
|
-
Parameters: {"id"=>"05868270"}
|
20
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
21
|
-
Completed 200 OK in 2ms (Views: 1.1ms)
|
22
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:13:25 +0000
|
23
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
24
|
-
Parameters: {"id"=>"99999999"}
|
25
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (2.8ms)
|
26
|
-
Completed 404 Not Found in 31ms (Views: 30.7ms)
|
27
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:13:25 +0000
|
28
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
29
|
-
Parameters: {"id"=>"SC247974"}
|
30
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.5ms)
|
31
|
-
Completed 200 OK in 5ms (Views: 4.6ms)
|
32
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:13:25 +0000
|
33
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
34
|
-
Parameters: {"id"=>"foo"}
|
35
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
36
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
37
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:13:25 +0000
|
38
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
39
|
-
Parameters: {"id"=>"05868270"}
|
40
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
41
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
42
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:13:25 +0000
|
43
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:16:06 +0000
|
44
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
45
|
-
Parameters: {"id"=>"foo"}
|
46
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (4.6ms)
|
47
|
-
Completed 404 Not Found in 37ms (Views: 35.9ms)
|
48
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:16:06 +0000
|
49
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
50
|
-
Parameters: {"id"=>"SC247974"}
|
51
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.7ms)
|
52
|
-
Completed 200 OK in 7ms (Views: 6.6ms)
|
53
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:16:06 +0000
|
54
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
55
|
-
Parameters: {"id"=>"05868270"}
|
56
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
57
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
58
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:16:06 +0000
|
59
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
60
|
-
Parameters: {"id"=>"99999999"}
|
61
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
62
|
-
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
63
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:16:06 +0000
|
64
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:16:42 +0000
|
65
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
66
|
-
Parameters: {"id"=>"99999999"}
|
67
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (3.0ms)
|
68
|
-
Completed 404 Not Found in 28ms (Views: 27.2ms)
|
69
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:16:42 +0000
|
70
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
71
|
-
Parameters: {"id"=>"05868270"}
|
72
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.5ms)
|
73
|
-
Completed 200 OK in 6ms (Views: 5.4ms)
|
74
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:16:42 +0000
|
75
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
76
|
-
Parameters: {"id"=>"foo"}
|
77
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
78
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
79
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:16:42 +0000
|
80
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
81
|
-
Parameters: {"id"=>"SC247974"}
|
82
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
83
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
84
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:16:42 +0000
|
85
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:17:50 +0000
|
86
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:17:50 +0000
|
87
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
88
|
-
Parameters: {"id"=>"99999999"}
|
89
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (3.8ms)
|
90
|
-
Completed 404 Not Found in 36ms (Views: 35.8ms)
|
91
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:17:50 +0000
|
92
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
93
|
-
Parameters: {"id"=>"SC247974"}
|
94
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.8ms)
|
95
|
-
Completed 200 OK in 10ms (Views: 9.0ms)
|
96
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:17:50 +0000
|
97
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
98
|
-
Parameters: {"id"=>"foo"}
|
99
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
100
|
-
Completed 404 Not Found in 1ms (Views: 0.8ms)
|
101
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:17:50 +0000
|
102
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
103
|
-
Parameters: {"id"=>"05868270"}
|
104
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
105
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
106
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:31:03 +0000
|
107
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:31:03 +0000
|
108
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
109
|
-
Parameters: {"id"=>"foo"}
|
110
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (3.0ms)
|
111
|
-
Completed 404 Not Found in 34ms (Views: 33.5ms)
|
112
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:31:03 +0000
|
113
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
114
|
-
Parameters: {"id"=>"SC247974"}
|
115
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
|
116
|
-
Completed 200 OK in 5ms (Views: 4.8ms)
|
117
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:31:03 +0000
|
118
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
119
|
-
Parameters: {"id"=>"99999999"}
|
120
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
121
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
122
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:31:03 +0000
|
123
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
124
|
-
Parameters: {"id"=>"05868270"}
|
125
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
126
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
127
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:37:44 +0000
|
128
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2019-12-27 17:37:44 +0000
|
129
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
130
|
-
Parameters: {"id"=>"99999999"}
|
131
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (3.0ms)
|
132
|
-
Completed 404 Not Found in 30ms (Views: 30.0ms)
|
133
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2019-12-27 17:37:44 +0000
|
134
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
135
|
-
Parameters: {"id"=>"05868270"}
|
136
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
|
137
|
-
Completed 200 OK in 5ms (Views: 4.5ms)
|
138
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2019-12-27 17:37:44 +0000
|
139
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
140
|
-
Parameters: {"id"=>"foo"}
|
141
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
142
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
143
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2019-12-27 17:37:44 +0000
|
144
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
145
|
-
Parameters: {"id"=>"SC247974"}
|
146
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
147
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
148
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-01-20 15:42:28 +0000
|
149
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
150
|
-
Parameters: {"id"=>"05868270"}
|
151
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (2.8ms)
|
152
|
-
Completed 200 OK in 29ms (Views: 28.5ms)
|
153
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-01-20 15:42:28 +0000
|
154
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
155
|
-
Parameters: {"id"=>"foo"}
|
156
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.4ms)
|
157
|
-
Completed 404 Not Found in 5ms (Views: 4.5ms)
|
158
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:42:28 +0000
|
159
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
160
|
-
Parameters: {"id"=>"SC247974"}
|
161
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
162
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
163
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-01-20 15:42:28 +0000
|
164
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
165
|
-
Parameters: {"id"=>"99999999"}
|
166
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
167
|
-
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
168
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:42:28 +0000
|
169
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-01-20 15:42:28 +0000
|
170
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:42:28 +0000
|
171
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:42:28 +0000
|
172
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
173
|
-
Completed 500 Internal Server Error in 0ms
|
174
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:42:28 +0000
|
175
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
176
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payments_service.xml.erb (0.5ms)
|
177
|
-
Completed 200 OK in 16ms (Views: 14.8ms)
|
178
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fyour-registration%2F12345%2Fworldpay%2Fsuccess%2F54321%2FNEWREG%3Flocale%3Den" for 127.0.0.1 at 2020-01-20 15:42:29 +0000
|
179
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
180
|
-
Parameters: {"successURL"=>"http://example.com/your-registration/12345/worldpay/success/54321/NEWREG?locale=en"}
|
181
|
-
Redirected to http://example.com/your-registration/12345/worldpay/success/54321/NEWREG?locale=en&orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
182
|
-
Completed 302 Found in 1ms
|
183
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:42:29 +0000
|
184
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
185
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
186
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
187
|
-
Completed 302 Found in 1ms
|
188
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-01-20 15:42:29 +0000
|
189
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
190
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
191
|
-
Completed 500 Internal Server Error in 0ms
|
192
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:42:29 +0000
|
193
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
194
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
195
|
-
Completed 500 Internal Server Error in 0ms
|
196
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
197
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
198
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
199
|
-
Parameters: {"id"=>"foo"}
|
200
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (2.7ms)
|
201
|
-
Completed 404 Not Found in 28ms (Views: 27.5ms)
|
202
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
203
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
204
|
-
Parameters: {"id"=>"SC247974"}
|
205
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (4.0ms)
|
206
|
-
Completed 200 OK in 9ms (Views: 8.4ms)
|
207
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
208
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
209
|
-
Parameters: {"id"=>"05868270"}
|
210
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
211
|
-
Completed 200 OK in 1ms (Views: 0.6ms)
|
212
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
213
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
214
|
-
Parameters: {"id"=>"99999999"}
|
215
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
216
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
217
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
218
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
219
|
-
Completed 500 Internal Server Error in 1ms
|
220
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
221
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
222
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payments_service.xml.erb (0.5ms)
|
223
|
-
Completed 200 OK in 15ms (Views: 14.8ms)
|
224
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
225
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
226
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
227
|
-
Completed 500 Internal Server Error in 0ms
|
228
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
229
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
230
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
231
|
-
Completed 500 Internal Server Error in 0ms
|
232
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fyour-registration%2F12345%2Fworldpay%2Fsuccess%2F54321%2FNEWREG%3Flocale%3Den" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
233
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
234
|
-
Parameters: {"successURL"=>"http://example.com/your-registration/12345/worldpay/success/54321/NEWREG?locale=en"}
|
235
|
-
Redirected to http://example.com/your-registration/12345/worldpay/success/54321/NEWREG?locale=en&orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
236
|
-
Completed 302 Found in 1ms
|
237
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
238
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
239
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
240
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
241
|
-
Completed 302 Found in 1ms
|
242
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
243
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:43:06 +0000
|
244
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
245
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
246
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
247
|
-
Parameters: {"id"=>"SC247974"}
|
248
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (3.4ms)
|
249
|
-
Completed 200 OK in 27ms (Views: 26.6ms)
|
250
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
251
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
252
|
-
Parameters: {"id"=>"foo"}
|
253
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.5ms)
|
254
|
-
Completed 404 Not Found in 5ms (Views: 5.3ms)
|
255
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
256
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
257
|
-
Parameters: {"id"=>"05868270"}
|
258
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
259
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
260
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
261
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
262
|
-
Parameters: {"id"=>"99999999"}
|
263
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
264
|
-
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
265
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
266
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
267
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
268
|
-
Completed 500 Internal Server Error in 0ms
|
269
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
270
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
271
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
272
|
-
Completed 500 Internal Server Error in 0ms
|
273
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fyour-registration%2F12345%2Fworldpay%2Fsuccess%2F54321%2FNEWREG%3Flocale%3Den" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
274
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
275
|
-
Parameters: {"successURL"=>"http://example.com/your-registration/12345/worldpay/success/54321/NEWREG?locale=en"}
|
276
|
-
Redirected to http://example.com/your-registration/12345/worldpay/success/54321/NEWREG?locale=en&orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
277
|
-
Completed 302 Found in 1ms
|
278
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
279
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
280
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
281
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
282
|
-
Completed 302 Found in 1ms
|
283
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
284
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
285
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payments_service.xml.erb (0.4ms)
|
286
|
-
Completed 200 OK in 13ms (Views: 12.7ms)
|
287
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
288
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
289
|
-
Completed 500 Internal Server Error in 0ms
|
290
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
291
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-01-20 15:43:51 +0000
|
292
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
293
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
294
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
295
|
-
Parameters: {"id"=>"99999999"}
|
296
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (2.6ms)
|
297
|
-
Completed 404 Not Found in 26ms (Views: 26.0ms)
|
298
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
299
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
300
|
-
Parameters: {"id"=>"SC247974"}
|
301
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
|
302
|
-
Completed 200 OK in 5ms (Views: 4.4ms)
|
303
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
304
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
305
|
-
Parameters: {"id"=>"foo"}
|
306
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
307
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
308
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
309
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
310
|
-
Parameters: {"id"=>"05868270"}
|
311
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
312
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
313
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
314
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
315
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
316
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
317
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
318
|
-
Completed 500 Internal Server Error in 0ms
|
319
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
320
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
321
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
322
|
-
Completed 500 Internal Server Error in 1ms
|
323
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fyour-registration%2F12345%2Fworldpay%2Fsuccess%2F54321%2FNEWREG%3Flocale%3Den" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
324
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
325
|
-
Parameters: {"successURL"=>"http://example.com/your-registration/12345/worldpay/success/54321/NEWREG?locale=en"}
|
326
|
-
Redirected to http://example.com/your-registration/12345/worldpay/success/54321/NEWREG?locale=en&orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
327
|
-
Completed 302 Found in 1ms
|
328
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
329
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
330
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
331
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
332
|
-
Completed 302 Found in 1ms
|
333
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
334
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
335
|
-
Completed 500 Internal Server Error in 1ms
|
336
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:44:28 +0000
|
337
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
338
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payments_service.xml.erb (0.5ms)
|
339
|
-
Completed 200 OK in 14ms (Views: 13.3ms)
|
340
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
341
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
342
|
-
Parameters: {"id"=>"SC247974"}
|
343
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (2.8ms)
|
344
|
-
Completed 200 OK in 31ms (Views: 30.5ms)
|
345
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
346
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
347
|
-
Parameters: {"id"=>"foo"}
|
348
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.3ms)
|
349
|
-
Completed 404 Not Found in 5ms (Views: 4.4ms)
|
350
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
351
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
352
|
-
Parameters: {"id"=>"05868270"}
|
353
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
354
|
-
Completed 200 OK in 1ms (Views: 0.5ms)
|
355
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
356
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
357
|
-
Parameters: {"id"=>"99999999"}
|
358
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
359
|
-
Completed 404 Not Found in 1ms (Views: 0.5ms)
|
360
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
361
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
362
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
363
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
364
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
365
|
-
Completed 500 Internal Server Error in 0ms
|
366
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
367
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
368
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payments_service.xml.erb (0.5ms)
|
369
|
-
Completed 200 OK in 15ms (Views: 14.6ms)
|
370
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
371
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
372
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
373
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
374
|
-
Completed 302 Found in 1ms
|
375
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fyour-registration%2F12345%2Fworldpay%2Fsuccess%2F54321%2FNEWREG%3Flocale%3Den" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
376
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
377
|
-
Parameters: {"successURL"=>"http://example.com/your-registration/12345/worldpay/success/54321/NEWREG?locale=en"}
|
378
|
-
Redirected to http://example.com/your-registration/12345/worldpay/success/54321/NEWREG?locale=en&orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
379
|
-
Completed 302 Found in 1ms
|
380
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-01-20 15:47:16 +0000
|
381
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
382
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
383
|
-
Completed 500 Internal Server Error in 0ms
|
384
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:50:53 +0000
|
385
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-01-20 15:50:53 +0000
|
386
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:50:53 +0000
|
387
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
388
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payments_service.xml.erb (2.7ms)
|
389
|
-
Completed 200 OK in 28ms (Views: 27.2ms)
|
390
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:50:53 +0000
|
391
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
392
|
-
Completed 500 Internal Server Error in 0ms
|
393
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-01-20 15:50:53 +0000
|
394
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
395
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
396
|
-
Completed 500 Internal Server Error in 0ms
|
397
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:50:53 +0000
|
398
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
399
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
400
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
401
|
-
Completed 302 Found in 1ms
|
402
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:50:53 +0000
|
403
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:50:53 +0000
|
404
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
405
|
-
Parameters: {"id"=>"SC247974"}
|
406
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.4ms)
|
407
|
-
Completed 200 OK in 19ms (Views: 18.8ms)
|
408
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-01-20 15:50:53 +0000
|
409
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
410
|
-
Parameters: {"id"=>"foo"}
|
411
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.4ms)
|
412
|
-
Completed 404 Not Found in 5ms (Views: 4.5ms)
|
413
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-01-20 15:50:53 +0000
|
414
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
415
|
-
Parameters: {"id"=>"05868270"}
|
416
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
417
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
418
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-01-20 15:50:53 +0000
|
419
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
420
|
-
Parameters: {"id"=>"99999999"}
|
421
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
422
|
-
Completed 404 Not Found in 1ms (Views: 0.6ms)
|
423
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:54:20 +0000
|
424
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-01-20 15:54:20 +0000
|
425
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:54:20 +0000
|
426
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
427
|
-
Completed 500 Internal Server Error in 4ms
|
428
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:54:20 +0000
|
429
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
430
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payments_service.xml.erb (4.7ms)
|
431
|
-
Completed 200 OK in 38ms (Views: 37.8ms)
|
432
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-01-20 15:54:20 +0000
|
433
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
434
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
435
|
-
Completed 500 Internal Server Error in 1ms
|
436
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:54:20 +0000
|
437
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
438
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
439
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
440
|
-
Completed 302 Found in 0ms
|
441
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:55:47 +0000
|
442
|
-
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2020-01-20 15:55:47 +0000
|
443
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
444
|
-
Parameters: {"id"=>"05868270"}
|
445
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (2.6ms)
|
446
|
-
Completed 200 OK in 30ms (Views: 30.0ms)
|
447
|
-
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2020-01-20 15:55:48 +0000
|
448
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
449
|
-
Parameters: {"id"=>"foo"}
|
450
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.4ms)
|
451
|
-
Completed 404 Not Found in 6ms (Views: 5.4ms)
|
452
|
-
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2020-01-20 15:55:48 +0000
|
453
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
454
|
-
Parameters: {"id"=>"SC247974"}
|
455
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (0.1ms)
|
456
|
-
Completed 200 OK in 1ms (Views: 0.4ms)
|
457
|
-
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2020-01-20 15:55:48 +0000
|
458
|
-
Processing by DefraRubyMocks::CompanyController#show as HTML
|
459
|
-
Parameters: {"id"=>"99999999"}
|
460
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (0.1ms)
|
461
|
-
Completed 404 Not Found in 1ms (Views: 0.4ms)
|
462
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:55:48 +0000
|
463
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
464
|
-
Rendered /Users/acruikshanks/projects/defra/defra-ruby-mocks/app/views/defra_ruby_mocks/worldpay/payments_service.xml.erb (0.6ms)
|
465
|
-
Completed 200 OK in 13ms (Views: 12.4ms)
|
466
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:55:48 +0000
|
467
|
-
Processing by DefraRubyMocks::WorldpayController#payments_service as HTML
|
468
|
-
Completed 500 Internal Server Error in 0ms
|
469
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Fforthewin" for 127.0.0.1 at 2020-01-20 15:55:48 +0000
|
470
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
471
|
-
Parameters: {"successURL"=>"http://example.com/forthewin"}
|
472
|
-
Completed 500 Internal Server Error in 0ms
|
473
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher?successURL=http%3A%2F%2Fexample.com%2Ffo%2F12345%2Fworldpay%2Fsuccess" for 127.0.0.1 at 2020-01-20 15:55:48 +0000
|
474
|
-
Processing by DefraRubyMocks::WorldpayController#dispatcher as HTML
|
475
|
-
Parameters: {"successURL"=>"http://example.com/fo/12345/worldpay/success"}
|
476
|
-
Redirected to http://example.com/fo/12345/worldpay/success?orderKey=admincode1^^987654&paymentStatus=AUTHORISED&paymentAmount=10500&paymentCurrency=GBP&mac=0ba5271e1ed1b26f9bb428ef7fb536a4&source=WP
|
477
|
-
Completed 302 Found in 1ms
|
478
|
-
Started GET "/defra_ruby_mocks/worldpay/payments-service" for 127.0.0.1 at 2020-01-20 15:55:48 +0000
|
479
|
-
Started GET "/defra_ruby_mocks/worldpay/dispatcher" for 127.0.0.1 at 2020-01-20 15:55:48 +0000
|