mm_json_client 0.1.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 +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/Guardfile +22 -0
- data/LICENSE.txt +21 -0
- data/README.md +151 -0
- data/Rakefile +33 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/examples/claim_next_free_ip.rb +73 -0
- data/examples/register_dns.rb +37 -0
- data/examples/release_ip.rb +59 -0
- data/examples/unregister_dns.rb +44 -0
- data/fixtures/vcr_cassettes/MmJsonClient_GenericType/basic_server_interaction/allows_a_user_to_log_in_and_out.yml +74 -0
- data/fixtures/vcr_cassettes/MmJsonClient_GenericType/basic_server_interaction/filters_a_list_of_users.yml +110 -0
- data/fixtures/vcr_cassettes/MmJsonClient_GenericType/basic_server_interaction/gets_a_list_of_users.yml +111 -0
- data/fixtures/vcr_cassettes/MmJsonClient_GenericType/basic_server_interaction/gets_a_user_by_reference.yml +110 -0
- data/fixtures/vcr_cassettes/MmJsonClient_GenericType/basic_server_interaction/responds_with_a_server_error_on_bad_auth.yml +39 -0
- data/fixtures/vcr_cassettes/MmJsonClient_GenericType/multiple_proxy_servers/connects_to_another_proxy_when_one_is_disabled.yml +72 -0
- data/fixtures/vcr_cassettes/MmJsonClient_GenericType/proxy_options/allows_a_separate_proxy_to_be_defined.yml +75 -0
- data/fixtures/vcr_cassettes/MmJsonClient_GenericType/ssl_options/allows_ignoring_bad_certificates.yml +74 -0
- data/generators/enum_def_generator.rb +22 -0
- data/generators/method_def_generator.rb +20 -0
- data/generators/type_def_generator.rb +50 -0
- data/generators/wasabi_extension.rb +45 -0
- data/lib/core_ext/hash_extension.rb +43 -0
- data/lib/core_ext/string_extension.rb +60 -0
- data/lib/core_ext/symbol_extension.rb +24 -0
- data/lib/mm_json_client.rb +64 -0
- data/lib/mm_json_client/api_definitions/enums.json +1 -0
- data/lib/mm_json_client/api_definitions/methods.json +1 -0
- data/lib/mm_json_client/api_definitions/types.json +1 -0
- data/lib/mm_json_client/client.rb +148 -0
- data/lib/mm_json_client/enums/enum_factory.rb +24 -0
- data/lib/mm_json_client/enums/generic_enum.rb +12 -0
- data/lib/mm_json_client/exceptions.rb +23 -0
- data/lib/mm_json_client/generic_type.rb +37 -0
- data/lib/mm_json_client/http_client/client.rb +54 -0
- data/lib/mm_json_client/json_rpc_http/client.rb +40 -0
- data/lib/mm_json_client/json_rpc_http/error.rb +18 -0
- data/lib/mm_json_client/json_rpc_http/exceptions.rb +10 -0
- data/lib/mm_json_client/json_rpc_http/response.rb +31 -0
- data/lib/mm_json_client/response_code.rb +6 -0
- data/lib/mm_json_client/type_factory.rb +83 -0
- data/lib/mm_json_client/version.rb +3 -0
- data/mm_json_client.gemspec +38 -0
- metadata +231 -0
@@ -0,0 +1,40 @@
|
|
1
|
+
require 'json'
|
2
|
+
require 'mm_json_client/http_client/client'
|
3
|
+
require 'mm_json_client/json_rpc_http/response'
|
4
|
+
|
5
|
+
module MmJsonClient
|
6
|
+
module JsonRpcHttp
|
7
|
+
# A helper client for doing JSON-RPC calls over http.
|
8
|
+
class Client
|
9
|
+
def initialize(base_url, options = {})
|
10
|
+
@http_client =
|
11
|
+
MmJsonClient::HttpClient::Client.new(base_url, options[:endpoint],
|
12
|
+
allowed_client_options(options))
|
13
|
+
end
|
14
|
+
|
15
|
+
# id defaults to false to detect if was specified. Null is a valid value
|
16
|
+
# according to the spec.
|
17
|
+
def request(method, params = nil, id = false)
|
18
|
+
http_response = @http_client.post(request_message(method, params, id))
|
19
|
+
MmJsonClient::JsonRpcHttp::Response.new(http_response.body)
|
20
|
+
end
|
21
|
+
|
22
|
+
private
|
23
|
+
|
24
|
+
def base_request_message
|
25
|
+
{ jsonrpc: '2.0' }
|
26
|
+
end
|
27
|
+
|
28
|
+
def request_message(method, params, id)
|
29
|
+
msg = base_request_message.merge(method: method, params: params)
|
30
|
+
msg[:id] = id unless id == false # Optional
|
31
|
+
msg.to_json
|
32
|
+
end
|
33
|
+
|
34
|
+
def allowed_client_options(options)
|
35
|
+
allowed = [:verify_ssl, :open_timeout, :timeout]
|
36
|
+
options.select { |option| allowed.include?(option) }
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'json'
|
2
|
+
|
3
|
+
module MmJsonClient
|
4
|
+
module JsonRpcHttp
|
5
|
+
# A standard formatted JSON-RPC error.
|
6
|
+
class Error
|
7
|
+
attr_reader :code
|
8
|
+
attr_reader :data
|
9
|
+
attr_reader :message
|
10
|
+
|
11
|
+
def initialize(data)
|
12
|
+
@code = data['code']
|
13
|
+
@data = data['data']
|
14
|
+
@message = data['message']
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require 'json'
|
2
|
+
require 'mm_json_client/json_rpc_http/exceptions'
|
3
|
+
require 'mm_json_client/json_rpc_http/error'
|
4
|
+
|
5
|
+
module MmJsonClient
|
6
|
+
module JsonRpcHttp
|
7
|
+
# A standard formatted JSON-RPC response.
|
8
|
+
class Response
|
9
|
+
attr_reader :error
|
10
|
+
attr_reader :id
|
11
|
+
attr_reader :result
|
12
|
+
attr_reader :version
|
13
|
+
|
14
|
+
def initialize(json)
|
15
|
+
data = JSON.parse(json)
|
16
|
+
@version = data['version']
|
17
|
+
@result = data['result']
|
18
|
+
@error = data['error'] && new_error(data['error'])
|
19
|
+
@id = data['id']
|
20
|
+
rescue JSON::ParserError
|
21
|
+
raise InvalidResponseFormat
|
22
|
+
end
|
23
|
+
|
24
|
+
private
|
25
|
+
|
26
|
+
def new_error(error_data)
|
27
|
+
MmJsonClient::JsonRpcHttp::Error.new(error_data)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
require 'mm_json_client/generic_type'
|
2
|
+
|
3
|
+
module MmJsonClient
|
4
|
+
# Dynamically create types and simplify their instantiation.
|
5
|
+
class TypeFactory
|
6
|
+
@types = {}
|
7
|
+
|
8
|
+
# Create type classes for the api definition.
|
9
|
+
def self.load_types(types = {})
|
10
|
+
types.each { |type, definition| define(type, definition) }
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.build_from_data(type_name, data = {})
|
14
|
+
return build_array_type(type_name, data) if data.class == Array
|
15
|
+
return build_simple_type(type_name, data) if simple_type?(type_name)
|
16
|
+
build_complex_type(type_name, data)
|
17
|
+
end
|
18
|
+
|
19
|
+
class << self
|
20
|
+
attr_reader :types
|
21
|
+
|
22
|
+
private
|
23
|
+
|
24
|
+
def define(type_name, definition)
|
25
|
+
if definition.class == Array
|
26
|
+
add_type_definition(type_name, definition)
|
27
|
+
else
|
28
|
+
snaked_definition = definition.mm_underscore_keys
|
29
|
+
add_type_definition(type_name, snaked_definition)
|
30
|
+
|
31
|
+
klass = Class.new(MmJsonClient::GenericType) do
|
32
|
+
snaked_definition.each { |attribute, _type| property attribute }
|
33
|
+
end
|
34
|
+
|
35
|
+
MmJsonClient.const_set type_class_name(type_name), klass
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def build_array_type(type_name, data)
|
40
|
+
array_type = type_definition(type_name).first
|
41
|
+
data.map { |d| build_from_data(array_type, d) }
|
42
|
+
end
|
43
|
+
|
44
|
+
def build_simple_type(_type_name, data)
|
45
|
+
data
|
46
|
+
end
|
47
|
+
|
48
|
+
def build_complex_type(type_name, data)
|
49
|
+
MmJsonClient.const_get(type_class_name(type_name)).new.tap do |obj|
|
50
|
+
type_def = type_definition(type_name)
|
51
|
+
data.each do |attr_name, value|
|
52
|
+
subtype = type_def[attr_name]
|
53
|
+
obj.send("#{attr_name}=", build_from_data(subtype, value))
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
# TODO: Find a way to consistently deal with weirdly cased items like
|
59
|
+
# this. Since we won't be sending the type name into the API this
|
60
|
+
# conversion is currently ok.
|
61
|
+
def type_class_name(type_name)
|
62
|
+
return type_name if type_name[0].upcase == type_name[0]
|
63
|
+
"#{type_name[0].upcase}#{type_name[1..-1]}"
|
64
|
+
end
|
65
|
+
|
66
|
+
def type_defined?(type_name)
|
67
|
+
types.include?(type_name)
|
68
|
+
end
|
69
|
+
|
70
|
+
def add_type_definition(type_name, definition)
|
71
|
+
@types[type_name] = definition
|
72
|
+
end
|
73
|
+
|
74
|
+
def type_definition(type_name)
|
75
|
+
types[type_name]
|
76
|
+
end
|
77
|
+
|
78
|
+
def simple_type?(type_name)
|
79
|
+
!type_defined?(type_name)
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'mm_json_client/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'mm_json_client'
|
8
|
+
spec.version = MmJsonClient::VERSION
|
9
|
+
spec.authors = ['Eric Wannemacher']
|
10
|
+
spec.email = ['eric@wannemacher.us']
|
11
|
+
|
12
|
+
spec.summary = 'A client gem for Men & Mice IPAM via JSON-RPC'
|
13
|
+
spec.homepage = 'https://github.com/ewannema/mm_json_client'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.required_ruby_version = '>= 2.0.0'
|
17
|
+
|
18
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
19
|
+
spec.bindir = 'exe'
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
|
+
spec.require_paths = ['lib']
|
22
|
+
|
23
|
+
# Force listen (required by guard) to be a Ruby 2.0.0 compatible version.
|
24
|
+
spec.add_development_dependency 'guard-rspec'
|
25
|
+
spec.add_development_dependency 'listen', '~> 2.0'
|
26
|
+
|
27
|
+
spec.add_development_dependency 'rake', '~> 11.0'
|
28
|
+
spec.add_development_dependency 'rspec'
|
29
|
+
spec.add_development_dependency 'rubocop'
|
30
|
+
spec.add_development_dependency 'simplecov'
|
31
|
+
spec.add_development_dependency 'vcr'
|
32
|
+
spec.add_development_dependency 'webmock'
|
33
|
+
# Wasabi requires httpi which requires rack which is pulling 2.0+ and breaks
|
34
|
+
# on < 2.2 Rubies. We will require a compatible rack for now and come back
|
35
|
+
# to check on https://github.com/bundler/bundler/pull/4650
|
36
|
+
spec.add_development_dependency 'wasabi'
|
37
|
+
spec.add_development_dependency 'rack', '~>1.6'
|
38
|
+
end
|
metadata
ADDED
@@ -0,0 +1,231 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mm_json_client
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Eric Wannemacher
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-07-13 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: guard-rspec
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: listen
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '11.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '11.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rubocop
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: simplecov
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: vcr
|
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'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: webmock
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '>='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: wasabi
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - '>='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '>='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: rack
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ~>
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '1.6'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ~>
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '1.6'
|
153
|
+
description:
|
154
|
+
email:
|
155
|
+
- eric@wannemacher.us
|
156
|
+
executables: []
|
157
|
+
extensions: []
|
158
|
+
extra_rdoc_files: []
|
159
|
+
files:
|
160
|
+
- .gitignore
|
161
|
+
- .rspec
|
162
|
+
- .travis.yml
|
163
|
+
- Gemfile
|
164
|
+
- Guardfile
|
165
|
+
- LICENSE.txt
|
166
|
+
- README.md
|
167
|
+
- Rakefile
|
168
|
+
- bin/console
|
169
|
+
- bin/setup
|
170
|
+
- examples/claim_next_free_ip.rb
|
171
|
+
- examples/register_dns.rb
|
172
|
+
- examples/release_ip.rb
|
173
|
+
- examples/unregister_dns.rb
|
174
|
+
- fixtures/vcr_cassettes/MmJsonClient_GenericType/basic_server_interaction/allows_a_user_to_log_in_and_out.yml
|
175
|
+
- fixtures/vcr_cassettes/MmJsonClient_GenericType/basic_server_interaction/filters_a_list_of_users.yml
|
176
|
+
- fixtures/vcr_cassettes/MmJsonClient_GenericType/basic_server_interaction/gets_a_list_of_users.yml
|
177
|
+
- fixtures/vcr_cassettes/MmJsonClient_GenericType/basic_server_interaction/gets_a_user_by_reference.yml
|
178
|
+
- fixtures/vcr_cassettes/MmJsonClient_GenericType/basic_server_interaction/responds_with_a_server_error_on_bad_auth.yml
|
179
|
+
- fixtures/vcr_cassettes/MmJsonClient_GenericType/multiple_proxy_servers/connects_to_another_proxy_when_one_is_disabled.yml
|
180
|
+
- fixtures/vcr_cassettes/MmJsonClient_GenericType/proxy_options/allows_a_separate_proxy_to_be_defined.yml
|
181
|
+
- fixtures/vcr_cassettes/MmJsonClient_GenericType/ssl_options/allows_ignoring_bad_certificates.yml
|
182
|
+
- generators/enum_def_generator.rb
|
183
|
+
- generators/method_def_generator.rb
|
184
|
+
- generators/type_def_generator.rb
|
185
|
+
- generators/wasabi_extension.rb
|
186
|
+
- lib/core_ext/hash_extension.rb
|
187
|
+
- lib/core_ext/string_extension.rb
|
188
|
+
- lib/core_ext/symbol_extension.rb
|
189
|
+
- lib/mm_json_client.rb
|
190
|
+
- lib/mm_json_client/api_definitions/enums.json
|
191
|
+
- lib/mm_json_client/api_definitions/methods.json
|
192
|
+
- lib/mm_json_client/api_definitions/types.json
|
193
|
+
- lib/mm_json_client/client.rb
|
194
|
+
- lib/mm_json_client/enums/enum_factory.rb
|
195
|
+
- lib/mm_json_client/enums/generic_enum.rb
|
196
|
+
- lib/mm_json_client/exceptions.rb
|
197
|
+
- lib/mm_json_client/generic_type.rb
|
198
|
+
- lib/mm_json_client/http_client/client.rb
|
199
|
+
- lib/mm_json_client/json_rpc_http/client.rb
|
200
|
+
- lib/mm_json_client/json_rpc_http/error.rb
|
201
|
+
- lib/mm_json_client/json_rpc_http/exceptions.rb
|
202
|
+
- lib/mm_json_client/json_rpc_http/response.rb
|
203
|
+
- lib/mm_json_client/response_code.rb
|
204
|
+
- lib/mm_json_client/type_factory.rb
|
205
|
+
- lib/mm_json_client/version.rb
|
206
|
+
- mm_json_client.gemspec
|
207
|
+
homepage: https://github.com/ewannema/mm_json_client
|
208
|
+
licenses:
|
209
|
+
- MIT
|
210
|
+
metadata: {}
|
211
|
+
post_install_message:
|
212
|
+
rdoc_options: []
|
213
|
+
require_paths:
|
214
|
+
- lib
|
215
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
216
|
+
requirements:
|
217
|
+
- - '>='
|
218
|
+
- !ruby/object:Gem::Version
|
219
|
+
version: 2.0.0
|
220
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
221
|
+
requirements:
|
222
|
+
- - '>='
|
223
|
+
- !ruby/object:Gem::Version
|
224
|
+
version: '0'
|
225
|
+
requirements: []
|
226
|
+
rubyforge_project:
|
227
|
+
rubygems_version: 2.0.14
|
228
|
+
signing_key:
|
229
|
+
specification_version: 4
|
230
|
+
summary: A client gem for Men & Mice IPAM via JSON-RPC
|
231
|
+
test_files: []
|