Sha256: 9005dbe6acc8655581d88b8136e40e5baad55a6a7c5a2ac322613f959b96f128

Contents?: true

Size: 1.32 KB

Versions: 2

Compression:

Stored size: 1.32 KB

Contents

# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require 'spec_helper'

describe Chef::Knife::GoogleDiskList do
  let(:knife_plugin) do
    Chef::Knife::GoogleDiskList.new(["-Z"+stored_zone.name])
  end

  it "should enlist all the GCE disks when run invoked" do
    zones = double(Google::Compute::ListableResourceCollection)
    zones.should_receive(:get).with(stored_zone.name).
      and_return(stored_zone)
    disks = double(Google::Compute::ListableResourceCollection)
    disks.should_receive(:list).with(:zone => stored_zone.name).
      and_return([stored_disk])

    client = double(Google::Compute::Client, :disks => disks, :zones => zones)
    Google::Compute::Client.stub(:from_json).and_return(client)
    $stdout.should_receive(:write).with(kind_of(String))
    knife_plugin.run
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
knife-google-1.3.1 spec/chef/knife/google_disk_list_spec.rb
knife-google-1.2.0 spec/chef/knife/google_disk_list_spec.rb