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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet/util/network_device/config'
describe Puppet::Util::NetworkDevice::Config do
include PuppetSpec::Files
before(:each) do
Puppet[:deviceconfig] = tmpfile('deviceconfig')
end
describe "when parsing device" do
let(:config) { Puppet::Util::NetworkDevice::Config.new }
def write_device_config(*lines)
File.open(Puppet[:deviceconfig], 'w') {|f| f.puts lines}
end
it "should skip comments" do
write_device_config(' # comment')
config.devices.should be_empty
end
it "should increment line number even on commented lines" do
write_device_config(' # comment','[router.puppetlabs.com]')
config.devices.should be_include('router.puppetlabs.com')
end
it "should skip blank lines" do
write_device_config(' ')
config.devices.should be_empty
end
it "should produce the correct line number" do
write_device_config(' ', '[router.puppetlabs.com]')
config.devices['router.puppetlabs.com'].line.should == 2
end
it "should throw an error if the current device already exists" do
write_device_config('[router.puppetlabs.com]', '[router.puppetlabs.com]')
end
it "should accept device certname containing dashes" do
write_device_config('[router-1.puppetlabs.com]')
config.devices.should include('router-1.puppetlabs.com')
end
it "should create a new device for each found device line" do
write_device_config('[router.puppetlabs.com]', '[swith.puppetlabs.com]')
config.devices.size.should == 2
end
it "should parse the device type" do
write_device_config('[router.puppetlabs.com]', 'type cisco')
config.devices['router.puppetlabs.com'].provider.should == 'cisco'
end
it "should parse the device url" do
write_device_config('[router.puppetlabs.com]', 'type cisco', 'url ssh://test/')
config.devices['router.puppetlabs.com'].url.should == 'ssh://test/'
end
it "should parse the debug mode" do
write_device_config('[router.puppetlabs.com]', 'type cisco', 'url ssh://test/', 'debug')
config.devices['router.puppetlabs.com'].options.should == { :debug => true }
end
it "should set the debug mode to false by default" do
write_device_config('[router.puppetlabs.com]', 'type cisco', 'url ssh://test/')
config.devices['router.puppetlabs.com'].options.should == { :debug => false }
end
end
end
|