Sha256: 70b83e3ccb1bc30fdbd0a4dd7e476dba180b6e24ed9cb1587dcdcd383653fdd4

Contents?: true

Size: 1.6 KB

Versions: 10

Compression:

Stored size: 1.6 KB

Contents

require "helpers/integration_test_helper"

class TestBuckets < FogIntegrationTest
  begin
    @@connection = Fog::Storage::Google.new
    @@connection.delete_bucket("fog-smoke-test")
  rescue Exception => e
    # puts e
  end

  def setup
    @connection = @@connection
  end

  def teardown
    @connection.delete_bucket("fog-smoke-test")
  rescue
  end

  def test_put_bucket
    response = @connection.put_bucket("fog-smoke-test")
    assert_equal response.status, 200
  end

  def test_put_bucket_acl
    response = @connection.put_bucket("fog-smoke-test", options: { "x-goog-acl" => "publicReadWrite" })
    assert_equal response.status, 200
    acl = { :entity => "domain-google.com",
            :role => "READER" }
    response = @connection.put_bucket_acl("fog-smoke-test", acl)
    assert_equal response.status, 200
  end

  def test_delete_bucket
    response = @connection.put_bucket("fog-smoke-test")
    assert_equal response.status, 200
    response = @connection.delete_bucket("fog-smoke-test")
    assert_equal response.status, 204
  end

  def test_get_bucket
    response = @connection.put_bucket("fog-smoke-test")
    assert_equal response.status, 200
    response = @connection.get_bucket("fog-smoke-test")
    assert_equal response.status, 200
  end

  def test_get_bucket_acl
    response = @connection.put_bucket("fog-smoke-test",
                                      options: { "acl" => [{ :entity => "user-fake@developer.gserviceaccount.com", :role => "OWNER" }] })
    assert_equal response.status, 200
    response = @connection.get_bucket_acl("fog-smoke-test")
    assert_equal response.status, 200
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
fog-google-0.6.0 test/integration/storage/test_buckets.rb
fog-google-0.5.5 test/integration/storage/test_buckets.rb
fog-google-0.5.4 test/integration/storage/test_buckets.rb
fog-google-0.5.3 test/integration/storage/test_buckets.rb
fog-google-0.5.2 test/integration/storage/test_buckets.rb
fog-google-0.5.1 test/integration/storage/test_buckets.rb
fog-google-0.5.0 test/integration/storage/test_buckets.rb
fog-google-0.4.2 test/integration/storage/test_buckets.rb
fog-google-0.4.1 test/integration/storage/test_buckets.rb
fog-google-0.4.0 test/integration/storage/test_buckets.rb