cloudmersive-convert-api-client 2.1.4 → 2.1.9
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 +29 -4
- data/docs/EditDocumentApi.md +165 -0
- data/docs/EditHtmlApi.md +478 -0
- data/docs/EditPdfApi.md +6 -2
- data/docs/GetMacrosResponse.md +9 -0
- data/docs/HtmlGetLanguageResult.md +9 -0
- data/docs/HtmlGetLinksResponse.md +9 -0
- data/docs/HtmlGetRelCanonicalUrlResult.md +9 -0
- data/docs/HtmlGetSitemapUrlResult.md +9 -0
- data/docs/HtmlHyperlink.md +9 -0
- data/docs/HtmlSsrfThreatCheckResult.md +10 -0
- data/docs/HtmlThreatLink.md +9 -0
- data/docs/MergeDocumentApi.md +134 -0
- data/docs/ValidateDocumentApi.md +110 -0
- data/docs/XxeThreatDetectionResult.md +9 -0
- data/docs/ZipArchiveApi.md +62 -0
- data/lib/cloudmersive-convert-api-client.rb +9 -0
- data/lib/cloudmersive-convert-api-client/api/edit_document_api.rb +165 -0
- data/lib/cloudmersive-convert-api-client/api/edit_html_api.rb +447 -0
- data/lib/cloudmersive-convert-api-client/api/edit_pdf_api.rb +3 -0
- data/lib/cloudmersive-convert-api-client/api/merge_document_api.rb +148 -0
- data/lib/cloudmersive-convert-api-client/api/validate_document_api.rb +110 -0
- data/lib/cloudmersive-convert-api-client/api/zip_archive_api.rb +63 -0
- data/lib/cloudmersive-convert-api-client/models/get_macros_response.rb +196 -0
- data/lib/cloudmersive-convert-api-client/models/html_get_language_result.rb +196 -0
- data/lib/cloudmersive-convert-api-client/models/html_get_links_response.rb +198 -0
- data/lib/cloudmersive-convert-api-client/models/html_get_rel_canonical_url_result.rb +196 -0
- data/lib/cloudmersive-convert-api-client/models/html_get_sitemap_url_result.rb +196 -0
- data/lib/cloudmersive-convert-api-client/models/html_hyperlink.rb +196 -0
- data/lib/cloudmersive-convert-api-client/models/html_ssrf_threat_check_result.rb +208 -0
- data/lib/cloudmersive-convert-api-client/models/html_threat_link.rb +196 -0
- data/lib/cloudmersive-convert-api-client/models/xxe_threat_detection_result.rb +196 -0
- data/lib/cloudmersive-convert-api-client/version.rb +1 -1
- data/spec/api/edit_document_api_spec.rb +36 -0
- data/spec/api/edit_html_api_spec.rb +109 -0
- data/spec/api/edit_pdf_api_spec.rb +1 -0
- data/spec/api/merge_document_api_spec.rb +34 -0
- data/spec/api/validate_document_api_spec.rb +24 -0
- data/spec/api/zip_archive_api_spec.rb +14 -0
- data/spec/models/get_macros_response_spec.rb +47 -0
- data/spec/models/html_get_language_result_spec.rb +47 -0
- data/spec/models/html_get_links_response_spec.rb +47 -0
- data/spec/models/html_get_rel_canonical_url_result_spec.rb +47 -0
- data/spec/models/html_get_sitemap_url_result_spec.rb +47 -0
- data/spec/models/html_hyperlink_spec.rb +47 -0
- data/spec/models/html_ssrf_threat_check_result_spec.rb +53 -0
- data/spec/models/html_threat_link_spec.rb +47 -0
- data/spec/models/xxe_threat_detection_result_spec.rb +47 -0
- metadata +29 -2
@@ -32,6 +32,20 @@ describe 'EditHtmlApi' do
|
|
32
32
|
end
|
33
33
|
end
|
34
34
|
|
35
|
+
# unit tests for edit_html_html_append_header_tag
|
36
|
+
# Append an HTML tag to the HEAD section of an HTML Document
|
37
|
+
# Appends an HTML tag to the HEAD section of an HTML document.
|
38
|
+
# @param html_tag The HTML tag to append.
|
39
|
+
# @param [Hash] opts the optional parameters
|
40
|
+
# @option opts [File] :input_file Optional: Input file to perform the operation on.
|
41
|
+
# @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
|
42
|
+
# @return [String]
|
43
|
+
describe 'edit_html_html_append_header_tag test' do
|
44
|
+
it 'should work' do
|
45
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
35
49
|
# unit tests for edit_html_html_append_heading
|
36
50
|
# Append a Heading to an HTML Document
|
37
51
|
# Appends a heading to the end of an HTML document.
|
@@ -111,4 +125,99 @@ describe 'EditHtmlApi' do
|
|
111
125
|
end
|
112
126
|
end
|
113
127
|
|
128
|
+
# unit tests for edit_html_html_get_language
|
129
|
+
# Gets the language for the HTML document
|
130
|
+
# Retrieves the language code (e.g. \"en\" or \"de\") of an HTML document.
|
131
|
+
# @param [Hash] opts the optional parameters
|
132
|
+
# @option opts [File] :input_file Optional: Input file to perform the operation on.
|
133
|
+
# @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
|
134
|
+
# @return [HtmlGetLanguageResult]
|
135
|
+
describe 'edit_html_html_get_language test' do
|
136
|
+
it 'should work' do
|
137
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
# unit tests for edit_html_html_get_links
|
142
|
+
# Extract resolved link URLs from HTML File
|
143
|
+
# Extracts the resolved link URLs, fully-qualified if possible, from an input HTML file.
|
144
|
+
# @param [Hash] opts the optional parameters
|
145
|
+
# @option opts [File] :input_file Optional: Input file to perform the operation on.
|
146
|
+
# @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
|
147
|
+
# @option opts [String] :base_url Optional: Base URL of the page, such as https://mydomain.com
|
148
|
+
# @return [HtmlGetLinksResponse]
|
149
|
+
describe 'edit_html_html_get_links test' do
|
150
|
+
it 'should work' do
|
151
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
# unit tests for edit_html_html_get_rel_canonical
|
156
|
+
# Gets the rel canonical URL for the HTML document
|
157
|
+
# Gets the rel canonical URL of an HTML document.
|
158
|
+
# @param [Hash] opts the optional parameters
|
159
|
+
# @option opts [File] :input_file Optional: Input file to perform the operation on.
|
160
|
+
# @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
|
161
|
+
# @return [HtmlGetRelCanonicalUrlResult]
|
162
|
+
describe 'edit_html_html_get_rel_canonical test' do
|
163
|
+
it 'should work' do
|
164
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
# unit tests for edit_html_html_get_sitemap
|
169
|
+
# Gets the sitemap URL for the HTML document
|
170
|
+
# Gets the sitemap link URL of an HTML document.
|
171
|
+
# @param [Hash] opts the optional parameters
|
172
|
+
# @option opts [File] :input_file Optional: Input file to perform the operation on.
|
173
|
+
# @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
|
174
|
+
# @return [HtmlGetSitemapUrlResult]
|
175
|
+
describe 'edit_html_html_get_sitemap test' do
|
176
|
+
it 'should work' do
|
177
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
# unit tests for edit_html_html_set_language
|
182
|
+
# Sets the language for the HTML document
|
183
|
+
# Sets the language code of an HTML document.
|
184
|
+
# @param language_code The HTML langauge code to set.
|
185
|
+
# @param [Hash] opts the optional parameters
|
186
|
+
# @option opts [File] :input_file Optional: Input file to perform the operation on.
|
187
|
+
# @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
|
188
|
+
# @return [String]
|
189
|
+
describe 'edit_html_html_set_language test' do
|
190
|
+
it 'should work' do
|
191
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
192
|
+
end
|
193
|
+
end
|
194
|
+
|
195
|
+
# unit tests for edit_html_html_set_rel_canonical
|
196
|
+
# Sets the rel canonical URL for the HTML document
|
197
|
+
# Sets the rel canonical URL of an HTML document. This is useful for telling search engines and other indexers which pages are duplicates of eachother; any pages with the rel=canonical tag will be treated as duplicates of the canonical URL.
|
198
|
+
# @param canonical_url The HTML canonical URL to set.
|
199
|
+
# @param [Hash] opts the optional parameters
|
200
|
+
# @option opts [File] :input_file Optional: Input file to perform the operation on.
|
201
|
+
# @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
|
202
|
+
# @return [String]
|
203
|
+
describe 'edit_html_html_set_rel_canonical test' do
|
204
|
+
it 'should work' do
|
205
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
206
|
+
end
|
207
|
+
end
|
208
|
+
|
209
|
+
# unit tests for edit_html_html_set_sitemap_url
|
210
|
+
# Sets the sitemap URL for the HTML document
|
211
|
+
# Sets the sitemap URL of an HTML document.
|
212
|
+
# @param sitemap_url The HTML sitemap URL to set.
|
213
|
+
# @param [Hash] opts the optional parameters
|
214
|
+
# @option opts [File] :input_file Optional: Input file to perform the operation on.
|
215
|
+
# @option opts [String] :input_file_url Optional: URL of a file to operate on as input.
|
216
|
+
# @return [String]
|
217
|
+
describe 'edit_html_html_set_sitemap_url test' do
|
218
|
+
it 'should work' do
|
219
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
220
|
+
end
|
221
|
+
end
|
222
|
+
|
114
223
|
end
|
@@ -193,6 +193,7 @@ describe 'EditPdfApi' do
|
|
193
193
|
# Reduces the file size and optimizes the content of a PDF to minimize its file size.
|
194
194
|
# @param input_file Input file to perform the operation on.
|
195
195
|
# @param [Hash] opts the optional parameters
|
196
|
+
# @option opts [Float] :quality Quality level for the images in the PDF, ranging from 0.0 (low quality) to 1.0 (high quality); default is 0.3
|
196
197
|
# @return [String]
|
197
198
|
describe 'edit_pdf_reduce_file_size test' do
|
198
199
|
it 'should work' do
|
@@ -66,6 +66,40 @@ describe 'MergeDocumentApi' do
|
|
66
66
|
end
|
67
67
|
end
|
68
68
|
|
69
|
+
# unit tests for merge_document_html
|
70
|
+
# Merge Two HTML (HTM) Files Together
|
71
|
+
# Combine two HTML (.HTM) files into a single text document, preserving the order of the input documents in the combined document by stacking them vertically. The title will be taken from the first document.
|
72
|
+
# @param input_file1 First input file to perform the operation on.
|
73
|
+
# @param input_file2 Second input file to perform the operation on (more than 2 can be supplied).
|
74
|
+
# @param [Hash] opts the optional parameters
|
75
|
+
# @return [String]
|
76
|
+
describe 'merge_document_html test' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
# unit tests for merge_document_html_multi
|
83
|
+
# Merge Multple HTML (HTM) Files Together
|
84
|
+
# Combine multiple HTML (.HTM) files into a single text document, preserving the order of the input documents in the combined document by stacking them vertically. The title will be taken from the first document.
|
85
|
+
# @param input_file1 First input file to perform the operation on.
|
86
|
+
# @param input_file2 Second input file to perform the operation on.
|
87
|
+
# @param [Hash] opts the optional parameters
|
88
|
+
# @option opts [File] :input_file3 Third input file to perform the operation on.
|
89
|
+
# @option opts [File] :input_file4 Fourth input file to perform the operation on.
|
90
|
+
# @option opts [File] :input_file5 Fifth input file to perform the operation on.
|
91
|
+
# @option opts [File] :input_file6 Sixth input file to perform the operation on.
|
92
|
+
# @option opts [File] :input_file7 Seventh input file to perform the operation on.
|
93
|
+
# @option opts [File] :input_file8 Eighth input file to perform the operation on.
|
94
|
+
# @option opts [File] :input_file9 Ninth input file to perform the operation on.
|
95
|
+
# @option opts [File] :input_file10 Tenth input file to perform the operation on.
|
96
|
+
# @return [String]
|
97
|
+
describe 'merge_document_html_multi test' do
|
98
|
+
it 'should work' do
|
99
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
69
103
|
# unit tests for merge_document_pdf
|
70
104
|
# Merge Two PDF Files Together
|
71
105
|
# Combine two PDF files (pdf) into a single PDF document, preserving the order of the input documents in the combined document
|
@@ -104,6 +104,18 @@ describe 'ValidateDocumentApi' do
|
|
104
104
|
end
|
105
105
|
end
|
106
106
|
|
107
|
+
# unit tests for validate_document_html_ssrf_validation
|
108
|
+
# Validate an HTML file and checks for SSRF threats
|
109
|
+
# Validate an HTML document file and checks for SSRF (Server-side Request Forgery) threats in the file; if the document is not valid, identifies the errors in the document
|
110
|
+
# @param input_file Input file to perform the operation on.
|
111
|
+
# @param [Hash] opts the optional parameters
|
112
|
+
# @return [HtmlSsrfThreatCheckResult]
|
113
|
+
describe 'validate_document_html_ssrf_validation test' do
|
114
|
+
it 'should work' do
|
115
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
107
119
|
# unit tests for validate_document_html_validation
|
108
120
|
# Validate an HTML file
|
109
121
|
# Validate an HTML document file; if the document is not valid, identifies the errors in the document
|
@@ -260,6 +272,18 @@ describe 'ValidateDocumentApi' do
|
|
260
272
|
end
|
261
273
|
end
|
262
274
|
|
275
|
+
# unit tests for validate_document_xml_xxe_threat_validation
|
276
|
+
# Validate an XML file for XML External Entity (XXE) threats
|
277
|
+
# Validate an XML document file for XML External Entity (XXE) threats; if the document is not valid, identifies the errors in the document. XXE threats are a type of threat that exploits vulnerabilities in the XML standard relating to external or local entity URIs in XML documents.
|
278
|
+
# @param input_file Input file to perform the operation on.
|
279
|
+
# @param [Hash] opts the optional parameters
|
280
|
+
# @return [XxeThreatDetectionResult]
|
281
|
+
describe 'validate_document_xml_xxe_threat_validation test' do
|
282
|
+
it 'should work' do
|
283
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
284
|
+
end
|
285
|
+
end
|
286
|
+
|
263
287
|
# unit tests for validate_document_zip_validation
|
264
288
|
# Validate a Zip Archive file (zip)
|
265
289
|
# Validate a Zip archive file (ZIP)
|
@@ -88,6 +88,20 @@ describe 'ZipArchiveApi' do
|
|
88
88
|
end
|
89
89
|
end
|
90
90
|
|
91
|
+
# unit tests for zip_archive_zip_create_quarantine
|
92
|
+
# Create an encrypted zip file to quarantine a dangerous file
|
93
|
+
# Create a new zip archive by compressing input files, and also applies encryption and password protection to the zip, for the purposes of quarantining the underlyikng file.
|
94
|
+
# @param password Password to place on the Zip file; the longer the password, the more secure
|
95
|
+
# @param input_file1 First input file to perform the operation on.
|
96
|
+
# @param [Hash] opts the optional parameters
|
97
|
+
# @option opts [String] :encryption_algorithm Encryption algorithm to use; possible values are AES-256 (recommended), AES-128, and PK-Zip (not recommended; legacy, weak encryption algorithm). Default is AES-256.
|
98
|
+
# @return [Object]
|
99
|
+
describe 'zip_archive_zip_create_quarantine test' do
|
100
|
+
it 'should work' do
|
101
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
91
105
|
# unit tests for zip_archive_zip_decrypt
|
92
106
|
# Decrypt and remove password protection on a zip file
|
93
107
|
# Decrypts and removes password protection from an encrypted zip file with the specified password
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#convertapi
|
3
|
+
|
4
|
+
#Convert API lets you effortlessly convert file formats and types.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveConvertApiClient::GetMacrosResponse
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'GetMacrosResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::GetMacrosResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of GetMacrosResponse' do
|
31
|
+
it 'should create an instance of GetMacrosResponse' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::GetMacrosResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "successful"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "contains_vba_macros"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#convertapi
|
3
|
+
|
4
|
+
#Convert API lets you effortlessly convert file formats and types.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveConvertApiClient::HtmlGetLanguageResult
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'HtmlGetLanguageResult' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::HtmlGetLanguageResult.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of HtmlGetLanguageResult' do
|
31
|
+
it 'should create an instance of HtmlGetLanguageResult' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::HtmlGetLanguageResult)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "successful"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "language_code"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#convertapi
|
3
|
+
|
4
|
+
#Convert API lets you effortlessly convert file formats and types.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveConvertApiClient::HtmlGetLinksResponse
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'HtmlGetLinksResponse' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::HtmlGetLinksResponse.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of HtmlGetLinksResponse' do
|
31
|
+
it 'should create an instance of HtmlGetLinksResponse' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::HtmlGetLinksResponse)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "successful"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "links"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#convertapi
|
3
|
+
|
4
|
+
#Convert API lets you effortlessly convert file formats and types.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveConvertApiClient::HtmlGetRelCanonicalUrlResult
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'HtmlGetRelCanonicalUrlResult' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::HtmlGetRelCanonicalUrlResult.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of HtmlGetRelCanonicalUrlResult' do
|
31
|
+
it 'should create an instance of HtmlGetRelCanonicalUrlResult' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::HtmlGetRelCanonicalUrlResult)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "successful"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "canonical_url"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#convertapi
|
3
|
+
|
4
|
+
#Convert API lets you effortlessly convert file formats and types.
|
5
|
+
|
6
|
+
OpenAPI spec version: v1
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.14
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for CloudmersiveConvertApiClient::HtmlGetSitemapUrlResult
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'HtmlGetSitemapUrlResult' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = CloudmersiveConvertApiClient::HtmlGetSitemapUrlResult.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of HtmlGetSitemapUrlResult' do
|
31
|
+
it 'should create an instance of HtmlGetSitemapUrlResult' do
|
32
|
+
expect(@instance).to be_instance_of(CloudmersiveConvertApiClient::HtmlGetSitemapUrlResult)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "successful"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "canonical_url"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|