webspicy 0.20.24 → 0.21.2
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 +1 -1
- data/bin/webspicy +4 -0
- data/lib/webspicy/configuration.rb +8 -0
- data/lib/webspicy/tester/file_checker.rb +1 -1
- data/lib/webspicy/tester/reporter/exceptions.rb +6 -2
- data/lib/webspicy/tester/reporter/file_summary.rb +6 -2
- data/lib/webspicy/tester/reporter/summary.rb +12 -8
- data/lib/webspicy/tester/reporter.rb +2 -1
- data/lib/webspicy/tester.rb +28 -10
- data/lib/webspicy/version.rb +2 -2
- data/lib/webspicy/web/client/http_client.rb +9 -5
- data/lib/webspicy/web/specification/file_upload.rb +2 -1
- data/spec/unit/test_configuration.rb +29 -0
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4ed553ffebc5521719b8ae05848942894671b9fc5599af596697bb774d3503d
|
4
|
+
data.tar.gz: 40c18bb7c4f4e6549a81d9cff8f671d5dc239bca5bf44a7f205c08cde901af09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f5ca666ad6d74f5a070671bf7ec97e9f40922322b24fdbfb20767afe08b2bbd31db7801b2c5d580d6e9a5adcbc44040a5431f23943941a9828c9cea04c40b4b
|
7
|
+
data.tar.gz: cbf46a595dc6365e65b38442097f617c5f845a7daea54c18aeac2a374dec46949061b5a534577a57ba68ea19bfe627abae2e6f2b9b0fa59f1ffa35ac5494316d
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
[](https://github.com/enspirit/webspicy/actions/workflows/integration.yml/badge.svg)
|
2
2
|
# Webspicy
|
3
3
|
|
4
4
|
A specification and test framework for web services seen as black-box software
|
data/bin/webspicy
CHANGED
@@ -21,6 +21,7 @@
|
|
21
21
|
#/ - TAG=... execute only tests matching the given tag
|
22
22
|
#/ - FAILFAST=yes|no stop executing tests on first failure
|
23
23
|
#/ - INSECURE=yes|no allow insecure server connections when using SSL
|
24
|
+
#/ - WATCH=FOLDER,FOLDER,... run in watch mode (run tests when files change)
|
24
25
|
#/
|
25
26
|
require 'webspicy'
|
26
27
|
require 'webspicy/tester'
|
@@ -42,6 +43,9 @@ ARGV.options do |opts|
|
|
42
43
|
opts.on('-k', '--insecure') {
|
43
44
|
ENV['INSECURE'] = 'yes'
|
44
45
|
}
|
46
|
+
opts.on('-w', '--watch') {
|
47
|
+
ENV['WATCH'] = '.'
|
48
|
+
}
|
45
49
|
opts.on("--debug") {
|
46
50
|
ENV['LOG_LEVEL'] = 'DEBUG'
|
47
51
|
Webspicy::LOGGER.level = Logger.const_get(ENV['LOG_LEVEL'])
|
@@ -43,6 +43,7 @@ module Webspicy
|
|
43
43
|
@scope_factory = ->(config){ Scope.new(config) }
|
44
44
|
@client = Web::HttpClient
|
45
45
|
@reporter = default_reporter
|
46
|
+
@watch_list = default_watchlist
|
46
47
|
Path.require_tree(@folder/'support') if (@folder/'support').exists?
|
47
48
|
@world = Support::World.new(folder/'world', self)
|
48
49
|
yield(self) if block_given?
|
@@ -451,6 +452,13 @@ module Webspicy
|
|
451
452
|
end
|
452
453
|
attr_accessor :reporter
|
453
454
|
|
455
|
+
def default_watchlist
|
456
|
+
return nil unless list = ENV['WATCH']
|
457
|
+
|
458
|
+
list.split(',').map{|x| Path.pwd/x }
|
459
|
+
end
|
460
|
+
attr_accessor :watch_list
|
461
|
+
|
454
462
|
# Returns the Data system to use for parsing schemas
|
455
463
|
#
|
456
464
|
# The data system associated with a configuration is build when the
|
@@ -6,8 +6,7 @@ module Webspicy
|
|
6
6
|
|
7
7
|
def initialize(*args, &bl)
|
8
8
|
super
|
9
|
-
|
10
|
-
@failed_results = []
|
9
|
+
clear
|
11
10
|
end
|
12
11
|
attr_reader :failed_results, :spec_file_errors
|
13
12
|
|
@@ -24,6 +23,11 @@ module Webspicy
|
|
24
23
|
report_failed_results
|
25
24
|
end
|
26
25
|
|
26
|
+
def clear
|
27
|
+
@spec_file_errors = []
|
28
|
+
@failed_results = []
|
29
|
+
end
|
30
|
+
|
27
31
|
private
|
28
32
|
|
29
33
|
def report_spec_file_errors
|
@@ -5,8 +5,7 @@ module Webspicy
|
|
5
5
|
|
6
6
|
def initialize(*args, &bl)
|
7
7
|
super
|
8
|
-
|
9
|
-
@errors_count = 0
|
8
|
+
clear
|
10
9
|
end
|
11
10
|
attr_reader :spec_files_count, :errors_count
|
12
11
|
|
@@ -31,6 +30,11 @@ module Webspicy
|
|
31
30
|
io.flush
|
32
31
|
end
|
33
32
|
|
33
|
+
def clear
|
34
|
+
@spec_files_count = 0
|
35
|
+
@errors_count = 0
|
36
|
+
end
|
37
|
+
|
34
38
|
private
|
35
39
|
|
36
40
|
def success?
|
@@ -5,14 +5,7 @@ module Webspicy
|
|
5
5
|
|
6
6
|
def initialize(*args, &bl)
|
7
7
|
super
|
8
|
-
|
9
|
-
@examples_count = 0
|
10
|
-
@counterexamples_count = 0
|
11
|
-
@assertions_count = 0
|
12
|
-
#
|
13
|
-
@spec_file_errors_count = 0
|
14
|
-
@errors_count = 0
|
15
|
-
@failures_count = 0
|
8
|
+
clear
|
16
9
|
end
|
17
10
|
attr_reader :spec_files_count, :examples_count, :counterexamples_count
|
18
11
|
attr_reader :assertions_count
|
@@ -54,6 +47,17 @@ module Webspicy
|
|
54
47
|
io.flush
|
55
48
|
end
|
56
49
|
|
50
|
+
def clear
|
51
|
+
@spec_files_count = 0
|
52
|
+
@examples_count = 0
|
53
|
+
@counterexamples_count = 0
|
54
|
+
@assertions_count = 0
|
55
|
+
#
|
56
|
+
@spec_file_errors_count = 0
|
57
|
+
@errors_count = 0
|
58
|
+
@failures_count = 0
|
59
|
+
end
|
60
|
+
|
57
61
|
def total_error_count
|
58
62
|
@spec_file_errors_count + @errors_count + @failures_count
|
59
63
|
end
|
data/lib/webspicy/tester.rb
CHANGED
@@ -32,9 +32,23 @@ module Webspicy
|
|
32
32
|
end
|
33
33
|
|
34
34
|
def call
|
35
|
+
res = call_once(true)
|
36
|
+
if folders = config.watch_list
|
37
|
+
require 'listen'
|
38
|
+
listener = Listen.to(*folders) do
|
39
|
+
reporter.clear
|
40
|
+
res = call_once(false)
|
41
|
+
end
|
42
|
+
listener.start
|
43
|
+
sleep
|
44
|
+
end
|
45
|
+
res
|
46
|
+
end
|
47
|
+
|
48
|
+
def call_once(all = true)
|
35
49
|
reporter.init(self)
|
36
50
|
begin
|
37
|
-
run_config
|
51
|
+
run_config(all)
|
38
52
|
rescue FailFast
|
39
53
|
end
|
40
54
|
reporter.report
|
@@ -64,19 +78,21 @@ module Webspicy
|
|
64
78
|
|
65
79
|
protected
|
66
80
|
|
67
|
-
def run_config
|
81
|
+
def run_config(all = true)
|
68
82
|
config.each_scope do |scope|
|
69
83
|
@scope = scope
|
70
84
|
@hooks = Support::Hooks.for(scope.config)
|
71
85
|
@client = scope.get_client
|
72
|
-
run_scope
|
86
|
+
run_scope(all)
|
73
87
|
end
|
74
88
|
end
|
75
89
|
|
76
|
-
def run_scope
|
77
|
-
|
78
|
-
|
79
|
-
|
90
|
+
def run_scope(all = true)
|
91
|
+
if all
|
92
|
+
reporter.before_all
|
93
|
+
hooks.fire_before_all(self)
|
94
|
+
reporter.before_all_done
|
95
|
+
end
|
80
96
|
reporter.before_scope
|
81
97
|
scope.each_specification_file do |spec_file|
|
82
98
|
@specification = load_specification(spec_file)
|
@@ -90,9 +106,11 @@ module Webspicy
|
|
90
106
|
end
|
91
107
|
end
|
92
108
|
reporter.scope_done
|
93
|
-
|
94
|
-
|
95
|
-
|
109
|
+
if all
|
110
|
+
reporter.after_all
|
111
|
+
hooks.fire_after_all(self)
|
112
|
+
reporter.after_all_done
|
113
|
+
end
|
96
114
|
end
|
97
115
|
|
98
116
|
def load_specification(spec_file)
|
data/lib/webspicy/version.rb
CHANGED
@@ -55,8 +55,8 @@ module Webspicy
|
|
55
55
|
def options(url, params = {}, headers = nil, body = nil)
|
56
56
|
info_request("OPTIONS", url, params, headers, body)
|
57
57
|
|
58
|
-
|
59
|
-
http_opts = http_options
|
58
|
+
url = url + "?" + Rack::Utils.build_query(params) if !params.empty?
|
59
|
+
http_opts = http_options
|
60
60
|
@last_response = HTTP[headers || {}].options(url, http_opts)
|
61
61
|
|
62
62
|
debug_response(@last_response)
|
@@ -67,8 +67,8 @@ module Webspicy
|
|
67
67
|
def get(url, params = {}, headers = nil, body = nil)
|
68
68
|
info_request("GET", url, params, headers, body)
|
69
69
|
|
70
|
-
|
71
|
-
http_opts = http_options
|
70
|
+
url = url + "?" + Rack::Utils.build_query(params) if !params.empty?
|
71
|
+
http_opts = http_options
|
72
72
|
@last_response = HTTP[headers || {}].get(url, http_opts)
|
73
73
|
|
74
74
|
debug_response(@last_response)
|
@@ -111,6 +111,7 @@ module Webspicy
|
|
111
111
|
def patch(url, params = {}, headers = nil, body = nil)
|
112
112
|
info_request("PATCH", url, params, headers, body)
|
113
113
|
|
114
|
+
url = url + "?" + Rack::Utils.build_query(params) if body && !params.empty?
|
114
115
|
headers ||= {}
|
115
116
|
headers['Content-Type'] ||= 'application/json'
|
116
117
|
http_opts = http_options(body: params.to_json)
|
@@ -124,6 +125,7 @@ module Webspicy
|
|
124
125
|
def put(url, params = {}, headers = nil, body = nil)
|
125
126
|
info_request("PUT", url, params, headers, body)
|
126
127
|
|
128
|
+
url = url + "?" + Rack::Utils.build_query(params) if body && !params.empty?
|
127
129
|
headers ||= {}
|
128
130
|
headers['Content-Type'] ||= 'application/json'
|
129
131
|
http_opts = http_options(body: params.to_json)
|
@@ -137,6 +139,7 @@ module Webspicy
|
|
137
139
|
def post_form(url, params = {}, headers = nil, body = nil)
|
138
140
|
info_request("POST", url, params, headers, body)
|
139
141
|
|
142
|
+
url = url + "?" + Rack::Utils.build_query(params) if body && !params.empty?
|
140
143
|
http_opts = http_options(form: params)
|
141
144
|
@last_response = HTTP[headers || {}].post(url, http_opts)
|
142
145
|
|
@@ -148,6 +151,7 @@ module Webspicy
|
|
148
151
|
def delete(url, params = {}, headers = nil, body = nil)
|
149
152
|
info_request("DELETE", url, params, headers, body)
|
150
153
|
|
154
|
+
url = url + "?" + Rack::Utils.build_query(params) if body && !params.empty?
|
151
155
|
http_opts = http_options(body: params.to_json)
|
152
156
|
@last_response = HTTP[headers || {}].delete(url, http_opts)
|
153
157
|
|
@@ -156,7 +160,7 @@ module Webspicy
|
|
156
160
|
@last_response
|
157
161
|
end
|
158
162
|
|
159
|
-
def http_options(extra)
|
163
|
+
def http_options(extra = {})
|
160
164
|
if config.insecure
|
161
165
|
ctx = OpenSSL::SSL::SSLContext.new
|
162
166
|
ctx.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
@@ -184,6 +184,35 @@ module Webspicy
|
|
184
184
|
end
|
185
185
|
end
|
186
186
|
|
187
|
+
describe 'watch_list' do
|
188
|
+
|
189
|
+
it 'is nil by default' do
|
190
|
+
config = Configuration.new
|
191
|
+
expect(config.watch_list).to be_nil
|
192
|
+
end
|
193
|
+
|
194
|
+
it 'supports a single relative folder on WATCH env variable' do
|
195
|
+
ENV['WATCH'] = 'a_folder'
|
196
|
+
config = Configuration.new
|
197
|
+
expect(config.watch_list).to eql([Path.pwd/"a_folder"])
|
198
|
+
ENV.delete('WATCH')
|
199
|
+
end
|
200
|
+
|
201
|
+
it 'supports a commalist on WATCH env variable' do
|
202
|
+
ENV['WATCH'] = 'a_folder,another'
|
203
|
+
config = Configuration.new
|
204
|
+
expect(config.watch_list).to eql([Path.pwd/"a_folder", Path.pwd/'another'])
|
205
|
+
ENV.delete('WATCH')
|
206
|
+
end
|
207
|
+
|
208
|
+
it 'supports absolute folders too' do
|
209
|
+
ENV['WATCH'] = 'a_folder,/tmp'
|
210
|
+
config = Configuration.new
|
211
|
+
expect(config.watch_list).to eql([Path.pwd/"a_folder", Path('/tmp')])
|
212
|
+
ENV.delete('WATCH')
|
213
|
+
end
|
214
|
+
end
|
215
|
+
|
187
216
|
describe 'insecure' do
|
188
217
|
|
189
218
|
it 'is false by default' do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: webspicy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bernard Lambeau
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-07-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -246,6 +246,20 @@ dependencies:
|
|
246
246
|
- - "~>"
|
247
247
|
- !ruby/object:Gem::Version
|
248
248
|
version: 0.7.0
|
249
|
+
- !ruby/object:Gem::Dependency
|
250
|
+
name: listen
|
251
|
+
requirement: !ruby/object:Gem::Requirement
|
252
|
+
requirements:
|
253
|
+
- - "~>"
|
254
|
+
- !ruby/object:Gem::Version
|
255
|
+
version: '3.7'
|
256
|
+
type: :runtime
|
257
|
+
prerelease: false
|
258
|
+
version_requirements: !ruby/object:Gem::Requirement
|
259
|
+
requirements:
|
260
|
+
- - "~>"
|
261
|
+
- !ruby/object:Gem::Version
|
262
|
+
version: '3.7'
|
249
263
|
description: Webspicy helps testing web services as software operation black boxes
|
250
264
|
email: blambeau@gmail.com
|
251
265
|
executables:
|
@@ -394,7 +408,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
394
408
|
- !ruby/object:Gem::Version
|
395
409
|
version: '0'
|
396
410
|
requirements: []
|
397
|
-
rubygems_version: 3.
|
411
|
+
rubygems_version: 3.3.7
|
398
412
|
signing_key:
|
399
413
|
specification_version: 4
|
400
414
|
summary: Webspicy helps testing web services as software operation black boxes!
|