mini-apivore 0.1.2 → 0.1.7
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/lib/mini_apivore.rb +1 -0
- data/lib/mini_apivore/http_codes.rb +1 -0
- data/lib/mini_apivore/to_param.rb +84 -0
- data/lib/mini_apivore/validation.rb +6 -1
- data/lib/mini_apivore/version.rb +1 -1
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 26599781a03eee8ebef61000087ab80dc0b77b8ae07077fbd3b674e7d44c1407
|
4
|
+
data.tar.gz: ff7c1e4a2d7eede149de87cec45c3729f42406d715f3a4142b0547bbfcee7897
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b7e8a64415e9a4279c97411f1dea516869fc6d207803eb8c1e2a811daa1d276d923d5e4c3a4f271f4dd7f63ff85d31bf50056523b20ef5d07f5c470d5169d06
|
7
|
+
data.tar.gz: 8d41837a1b7a1360d57b8fa469e673815b155eb61dce3ea5e65330e14e7b0f5de947e12962e97c4e3b03649ee0a48ed9b9d9985db61f4dd42a9c49b8a3f5761c
|
data/lib/mini_apivore.rb
CHANGED
@@ -0,0 +1,84 @@
|
|
1
|
+
require "cgi"
|
2
|
+
|
3
|
+
class Object
|
4
|
+
# Alias of <tt>to_s</tt>.
|
5
|
+
def to_param
|
6
|
+
to_s
|
7
|
+
end
|
8
|
+
|
9
|
+
# Converts an object into a string suitable for use as a URL query string,
|
10
|
+
# using the given <tt>key</tt> as the param name.
|
11
|
+
def to_query(key)
|
12
|
+
"#{CGI.escape(key.to_param)}=#{CGI.escape(to_param.to_s)}"
|
13
|
+
end
|
14
|
+
end unless Object.method_defined?( :to_param )
|
15
|
+
|
16
|
+
class NilClass
|
17
|
+
# Returns +self+.
|
18
|
+
def to_param
|
19
|
+
self
|
20
|
+
end
|
21
|
+
end unless NilClass.method_defined?( :to_param )
|
22
|
+
|
23
|
+
class TrueClass
|
24
|
+
# Returns +self+.
|
25
|
+
def to_param
|
26
|
+
self
|
27
|
+
end
|
28
|
+
end unless TrueClass.method_defined?( :to_param )
|
29
|
+
|
30
|
+
class FalseClass
|
31
|
+
# Returns +self+.
|
32
|
+
def to_param
|
33
|
+
self
|
34
|
+
end
|
35
|
+
end unless FalseClass.method_defined?( :to_param )
|
36
|
+
|
37
|
+
class Array
|
38
|
+
# Calls <tt>to_param</tt> on all its elements and joins the result with
|
39
|
+
# slashes. This is used by <tt>url_for</tt> in Action Pack.
|
40
|
+
def to_param
|
41
|
+
collect(&:to_param).join "/"
|
42
|
+
end
|
43
|
+
|
44
|
+
# Converts an array into a string suitable for use as a URL query string,
|
45
|
+
# using the given +key+ as the param name.
|
46
|
+
#
|
47
|
+
# ['Rails', 'coding'].to_query('hobbies') # => "hobbies%5B%5D=Rails&hobbies%5B%5D=coding"
|
48
|
+
def to_query(key)
|
49
|
+
prefix = "#{key}[]"
|
50
|
+
|
51
|
+
if empty?
|
52
|
+
nil.to_query(prefix)
|
53
|
+
else
|
54
|
+
collect { |value| value.to_query(prefix) }.join "&"
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end unless Array.method_defined?( :to_param )
|
58
|
+
|
59
|
+
class Hash
|
60
|
+
# Returns a string representation of the receiver suitable for use as a URL
|
61
|
+
# query string:
|
62
|
+
#
|
63
|
+
# {name: 'David', nationality: 'Danish'}.to_query
|
64
|
+
# # => "name=David&nationality=Danish"
|
65
|
+
#
|
66
|
+
# An optional namespace can be passed to enclose key names:
|
67
|
+
#
|
68
|
+
# {name: 'David', nationality: 'Danish'}.to_query('user')
|
69
|
+
# # => "user%5Bname%5D=David&user%5Bnationality%5D=Danish"
|
70
|
+
#
|
71
|
+
# The string pairs "key=value" that conform the query string
|
72
|
+
# are sorted lexicographically in ascending order.
|
73
|
+
#
|
74
|
+
# This method is also aliased as +to_param+.
|
75
|
+
def to_query(namespace = nil)
|
76
|
+
collect do |key, value|
|
77
|
+
unless (value.is_a?(Hash) || value.is_a?(Array)) && value.empty?
|
78
|
+
value.to_query(namespace ? "#{namespace}[#{key}]" : key)
|
79
|
+
end
|
80
|
+
end.compact.sort! * "&"
|
81
|
+
end
|
82
|
+
|
83
|
+
alias_method :to_param, :to_query
|
84
|
+
end unless Hash.method_defined?( :to_param )
|
@@ -20,7 +20,12 @@ module MiniApivore
|
|
20
20
|
|
21
21
|
def check_route( verb, path, expected_response_code, params = {} )
|
22
22
|
prepare_action_env( verb, path, expected_response_code, params )
|
23
|
-
assert( match?,
|
23
|
+
assert( match?, <<FAIL )
|
24
|
+
Failed at: #{Thread.current.backtrace[2]}\n
|
25
|
+
Failure message: #{failure_message},\n
|
26
|
+
fullpath: #{full_path}, \n
|
27
|
+
params causing failure:#{params}
|
28
|
+
FAIL
|
24
29
|
end
|
25
30
|
|
26
31
|
def match?
|
data/lib/mini_apivore/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mini-apivore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- alekseyl
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-07-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json-schema
|
@@ -70,16 +70,16 @@ dependencies:
|
|
70
70
|
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- - "
|
73
|
+
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
75
|
+
version: 12.3.3
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- - "
|
80
|
+
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
82
|
+
version: 12.3.3
|
83
83
|
description: " Minitest adaptation of apivore gem,\n Provides
|
84
84
|
a tool for testing your application api against your swagger schema "
|
85
85
|
email:
|
@@ -96,6 +96,7 @@ files:
|
|
96
96
|
- lib/mini_apivore/http_codes.rb
|
97
97
|
- lib/mini_apivore/swagger.rb
|
98
98
|
- lib/mini_apivore/swagger_checker.rb
|
99
|
+
- lib/mini_apivore/to_param.rb
|
99
100
|
- lib/mini_apivore/validation.rb
|
100
101
|
- lib/mini_apivore/version.rb
|
101
102
|
homepage: https://github.com/alekseyl/mini-apivore
|
@@ -120,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
121
|
version: '0'
|
121
122
|
requirements: []
|
122
123
|
rubyforge_project:
|
123
|
-
rubygems_version: 2.6
|
124
|
+
rubygems_version: 2.7.6
|
124
125
|
signing_key:
|
125
126
|
specification_version: 4
|
126
127
|
summary: Minitest adaptation of an apivore gem
|