Sha256: 53bb157b2d68d1285672d82b42103c772f74b91d0a32562225a95b4cde5c414b
Contents?: true
Size: 1.98 KB
Versions: 2
Compression:
Stored size: 1.98 KB
Contents
require "spec_helper" require "fog/brightbox/models/compute/database_server" describe Fog::Brightbox::Compute::DatabaseServer do include ModelSetup include SupportsResourceLocking subject { service.database_servers.new } describe "when asked for collection name" do it "responds 'database_servers'" do assert_equal "database_servers", subject.collection_name end end describe "when asked for resource name" do it "responds 'database_server'" do assert_equal "database_server", subject.resource_name end end describe "when snapshotting withi no options" do it "returns the database server" do stub_request(:post, "http://localhost/1.0/database_servers/dbs-12345/snapshot"). with(:query => hash_including(:account_id), :headers => { "Authorization" => "Bearer FAKECACHEDTOKEN" }). to_return(:status => 202, :body => %q({"id": "dbs-12345"}), :headers => {}) @database_server = Fog::Brightbox::Compute::DatabaseServer.new(:service => service, :id => "dbs-12345") assert @database_server.snapshot end end describe "when snapshotting with link option" do it "returns the new image" do link = "<https://api.gb1.brightbox.com/1.0/database_snapshots/dbi-12345>; rel=snapshot" stub_request(:post, "http://localhost/1.0/database_servers/dbs-12345/snapshot"). with(:headers => { "Authorization" => "Bearer FAKECACHEDTOKEN" }). to_return(:status => 202, :body => "{}", :headers => { "Link" => link }) stub_request(:get, "http://localhost/1.0/database_snapshots/dbi-12345"). with(:query => hash_including(:account_id), :headers => { "Authorization" => "Bearer FAKECACHEDTOKEN" }). to_return(:status => 200, :body => %q({"id": "dbs-12345"})) @database_server = Fog::Brightbox::Compute::DatabaseServer.new(:service => service, :id => "dbs-12345") assert_kind_of Fog::Brightbox::Compute::DatabaseSnapshot, @database_server.snapshot(true) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fog-brightbox-1.0.0 | spec/fog/compute/brightbox/database_server_spec.rb |
fog-brightbox-1.0.0.rc2 | spec/fog/compute/brightbox/database_server_spec.rb |