webspicy 0.27.1 → 0.27.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 80a8b39983717af6c599f4ef9fbd88bacfa408dbd16089f7b559ca8de2b46e39
4
- data.tar.gz: c899bfe6f59ef4aec92e897bff3cff3899103feb0ca1640132a0a79c3968b50b
3
+ metadata.gz: 06c782fc5226424943de5bedd222660c88fc0db2756894403976c0278070c16a
4
+ data.tar.gz: 6c4895208dc8e47a8b29e2b479ab08d0267ebe1c085a968c0f5d4804095c3ce6
5
5
  SHA512:
6
- metadata.gz: ba81af580827248b93f6ca3720ed845bc8010071a5311c134b8c4090b0bda65a8927298124c4cd18e8d2af9612cca55c9f1ebc25e219fac145d4c196ed8c771f
7
- data.tar.gz: 1b7fa160cda6a2b8cb412b46e928104e33c14b9fba3bebdbffd47aa68b72237b02622c3656277f19441f55f2951f140732c67568499686d60bbc038440a3a529
6
+ metadata.gz: 0d4ff23b65dcf8ac991f9955559424fea14c98463b5e5b7e9614a897dce943460edd7782fbe1c577b47ac1ff6db0fb577ed46252b4c2685ed8e0cecf150e302d
7
+ data.tar.gz: d019b8697c743b4fadf5163d8d0eab1c739d56d1ecd9708827a05b42f42a8712ea17ba154a8577a25ab3cf0105da80407828a7c3da84fc2037131c0b029b72e3
@@ -8,7 +8,9 @@ module Webspicy
8
8
  end
9
9
 
10
10
  def must?
11
- !test_case.is_expected_status?(204)
11
+ test_case.has_expected_status? && \
12
+ !test_case.is_expected_status?(204) && \
13
+ !test_case.is_redirect_expected_status?
12
14
  end
13
15
 
14
16
  def call
@@ -2,7 +2,7 @@ module Webspicy
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 27
5
- TINY = 1
5
+ TINY = 2
6
6
  end
7
7
  VERSION = "#{Version::MAJOR}.#{Version::MINOR}.#{Version::TINY}"
8
8
  end
@@ -15,7 +15,7 @@ module Webspicy
15
15
  attr_reader :info, :tags, :paths
16
16
 
17
17
  def ensure_tags(tags)
18
- @tags = (@tags + tags).uniq.sort_by{|t| t[:name] }
18
+ @tags = (@tags + tags).uniq
19
19
  end
20
20
 
21
21
  def ensure_path(path)
@@ -16,17 +16,28 @@ module Webspicy
16
16
  def after_each
17
17
  @datastruct.ensure_tags(tags_for(specification))
18
18
  @datastruct.ensure_path(base_path_for(specification))
19
- @datastruct.ensure_path(base_verb_for(service))
19
+ @datastruct.ensure_path(base_verb_for(test_case))
20
20
  @datastruct.ensure_path(base_request_body_for(service))
21
21
  @datastruct.ensure_path(base_request_example_for(test_case))
22
22
  @datastruct.ensure_path(base_request_response_for(invocation))
23
23
  end
24
24
 
25
25
  def report
26
- json = Support::DeepMerge.deep_merge(
26
+ json = DataStruct::MERGER.deep_merge(
27
27
  @base,
28
28
  @datastruct.to_openapi_data,
29
29
  )
30
+ order = ["get", "post", "patch", "delete"]
31
+ json["paths"].keys.each do |path|
32
+ sorted = {}
33
+ json["paths"][path]
34
+ .keys
35
+ .sort_by{|k| order.index(k) || -1 }
36
+ .each do |k|
37
+ sorted[k] = json["paths"][path][k]
38
+ end
39
+ json["paths"][path] = sorted
40
+ end
30
41
  @output_file.write(JSON.pretty_generate(json))
31
42
  end
32
43
 
@@ -36,12 +36,13 @@ module Webspicy
36
36
  })
37
37
  end
38
38
 
39
- def base_verb_for(service)
39
+ def base_verb_for(test_case)
40
+ service = test_case.service
40
41
  verb_defn = {
41
42
  summary: service.name,
42
43
  description: service.description,
43
44
  tags: tags_for(service.specification).map{|s| s[:name] },
44
- parameters: parameters_for(service),
45
+ parameters: parameters_for(service, test_case),
45
46
  }
46
47
 
47
48
  verb_defn = service.conditions.inject(verb_defn) do |memo, p|
@@ -61,7 +62,6 @@ module Webspicy
61
62
 
62
63
  schema = actual_body_schema(service)
63
64
  return nil if empty_schema?(schema)
64
- puts schema.inspect
65
65
 
66
66
  content_type = content_type_for(service)
67
67
 
@@ -120,7 +120,12 @@ module Webspicy
120
120
  content = {
121
121
  content_type => {
122
122
  schema: schema&.to_json_schema,
123
- example: example,
123
+ examples: {
124
+ test_case.description => {
125
+ description: test_case.description,
126
+ value: example,
127
+ },
128
+ },
124
129
  }.compact
125
130
  }
126
131
  end
@@ -144,17 +149,31 @@ module Webspicy
144
149
  }]
145
150
  end
146
151
 
147
- def parameters_for(service)
148
- schema = actual_input_schema(service)
149
- params = service.specification.url_placeholders.map{|p|
150
- {
151
- in: 'path',
152
- name: p,
153
- schema: { type: 'string' },
154
- required: true
152
+ def parameters_for(service, test_case)
153
+ schema = actual_parameters_schema(service)
154
+ if schema.is_a?(Finitio::HashBasedType)
155
+ schema.heading.map do |attr|
156
+ {
157
+ in: 'path',
158
+ name: attr.name,
159
+ description: attr.metadata[:description],
160
+ schema: attr.to_json_schema,
161
+ required: true,
162
+ example: test_case.params[attr.name.to_s]
163
+ }.compact
164
+ end
165
+ else
166
+ params = service.specification.url_placeholders.map{|p|
167
+ {
168
+ in: 'path',
169
+ name: p,
170
+ schema: { type: 'string' },
171
+ required: true,
172
+ example: test_case.params[attr.name.to_s]
173
+ }
155
174
  }
156
- }
157
- params.empty? ? nil : params
175
+ params.empty? ? nil : params
176
+ end
158
177
  end
159
178
 
160
179
  def actual_output_schema(test_case, counterexample)
@@ -169,6 +188,19 @@ module Webspicy
169
188
  service.input_schema['Main']
170
189
  end
171
190
 
191
+ def actual_parameters_schema(service)
192
+ schema = actual_input_schema(service)
193
+
194
+ a_schema = schema
195
+ a_schema = schema.target if schema.is_a?(Finitio::AliasType)
196
+ return schema unless a_schema.is_a?(Finitio::HashBasedType)
197
+
198
+ in_url = service.specification.url_placeholders.map(&:to_sym)
199
+ return schema if in_url.empty?
200
+
201
+ a_schema.project(in_url)
202
+ end
203
+
172
204
  def actual_body_schema(service)
173
205
  schema = actual_input_schema(service)
174
206
 
@@ -62,6 +62,11 @@ module Webspicy
62
62
  not expected[:status].nil?
63
63
  end
64
64
 
65
+ def is_redirect_expected_status?
66
+ start = expected_status.to_int
67
+ start >= 300 && start < 400
68
+ end
69
+
65
70
  def expected_headers
66
71
  expected[:headers] || {}
67
72
  end
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.27.1
4
+ version: 0.27.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: 2025-03-22 00:00:00.000000000 Z
11
+ date: 2025-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake