1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
|
# -*- encoding: utf-8 -*-
require 'spec_helper'
require 'yaml'
require 'nokogiri'
module Aliyun
module OSS
describe "Resumable upload" do
before :all do
@endpoint = 'oss-cn-hangzhou.aliyuncs.com'
@bucket_name = 'rubysdk-bucket'
@object_key = 'resumable_file'
@bucket = Client.new(
:endpoint => @endpoint,
:access_key_id => 'xxx',
:access_key_secret => 'yyy').get_bucket(@bucket_name)
@file = './file_to_upload'
# write 100B data
File.open(@file, 'w') do |f|
(1..10).each do |i|
f.puts i.to_s.rjust(9, '0')
end
end
end
before :each do
File.delete("#{@file}.cpt") if File.exist?("#{@file}.cpt")
end
def object_url
"#{@bucket_name}.#{@endpoint}/#{@object_key}"
end
def parse_query_from_uri(uri)
query = {}
str = uri.to_s[uri.to_s.index('?')+1..-1]
str.split("&").each do |q|
v = q.split('=')
query[v.at(0)] = v.at(1)
end
query
end
def mock_txn_id(txn_id)
Nokogiri::XML::Builder.new do |xml|
xml.InitiateMultipartUploadResult {
xml.Bucket @bucket
xml.Key @object
xml.UploadId txn_id
}
end.to_xml
end
def mock_error(code, message)
Nokogiri::XML::Builder.new do |xml|
xml.Error {
xml.Code code
xml.Message message
xml.RequestId '0000'
}
end.to_xml
end
def err(msg, reqid = '0000')
"#{msg} RequestId: #{reqid}"
end
it "should upload file when all goes well" do
stub_request(:post, /#{object_url}\?uploads.*/)
.to_return(:body => mock_txn_id('upload_id'))
stub_request(:put, /#{object_url}\?partNumber.*/)
stub_request(:post, /#{object_url}\?uploadId.*/)
prg = []
@bucket.resumable_upload(
@object_key, @file, :part_size => 10) { |p| prg << p }
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploads.*/).times(1)
part_numbers = Set.new([])
upload_ids = Set.new([])
expect(WebMock).to have_requested(
:put, /#{object_url}\?partNumber.*/).with{ |req|
query = parse_query_from_uri(req.uri)
part_numbers << query['partNumber']
upload_ids << query['uploadId']
}.times(10)
expect(part_numbers.to_a).to match_array((1..10).map{ |x| x.to_s })
expect(upload_ids.to_a).to match_array(['upload_id'])
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploadId.*/).times(1)
expect(File.exist?("#{@file}.cpt")).to be false
expect(prg.size).to eq(10)
end
it "should upload file with callback" do
stub_request(:post, /#{object_url}\?uploads.*/)
.to_return(:body => mock_txn_id('upload_id'))
stub_request(:put, /#{object_url}\?partNumber.*/)
stub_request(:post, /#{object_url}\?uploadId.*/)
callback = Callback.new(
url: 'http://app.server.com/callback',
query: {'id' => 1, 'name' => '杭州'},
body: 'hello world',
host: 'server.com'
)
@bucket.resumable_upload(
@object_key, @file, part_size: 10, callback: callback)
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploads.*/).times(1)
expect(WebMock).to have_requested(
:put, /#{object_url}\?partNumber.*/)
.times(10)
expect(WebMock)
.to have_requested(
:post, /#{object_url}\?uploadId.*/)
.with { |req| req.headers.key?('X-Oss-Callback') }
.times(1)
expect(File.exist?("#{@file}.cpt")).to be false
end
it "should raise CallbackError when callback failed" do
stub_request(:post, /#{object_url}\?uploads.*/)
.to_return(:body => mock_txn_id('upload_id'))
stub_request(:put, /#{object_url}\?partNumber.*/)
code = 'CallbackFailed'
message = 'Error status: 502.'
stub_request(:post, /#{object_url}\?uploadId.*/)
.to_return(:status => 203, :body => mock_error(code, message))
callback = Callback.new(
url: 'http://app.server.com/callback',
query: {'id' => 1, 'name' => '杭州'},
body: 'hello world',
host: 'server.com'
)
expect {
@bucket.resumable_upload(
@object_key, @file, part_size: 10, callback: callback)
}.to raise_error(CallbackError, err(message))
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploads.*/).times(1)
expect(WebMock).to have_requested(
:put, /#{object_url}\?partNumber.*/)
.times(10)
expect(WebMock)
.to have_requested(
:post, /#{object_url}\?uploadId.*/)
.with { |req| req.headers.key?('X-Oss-Callback') }
.times(1)
expect(File.exist?("#{@file}.cpt")).to be true
end
it "should upload file with custom headers" do
stub_request(:post, /#{object_url}\?uploads.*/)
.to_return(:body => mock_txn_id('upload_id'))
stub_request(:put, /#{object_url}\?partNumber.*/)
stub_request(:post, /#{object_url}\?uploadId.*/)
@bucket.resumable_upload(
@object_key, @file,
part_size: 10,
headers: {'cache-CONTROL' => 'cacheit', 'CONTENT-disposition' => 'oh;yeah'})
headers = {}
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploads.*/)
.with { |req| headers = req.headers }.times(1)
expect(headers['Cache-Control']).to eq('cacheit')
expect(headers['Content-Disposition']).to eq('oh;yeah')
expect(File.exist?("#{@file}.cpt")).to be false
end
it "should restart when begin txn fails" do
code = 'Timeout'
message = 'Request timeout.'
stub_request(:post, /#{object_url}\?uploads.*/)
.to_return(:status => 500, :body => mock_error(code, message)).then
.to_return(:body => mock_txn_id('upload_id'))
stub_request(:put, /#{object_url}\?partNumber.*/)
stub_request(:post, /#{object_url}\?uploadId.*/)
success = false
2.times do
begin
@bucket.resumable_upload(@object_key, @file, :part_size => 10)
success = true
rescue
# pass
end
end
expect(success).to be true
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploads.*/).times(2)
expect(WebMock).to have_requested(
:put, /#{object_url}\?partNumber.*/).times(10)
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploadId.*/).times(1)
end
it "should resume when upload part fails" do
# begin multipart
stub_request(:post, /#{object_url}\?uploads.*/)
.to_return(:body => mock_txn_id('upload_id'))
# commit multipart
stub_request(:post, /#{object_url}\?uploadId.*/)
code = 'Timeout'
message = 'Request timeout.'
# upload part
stub_request(:put, /#{object_url}\?partNumber.*/)
.to_return(:status => 200).times(3).then
.to_return(:status => 500, :body => mock_error(code, message)).times(2).then
.to_return(:status => 200).times(6).then
.to_return(:status => 500, :body => mock_error(code, message)).then
.to_return(:status => 200)
success = false
4.times do
begin
@bucket.resumable_upload(
@object_key, @file, part_size: 10, threads: 1)
success = true
rescue
# pass
end
end
expect(success).to be true
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploads.*/).times(1)
part_numbers = Set.new([])
upload_ids = Set.new([])
expect(WebMock).to have_requested(
:put, /#{object_url}\?partNumber.*/).with{ |req|
query = parse_query_from_uri(req.uri)
part_numbers << query['partNumber']
upload_ids << query['uploadId']
}.times(13)
expect(part_numbers.to_a).to match_array((1..10).map{ |x| x.to_s })
expect(upload_ids.to_a).to match_array(['upload_id'])
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploadId.*/).times(1)
end
it "should resume when checkpoint fails" do
# Monkey patch to inject failures
class ::Aliyun::OSS::Multipart::Upload
alias :old_checkpoint :checkpoint
def checkpoint_fails
@@fail_injections ||= [false, false, true, true, false, true, false]
@@fail_injections.shift
end
def checkpoint
t = checkpoint_fails
if t == true
raise ClientError.new("fail injection")
end
old_checkpoint
end
end
stub_request(:post, /#{object_url}\?uploads.*/)
.to_return(:body => mock_txn_id('upload_id'))
stub_request(:put, /#{object_url}\?partNumber.*/)
stub_request(:post, /#{object_url}\?uploadId.*/)
success = false
4.times do
begin
@bucket.resumable_upload(
@object_key, @file, part_size: 10, threads: 1)
success = true
rescue
# pass
end
end
expect(success).to be true
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploads.*/).times(1)
part_numbers = Set.new([])
expect(WebMock).to have_requested(
:put, /#{object_url}\?partNumber.*/).with{ |req|
query = parse_query_from_uri(req.uri)
part_numbers << query['partNumber']
query['uploadId'] == 'upload_id'
}.times(13)
expect(part_numbers.to_a).to match_array((1..10).map{ |x| x.to_s })
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploadId.*/).times(1)
end
it "should resume when commit txn fails" do
# begin multipart
stub_request(:post, /#{object_url}\?uploads.*/)
.to_return(:body => mock_txn_id('upload_id'))
# upload part
stub_request(:put, /#{object_url}\?partNumber.*/)
code = 'Timeout'
message = 'Request timeout.'
# commit multipart
stub_request(:post, /#{object_url}\?uploadId.*/)
.to_return(:status => 500, :body => mock_error(code, message)).times(2).then
.to_return(:status => 200)
success = false
3.times do
begin
@bucket.resumable_upload(
@object_key, @file, part_size: 10, threads: 1)
success = true
rescue
# pass
end
end
expect(success).to be true
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploads.*/).times(1)
expect(WebMock).to have_requested(
:put, /#{object_url}\?partNumber.*/).times(10)
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploadId.*/).with{ |req|
query = parse_query_from_uri(req.uri)
query['uploadId'] == 'upload_id'
}.times(3)
end
it "should not write checkpoint when specify disable_cpt" do
# begin multipart
stub_request(:post, /#{object_url}\?uploads.*/)
.to_return(:body => mock_txn_id('upload_id'))
# upload part
stub_request(:put, /#{object_url}\?partNumber.*/)
code = 'Timeout'
message = 'Request timeout.'
# commit multipart
stub_request(:post, /#{object_url}\?uploadId.*/)
.to_return(:status => 500, :body => mock_error(code, message)).times(2).then
.to_return(:status => 200)
cpt_file = "#{File.expand_path(@file)}.cpt"
success = false
3.times do
begin
@bucket.resumable_upload(
@object_key, @file, :part_size => 10,
:cpt_file => cpt_file, :disable_cpt => true)
success = true
rescue
# pass
end
expect(File.exists?(cpt_file)).to be false
end
expect(success).to be true
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploads.*/).times(3)
expect(WebMock).to have_requested(
:put, /#{object_url}\?partNumber.*/).times(30)
expect(WebMock).to have_requested(
:post, /#{object_url}\?uploadId.*/).with{ |req|
query = parse_query_from_uri(req.uri)
query['uploadId'] == 'upload_id'
}.times(3)
end
end # Resumable upload
end # OSS
end # Aliyun
|