summaryrefslogtreecommitdiffstats
path: root/spec/unit/provider/vlan/cisco_spec.rb
blob: bb243a75eb06c85fe1acee99ee4459dd73f8cf70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env rspec

require File.dirname(__FILE__) + '/../../../spec_helper'

require 'puppet/provider/vlan/cisco'

provider_class = Puppet::Type.type(:vlan).provider(:cisco)

describe provider_class do
  before do
    @resource = stub("resource", :name => "200")
    @provider = provider_class.new(@resource)
  end

  it "should have a parent of Puppet::Provider::NetworkDevice" do
    provider_class.should < Puppet::Provider::NetworkDevice
  end

  it "should have an instances method" do
    provider_class.should respond_to(:instances)
  end

  describe "when looking up instances at prefetch" do
    before do
      @device = stub_everything 'device'
      Puppet::Util::NetworkDevice::Cisco::Device.stubs(:new).returns(@device)
      @device.stubs(:command).yields(@device)
    end

    it "should initialize the network device with the given url" do
      Puppet::Util::NetworkDevice::Cisco::Device.expects(:new).with(:url).returns(@device)
      provider_class.lookup(:url, "200")
    end

    it "should delegate to the device vlans" do
      @device.expects(:parse_vlans)
      provider_class.lookup("", "200")
    end

    it "should return only the given vlan" do
      @device.expects(:parse_vlans).returns({"200" => { :description => "thisone" }, "1" => { :description => "nothisone" }})
      provider_class.lookup("", "200").should == {:description => "thisone" }
    end

  end

  describe "when an instance is being flushed" do
    it "should call the device update_vlan method with its vlan id, current attributes, and desired attributes" do
      @instance = provider_class.new(:ensure => :present, :name => "200", :description => "myvlan")
      @instance.description = "myvlan2"
      @instance.resource = @resource
      @resource.stubs(:[]).with(:name).returns("200")
      device = stub_everything 'device'
      @instance.stubs(:device).returns(device)
      device.expects(:command).yields(device)
      device.expects(:update_vlan).with(@instance.name, {:ensure => :present, :name => "200", :description => "myvlan"},
                                                   {:ensure => :present, :name => "200", :description => "myvlan2"})

      @instance.flush
    end
  end
end