Sha256: 97ed8d38dbfdea5caf24db51ffd19a221016db0475a9c18918f77438face4358

Contents?: true

Size: 1.03 KB

Versions: 39

Compression:

Stored size: 1.03 KB

Contents

require 'ecloud/spec_helper'

if Fog.mocking?
  describe Fog::Ecloud, :type => :mock_tmrk_ecloud_request do
    subject { @vcloud }

    it { should respond_to(:power_off) }

    describe :power_off, :type => :vcloud_request do
      context "with a valid vapp uri" do
        before { @mock_vm.power_on!; @power_off = @vcloud.power_off(@mock_vm.href(:power_off)) }
        subject { @power_off }

        it_should_behave_like "all responses"
        #it { should have_headers_denoting_a_content_type_of "application/vnd.vmware.vcloud.network+xml" }

        specify { @mock_vm.status.should == 2 }

        describe :body do
          subject { @power_off.body }

          it_should_behave_like "it has the standard vcloud v0.8 xmlns attributes"   # 3 keys
        end
      end

      context "with a vapp uri that doesn't exist" do
        subject { lambda { @vcloud.power_off(URI.parse('https://www.fakey.com/api/v0.8/vapp/9999')) } }
        it_should_behave_like "a request for a resource that doesn't exist"
      end
    end
  end
else
end

Version data entries

39 entries across 39 versions & 8 rubygems

Version Path
brightbox-cli-0.18.1 lib/brightbox-cli/vendor/fog/spec/ecloud/requests/power_off_spec.rb
michiels-fog-1.3.1 spec/ecloud/requests/power_off_spec.rb
ftl-0.2.0 vendor/bundle/gems/fog-1.3.1/spec/ecloud/requests/power_off_spec.rb
brightbox-cli-0.18.0 lib/brightbox-cli/vendor/fog/spec/ecloud/requests/power_off_spec.rb
fog-1.3.1 spec/ecloud/requests/power_off_spec.rb
fog-1.3.0 spec/ecloud/requests/power_off_spec.rb
brightbox-cli-0.17.5 lib/brightbox-cli/vendor/fog/spec/ecloud/requests/power_off_spec.rb
fog-1.2.0 spec/ecloud/requests/power_off_spec.rb
ktheory-fog-1.1.2 spec/ecloud/requests/power_off_spec.rb
brightbox-cli-0.17.4 lib/brightbox-cli/vendor/fog/spec/ecloud/requests/power_off_spec.rb
brightbox-cli-0.17.3 lib/brightbox-cli/vendor/fog/spec/ecloud/requests/power_off_spec.rb
brightbox-cli-0.17.2 lib/brightbox-cli/vendor/fog/spec/ecloud/requests/power_off_spec.rb
brightbox-cli-0.17.1 lib/brightbox-cli/vendor/fog/spec/ecloud/requests/power_off_spec.rb
brightbox-cli-0.17.0 lib/brightbox-cli/vendor/fog/spec/ecloud/requests/power_off_spec.rb
fog-1.1.2 spec/ecloud/requests/power_off_spec.rb
fog_tractical-1.1.4 spec/ecloud/requests/power_off_spec.rb
fog_tractical-1.1.3 spec/ecloud/requests/power_off_spec.rb
brightbox-cli-0.16.0 lib/brightbox-cli/vendor/fog/spec/ecloud/requests/power_off_spec.rb
fog-1.1.1 spec/ecloud/requests/power_off_spec.rb
fog-1.1.0 spec/ecloud/requests/power_off_spec.rb