aspose_cells_cloud 20.8 → 20.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/aspose_cells_cloud-20.8.gem +0 -0
- data/lib/aspose_cells_cloud.rb +6 -1
- data/lib/aspose_cells_cloud/api/cells_api.rb +661 -0
- data/lib/aspose_cells_cloud/models/cells_error.rb +229 -0
- data/lib/aspose_cells_cloud/models/files_upload_result.rb +1 -1
- data/lib/aspose_cells_cloud/models/sparkline.rb +226 -0
- data/lib/aspose_cells_cloud/models/sparkline_group.rb +434 -0
- data/lib/aspose_cells_cloud/models/sparkline_group_response.rb +221 -0
- data/lib/aspose_cells_cloud/models/sparkline_groups.rb +200 -0
- data/lib/aspose_cells_cloud/models/sparkline_groups_response.rb +221 -0
- data/lib/aspose_cells_cloud/version.rb +1 -1
- data/nohup.out +2 -0
- data/runTest.sh +26 -1
- data/spec/api/cells_pivot_tables_api_spec.rb +31 -0
- data/spec/api/cells_sparkline_group_spec.rb +42 -0
- data/spec/spec_helper.rb +2 -2
- data/testResult.txt +12 -129
- metadata +11 -2
@@ -209,6 +209,37 @@ describe 'CellsPivotTablesApi' do
|
|
209
209
|
end
|
210
210
|
end
|
211
211
|
|
212
|
+
describe 'cells_pivot_tables_post_pivot_table_update_pivot_fields test' do
|
213
|
+
it "should work" do
|
214
|
+
name = $PivTestFile
|
215
|
+
sheet_name = $SHEET4
|
216
|
+
pivot_table_index = 0
|
217
|
+
field_index = 0
|
218
|
+
folder = $TEMPFOLDER
|
219
|
+
result = @instance.upload_file( folder+"/"+name, ::File.open(File.expand_path("data/"+name),"r") {|io| io.read(io.size) })
|
220
|
+
expect(result.uploaded.size).to be > 0
|
221
|
+
pivot_field = AsposeCellsCloud::PivotField.new({:Number=>5})
|
222
|
+
result = @instance.cells_pivot_tables_post_pivot_table_update_pivot_fields(name, sheet_name, pivot_table_index, "Data",pivot_field , { :folder=>folder})
|
223
|
+
expect(result.code).to eql(200)
|
224
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
225
|
+
end
|
226
|
+
end
|
227
|
+
|
228
|
+
describe 'cells_pivot_tables_post_pivot_table_update_pivot_field test' do
|
229
|
+
it "should work" do
|
230
|
+
name = $PivTestFile
|
231
|
+
sheet_name = $SHEET4
|
232
|
+
pivot_table_index = 0
|
233
|
+
field_index = 0
|
234
|
+
folder = $TEMPFOLDER
|
235
|
+
result = @instance.upload_file( folder+"/"+name, ::File.open(File.expand_path("data/"+name),"r") {|io| io.read(io.size) })
|
236
|
+
expect(result.uploaded.size).to be > 0
|
237
|
+
pivot_field = AsposeCellsCloud::PivotField.new({:Number=>5})
|
238
|
+
result = @instance.cells_pivot_tables_post_pivot_table_update_pivot_field(name, sheet_name, pivot_table_index,0, "Data",pivot_field , { :folder=>folder})
|
239
|
+
expect(result.code).to eql(200)
|
240
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
241
|
+
end
|
242
|
+
end
|
212
243
|
# unit tests for cells_pivot_tables_post_pivot_table_style
|
213
244
|
# Update style for pivot table
|
214
245
|
#
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'json'
|
3
|
+
|
4
|
+
|
5
|
+
describe 'Cells Sparkline Group Api' do
|
6
|
+
before do
|
7
|
+
@instance = AsposeCellsCloud::CellsApi.new($client_id,$client_secret,"v3.0",$baseurl)
|
8
|
+
end
|
9
|
+
|
10
|
+
after do
|
11
|
+
# run after each test
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
# unit tests for one case
|
16
|
+
|
17
|
+
describe 'cells_get_worksheet_cell test' do
|
18
|
+
it "should work" do
|
19
|
+
name = $PivTestFile
|
20
|
+
sheet_name = $SHEET1
|
21
|
+
folder = $TEMPFOLDER
|
22
|
+
storage = nil
|
23
|
+
result = @instance.upload_file( folder+"/"+name, ::File.open(File.expand_path("data/"+name),"r") {|io| io.read(io.size) })
|
24
|
+
expect(result.uploaded.size).to be > 0
|
25
|
+
result = @instance.cells_sparkline_groups_get_worksheet_sparkline_groups(name, sheet_name, { :folder=>folder})
|
26
|
+
expect(result.code).to eql(200)
|
27
|
+
result = @instance.cells_sparkline_groups_put_worksheet_sparkline_group(name, sheet_name,"Line","C6:E13",'false', "G6:G13", { :folder=>folder})
|
28
|
+
expect(result.code).to eql(200)
|
29
|
+
result = @instance.cells_sparkline_groups_get_worksheet_sparkline_group(name, sheet_name,0,{ :folder=>folder})
|
30
|
+
expect(result.code).to eql(200)
|
31
|
+
sparkline_group = AsposeCellsCloud::SparklineGroup.new({:DisplayHidden=>true})
|
32
|
+
result = @instance.cells_sparkline_groups_post_worksheet_sparkline_group(name, sheet_name,0,sparkline_group,{ :folder=>folder})
|
33
|
+
expect(result.code).to eql(200)
|
34
|
+
result = @instance.cells_sparkline_groups_delete_worksheet_sparkline_group(name, sheet_name,0,{ :folder=>folder})
|
35
|
+
expect(result.code).to eql(200)
|
36
|
+
result = @instance.cells_sparkline_groups_delete_worksheet_sparkline_groups(name, sheet_name,{ :folder=>folder})
|
37
|
+
expect(result.code).to eql(200)
|
38
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
data/spec/spec_helper.rb
CHANGED
@@ -13,8 +13,8 @@ Swagger Codegen version: 2.3.0-SNAPSHOT
|
|
13
13
|
# load the gem
|
14
14
|
require 'aspose_cells_cloud'
|
15
15
|
$grant_type = 'client_credentials' # replace NULL with a proper value
|
16
|
-
$client_id = '
|
17
|
-
$client_secret = '
|
16
|
+
$client_id = '91A2FD07-BBA1-4B32-9112-ABFB1FE8AEBD' # # replace NULL with a proper value
|
17
|
+
$client_secret = '0fbf678c5ecabdb5caca48452a736dd0' # # replace NULL with a proper value
|
18
18
|
$baseurl='https://api-qa.aspose.cloud'
|
19
19
|
$access_token
|
20
20
|
$BOOK1 = "Book1.xlsx"
|
data/testResult.txt
CHANGED
@@ -1,132 +1,15 @@
|
|
1
|
-
...{:Cell=>{:Name=>"B3", :Row=>2, :Column=>1, :Value=>"12", :Type=>"IsNumeric", :Formula=>nil, :IsFormula=>false, :IsMerged=>false, :IsArrayHeader=>false, :IsInArray=>false, :IsErrorValue=>false, :IsInTable=>false, :IsStyleSet=>false, :HtmlString=>"<Font Style=\"FONT-FAMILY: Calibri;FONT-SIZE: 11pt;COLOR: #000000;\">12</Font>", :Style=>{:link=>{:Href=>"/style", :Rel=>"self", :Title=>nil, :Type=>nil}}, :Worksheet=>nil, :link=>{:Href=>"api-qa.aspose.cloud/v3.0/cells/Book1.xlsx/worksheets/Sheet1/cells/firstcell", :Rel=>"self", :Title=>nil, :Type=>nil}}, :Code=>200, :Status=>"OK"}
|
2
|
-
......I, [2020-
|
3
|
-
.....................................I, [2020-
|
4
|
-
........................I, [2020-
|
5
|
-
|
6
|
-
..I, [2020-
|
7
|
-
.I, [2020-
|
8
|
-
..........I, [2020-
|
9
|
-
......I, [2020-
|
10
|
-
|
1
|
+
...{:Cell=>{:Name=>"B3", :Row=>2, :Column=>1, :Value=>"12", :Type=>"IsNumeric", :Formula=>nil, :IsFormula=>false, :IsMerged=>false, :IsArrayHeader=>false, :IsInArray=>false, :IsErrorValue=>false, :IsInTable=>false, :IsStyleSet=>false, :HtmlString=>"<Font Style=\"FONT-FAMILY: Calibri;FONT-SIZE: 11pt;COLOR: #000000;\">12</Font>", :Style=>{:link=>{:Href=>"/style", :Rel=>"self", :Title=>nil, :Type=>nil}}, :Worksheet=>nil, :link=>{:Href=>"api-qa.aspose.cloud/v3.0/cells/Book1.xlsx/worksheets/Sheet1/cells/firstcell", :Rel=>"self", :Title=>nil, :Type=>nil}}, :Code=>200, :Status=>"OK"}.................................................I, [2020-09-18T18:11:55.980166 #9625] INFO -- : Temp file written to /tmp/download-20200918-9625-tamhaa, please copy the file to a proper folder with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file will be deleted automatically with GC. It's also recommended to delete the temp file explicitly with `tempfile.delete`
|
2
|
+
......I, [2020-09-18T18:12:49.188425 #9625] INFO -- : Temp file written to /tmp/download-20200918-9625-nozbfa, please copy the file to a proper folder with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file will be deleted automatically with GC. It's also recommended to delete the temp file explicitly with `tempfile.delete`
|
3
|
+
.....................................I, [2020-09-18T18:18:39.629515 #9625] INFO -- : Temp file written to /tmp/download-20200918-9625-1w9dtk2, please copy the file to a proper folder with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file will be deleted automatically with GC. It's also recommended to delete the temp file explicitly with `tempfile.delete`
|
4
|
+
........................I, [2020-09-18T18:21:14.800176 #9625] INFO -- : Temp file written to /tmp/download-20200918-9625-xynizt, please copy the file to a proper folder with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file will be deleted automatically with GC. It's also recommended to delete the temp file explicitly with `tempfile.delete`
|
5
|
+
................................................I, [2020-09-18T18:27:05.591501 #9625] INFO -- : Temp file written to /tmp/Book1.xlsx;-20200918-9625-1a6rwds, please copy the file to a proper folder with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file will be deleted automatically with GC. It's also recommended to delete the temp file explicitly with `tempfile.delete`
|
6
|
+
..I, [2020-09-18T18:27:30.717711 #9625] INFO -- : Temp file written to /tmp/download-20200918-9625-fcrnhl, please copy the file to a proper folder with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file will be deleted automatically with GC. It's also recommended to delete the temp file explicitly with `tempfile.delete`
|
7
|
+
.I, [2020-09-18T18:27:35.666865 #9625] INFO -- : Temp file written to /tmp/download-20200918-9625-1qttkrf, please copy the file to a proper folder with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file will be deleted automatically with GC. It's also recommended to delete the temp file explicitly with `tempfile.delete`
|
8
|
+
..........I, [2020-09-18T18:29:36.870136 #9625] INFO -- : Temp file written to /tmp/download-20200918-9625-1whzmjs, please copy the file to a proper folder with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file will be deleted automatically with GC. It's also recommended to delete the temp file explicitly with `tempfile.delete`
|
9
|
+
......I, [2020-09-18T18:30:39.224799 #9625] INFO -- : Temp file written to /tmp/download-20200918-9625-1vcf89v, please copy the file to a proper folder with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file will be deleted automatically with GC. It's also recommended to delete the temp file explicitly with `tempfile.delete`
|
10
|
+
.....................I, [2020-09-18T18:32:43.764111 #9625] INFO -- : Temp file written to /tmp/download-20200918-9625-nx3fhc, please copy the file to a proper folder with e.g. `FileUtils.cp(tempfile.path, '/new/file/path')` otherwise the temp file will be deleted automatically with GC. It's also recommended to delete the temp file explicitly with `tempfile.delete`
|
11
11
|
...........................
|
12
12
|
|
13
|
-
|
14
|
-
|
15
|
-
1) CellsApi cells_put_insert_worksheet_row test should work
|
16
|
-
Failure/Error: return conn.put url, req_opts[:body]
|
17
|
-
|
18
|
-
Faraday::TimeoutError:
|
19
|
-
Net::ReadTimeout
|
20
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:149:in `request_via_request_method'
|
21
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:135:in `request_with_wrapped_block'
|
22
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:126:in `perform_request'
|
23
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:68:in `block in call'
|
24
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter.rb:60:in `connection'
|
25
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:66:in `call'
|
26
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/request/url_encoded.rb:23:in `call'
|
27
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/request/multipart.rb:25:in `call'
|
28
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/rack_builder.rb:153:in `build_response'
|
29
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/connection.rb:492:in `run_request'
|
30
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/connection.rb:279:in `put'
|
31
|
-
# ./lib/aspose_cells_cloud/api_client.rb:148:in `build_request'
|
32
|
-
# ./lib/aspose_cells_cloud/api_client.rb:64:in `call_api'
|
33
|
-
# ./lib/aspose_cells_cloud/api/cells_api.rb:19194:in `upload_file_with_http_info'
|
34
|
-
# ./lib/aspose_cells_cloud/api/cells_api.rb:19148:in `upload_file'
|
35
|
-
# ./spec/api/cells_api_spec.rb:1107:in `block (3 levels) in <top (required)>'
|
36
|
-
# ------------------
|
37
|
-
# --- Caused by: ---
|
38
|
-
# Net::ReadTimeout:
|
39
|
-
# Net::ReadTimeout
|
40
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:149:in `request_via_request_method'
|
41
|
-
|
42
|
-
2) CellsPivotTablesApi cells_pivot_tables_get_worksheet_pivot_table_filters test should work
|
43
|
-
Failure/Error: return conn.put url, req_opts[:body]
|
44
|
-
|
45
|
-
Faraday::ConnectionFailed:
|
46
|
-
Failed to open TCP connection to api-qa.aspose.cloud:443 (getaddrinfo: Temporary failure in name resolution)
|
47
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:149:in `request_via_request_method'
|
48
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:135:in `request_with_wrapped_block'
|
49
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:126:in `perform_request'
|
50
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:68:in `block in call'
|
51
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter.rb:60:in `connection'
|
52
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:66:in `call'
|
53
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/request/url_encoded.rb:23:in `call'
|
54
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/request/multipart.rb:25:in `call'
|
55
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/rack_builder.rb:153:in `build_response'
|
56
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/connection.rb:492:in `run_request'
|
57
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/connection.rb:279:in `put'
|
58
|
-
# ./lib/aspose_cells_cloud/api_client.rb:148:in `build_request'
|
59
|
-
# ./lib/aspose_cells_cloud/api_client.rb:64:in `call_api'
|
60
|
-
# ./lib/aspose_cells_cloud/api/cells_api.rb:19194:in `upload_file_with_http_info'
|
61
|
-
# ./lib/aspose_cells_cloud/api/cells_api.rb:19148:in `upload_file'
|
62
|
-
# ./spec/api/cells_pivot_tables_api_spec.rb:86:in `block (3 levels) in <top (required)>'
|
63
|
-
# ------------------
|
64
|
-
# --- Caused by: ---
|
65
|
-
# SocketError:
|
66
|
-
# getaddrinfo: Temporary failure in name resolution
|
67
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:149:in `request_via_request_method'
|
68
|
-
|
69
|
-
3) CellsRangesApi cells_ranges_post_worksheet_cells_ranges test should work
|
70
|
-
Failure/Error: return conn.post url, req_opts[:body]
|
71
|
-
|
72
|
-
Faraday::ConnectionFailed:
|
73
|
-
execution expired
|
74
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:149:in `request_via_request_method'
|
75
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:135:in `request_with_wrapped_block'
|
76
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:126:in `perform_request'
|
77
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:68:in `block in call'
|
78
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter.rb:60:in `connection'
|
79
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:66:in `call'
|
80
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/request/url_encoded.rb:23:in `call'
|
81
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/request/multipart.rb:25:in `call'
|
82
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/rack_builder.rb:153:in `build_response'
|
83
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/connection.rb:492:in `run_request'
|
84
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/connection.rb:279:in `post'
|
85
|
-
# ./lib/aspose_cells_cloud/api_client.rb:146:in `build_request'
|
86
|
-
# ./lib/aspose_cells_cloud/api_client.rb:64:in `call_api'
|
87
|
-
# ./lib/aspose_cells_cloud/api/cells_api.rb:12718:in `cells_ranges_post_worksheet_cells_ranges_with_http_info'
|
88
|
-
# ./lib/aspose_cells_cloud/api/cells_api.rb:12670:in `cells_ranges_post_worksheet_cells_ranges'
|
89
|
-
# ./spec/api/cells_ranges_api_spec.rb:277:in `block (3 levels) in <top (required)>'
|
90
|
-
# ------------------
|
91
|
-
# --- Caused by: ---
|
92
|
-
# Net::OpenTimeout:
|
93
|
-
# execution expired
|
94
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:149:in `request_via_request_method'
|
95
|
-
|
96
|
-
4) CellsWorkbookApi cells_workbook_post_protect_document test should work
|
97
|
-
Failure/Error: return conn.put url, req_opts[:body]
|
98
|
-
|
99
|
-
Faraday::ConnectionFailed:
|
100
|
-
Failed to open TCP connection to api-qa.aspose.cloud:443 (getaddrinfo: Temporary failure in name resolution)
|
101
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:149:in `request_via_request_method'
|
102
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:135:in `request_with_wrapped_block'
|
103
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:126:in `perform_request'
|
104
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:68:in `block in call'
|
105
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter.rb:60:in `connection'
|
106
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:66:in `call'
|
107
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/request/url_encoded.rb:23:in `call'
|
108
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/request/multipart.rb:25:in `call'
|
109
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/rack_builder.rb:153:in `build_response'
|
110
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/connection.rb:492:in `run_request'
|
111
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/connection.rb:279:in `put'
|
112
|
-
# ./lib/aspose_cells_cloud/api_client.rb:148:in `build_request'
|
113
|
-
# ./lib/aspose_cells_cloud/api_client.rb:64:in `call_api'
|
114
|
-
# ./lib/aspose_cells_cloud/api/cells_api.rb:19194:in `upload_file_with_http_info'
|
115
|
-
# ./lib/aspose_cells_cloud/api/cells_api.rb:19148:in `upload_file'
|
116
|
-
# ./spec/api/cells_workbook_api_spec.rb:548:in `block (3 levels) in <top (required)>'
|
117
|
-
# ------------------
|
118
|
-
# --- Caused by: ---
|
119
|
-
# SocketError:
|
120
|
-
# getaddrinfo: Temporary failure in name resolution
|
121
|
-
# /var/lib/gems/2.5.0/gems/faraday-1.0.0/lib/faraday/adapter/net_http.rb:149:in `request_via_request_method'
|
122
|
-
|
123
|
-
Finished in 47 minutes 45 seconds (files took 1.1 seconds to load)
|
124
|
-
234 examples, 4 failures
|
125
|
-
|
126
|
-
Failed examples:
|
127
|
-
|
128
|
-
rspec ./spec/api/cells_api_spec.rb:1101 # CellsApi cells_put_insert_worksheet_row test should work
|
129
|
-
rspec ./spec/api/cells_pivot_tables_api_spec.rb:81 # CellsPivotTablesApi cells_pivot_tables_get_worksheet_pivot_table_filters test should work
|
130
|
-
rspec ./spec/api/cells_ranges_api_spec.rb:270 # CellsRangesApi cells_ranges_post_worksheet_cells_ranges test should work
|
131
|
-
rspec ./spec/api/cells_workbook_api_spec.rb:544 # CellsWorkbookApi cells_workbook_post_protect_document test should work
|
13
|
+
Finished in 30 minutes 36 seconds (files took 1.16 seconds to load)
|
14
|
+
234 examples, 0 failures
|
132
15
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aspose_cells_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '20.
|
4
|
+
version: '20.9'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aspose Cells Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -235,6 +235,7 @@ files:
|
|
235
235
|
- aspose_cells_cloud-20.4.gem
|
236
236
|
- aspose_cells_cloud-20.6.gem
|
237
237
|
- aspose_cells_cloud-20.7.gem
|
238
|
+
- aspose_cells_cloud-20.8.gem
|
238
239
|
- aspose_cells_cloud.gemspec
|
239
240
|
- data/Book1.xlsx
|
240
241
|
- data/ImportData.xlsx
|
@@ -519,6 +520,7 @@ files:
|
|
519
520
|
- lib/aspose_cells_cloud/models/cells_document_properties_response.rb
|
520
521
|
- lib/aspose_cells_cloud/models/cells_document_property.rb
|
521
522
|
- lib/aspose_cells_cloud/models/cells_document_property_response.rb
|
523
|
+
- lib/aspose_cells_cloud/models/cells_error.rb
|
522
524
|
- lib/aspose_cells_cloud/models/cells_object_operate_task_parameter.rb
|
523
525
|
- lib/aspose_cells_cloud/models/cells_response.rb
|
524
526
|
- lib/aspose_cells_cloud/models/chart.rb
|
@@ -683,6 +685,11 @@ files:
|
|
683
685
|
- lib/aspose_cells_cloud/models/smart_marker_task_parameter.rb
|
684
686
|
- lib/aspose_cells_cloud/models/solid_fill.rb
|
685
687
|
- lib/aspose_cells_cloud/models/sort_key.rb
|
688
|
+
- lib/aspose_cells_cloud/models/sparkline.rb
|
689
|
+
- lib/aspose_cells_cloud/models/sparkline_group.rb
|
690
|
+
- lib/aspose_cells_cloud/models/sparkline_group_response.rb
|
691
|
+
- lib/aspose_cells_cloud/models/sparkline_groups.rb
|
692
|
+
- lib/aspose_cells_cloud/models/sparkline_groups_response.rb
|
686
693
|
- lib/aspose_cells_cloud/models/split_result.rb
|
687
694
|
- lib/aspose_cells_cloud/models/split_result_document.rb
|
688
695
|
- lib/aspose_cells_cloud/models/split_result_response.rb
|
@@ -758,6 +765,7 @@ files:
|
|
758
765
|
- spec/api/cells_save_as_api_spec.rb
|
759
766
|
- spec/api/cells_shapes_api_spec.rb
|
760
767
|
- spec/api/cells_simple_spec.rb
|
768
|
+
- spec/api/cells_sparkline_group_spec.rb
|
761
769
|
- spec/api/cells_storage_api_spec.rb
|
762
770
|
- spec/api/cells_storage_spec.rb
|
763
771
|
- spec/api/cells_task_api_spec.rb
|
@@ -795,6 +803,7 @@ summary: This Cloud SDK enhances your Ruby cloud-based apps to [process & manipu
|
|
795
803
|
without MS Office.
|
796
804
|
test_files:
|
797
805
|
- spec/api/cells_shapes_api_spec.rb
|
806
|
+
- spec/api/cells_sparkline_group_spec.rb
|
798
807
|
- spec/api/cells_page_setup_api_spec.rb
|
799
808
|
- spec/api/cells_api_spec.rb
|
800
809
|
- spec/api/cells_workbook_api_spec.rb
|