Sha256: 18d46771e5ef411c97503f8d583315a64b6515e5a05ab93800d6fa5c7eb6f363
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 KB
Contents
require File.dirname(__FILE__) + '/spec_helper' require "open-uri" require "net/http" describe "Aliyun" do before(:all) do @opts = { :aliyun_access_id => ALIYUN_ACCESS_ID, :aliyun_access_key => ALIYUN_ACCESS_KEY, :aliyun_bucket => ALIYUN_BUCKET } @connection = CarrierWave::Storage::Aliyun::Connection.new(@opts) end it "should put" do url = @connection.put("a/a.jpg",load_file("foo.jpg")) Net::HTTP.get_response(URI.parse(url)).code.should == "200" end it "should put with / prefix" do url = @connection.put("/a/a.jpg",load_file("foo.jpg")) Net::HTTP.get_response(URI.parse(url)).code.should == "200" end it "should delete" do url = @connection.delete("/a/a.jpg") Net::HTTP.get_response(URI.parse(url)).code.should == "404" end it "should use default domain" do url = @connection.put("a/a.jpg",load_file("foo.jpg")) url.should == "http://#{ALIYUN_BUCKET}.oss-cn-hangzhou.aliyuncs.com/a/a.jpg" end it "should support custom domain" do @opts[:aliyun_host] = "foo.bar.com" @connection = CarrierWave::Storage::Aliyun::Connection.new(@opts) url = @connection.put("a/a.jpg",load_file("foo.jpg")) url.should == "http://foo.bar.com/a/a.jpg" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
carrierwave-aliyun-0.3.1 | spec/aliyun_spec.rb |
carrierwave-aliyun-0.3.0 | spec/aliyun_spec.rb |