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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
|
#!/usr/bin/env rspec
require 'spec_helper'
require 'puppet/application/cert'
describe Puppet::Application::Cert do
before :each do
@cert_app = Puppet::Application[:cert]
Puppet::Util::Log.stubs(:newdestination)
Puppet::Util::Log.stubs(:level=)
end
it "should operate in master run_mode" do
@cert_app.class.run_mode.name.should equal(:master)
end
it "should ask Puppet::Application to parse Puppet configuration file" do
@cert_app.should_parse_config?.should be_true
end
it "should declare a main command" do
@cert_app.should respond_to(:main)
end
Puppet::SSL::CertificateAuthority::Interface::INTERFACE_METHODS.reject{ |m| m == :destroy }.each do |method|
it "should declare option --#{method}" do
@cert_app.should respond_to("handle_#{method}".to_sym)
end
end
it "should set log level to info with the --verbose option" do
Puppet::Log.expects(:level=).with(:info)
@cert_app.handle_verbose(0)
end
it "should set log level to debug with the --debug option" do
Puppet::Log.expects(:level=).with(:debug)
@cert_app.handle_debug(0)
end
it "should set the fingerprint digest with the --digest option" do
@cert_app.handle_digest(:digest)
@cert_app.digest.should == :digest
end
it "should set cert_mode to :destroy for --clean" do
@cert_app.handle_clean(0)
@cert_app.subcommand.should == :destroy
end
it "should set all to true for --all" do
@cert_app.handle_all(0)
@cert_app.all.should be_true
end
it "should set signed to true for --signed" do
@cert_app.handle_signed(0)
@cert_app.signed.should be_true
end
Puppet::SSL::CertificateAuthority::Interface::INTERFACE_METHODS.reject { |m| m == :destroy }.each do |method|
it "should set cert_mode to #{method} with option --#{method}" do
@cert_app.send("handle_#{method}".to_sym, nil)
@cert_app.subcommand.should == method
end
end
describe "during setup" do
before :each do
Puppet::Log.stubs(:newdestination)
Puppet::SSL::Host.stubs(:ca_location=)
Puppet::SSL::CertificateAuthority.stubs(:new)
end
it "should set console as the log destination" do
Puppet::Log.expects(:newdestination).with(:console)
@cert_app.setup
end
it "should print puppet config if asked to in Puppet config" do
@cert_app.stubs(:exit)
Puppet.settings.stubs(:print_configs?).returns(true)
Puppet.settings.expects(:print_configs)
@cert_app.setup
end
it "should exit after printing puppet config if asked to in Puppet config" do
Puppet.settings.stubs(:print_configs?).returns(true)
lambda { @cert_app.setup }.should raise_error(SystemExit)
end
it "should set the CA location to 'only'" do
Puppet::SSL::Host.expects(:ca_location=).with(:only)
@cert_app.setup
end
it "should create a new certificate authority" do
Puppet::SSL::CertificateAuthority.expects(:new)
@cert_app.setup
end
it "should set the ca_location to :local if the cert_mode is generate" do
@cert_app.subcommand = 'generate'
Puppet::SSL::Host.expects(:ca_location=).with(:local)
@cert_app.setup
end
it "should set the ca_location to :local if the cert_mode is destroy" do
@cert_app.subcommand = 'destroy'
Puppet::SSL::Host.expects(:ca_location=).with(:local)
@cert_app.setup
end
it "should set the ca_location to :only if the cert_mode is print" do
@cert_app.subcommand = 'print'
Puppet::SSL::Host.expects(:ca_location=).with(:only)
@cert_app.setup
end
end
describe "when running" do
before :each do
@cert_app.all = false
@ca = stub_everything 'ca'
@cert_app.ca = @ca
@cert_app.command_line.stubs(:args).returns([])
end
it "should delegate to the CertificateAuthority" do
@ca.expects(:apply)
@cert_app.main
end
it "should delegate with :all if option --all was given" do
@cert_app.handle_all(0)
@ca.expects(:apply).with { |cert_mode,to| to[:to] == :all }
@cert_app.main
end
it "should delegate to ca.apply with the hosts given on command line" do
@cert_app.command_line.stubs(:args).returns(["host"])
@ca.expects(:apply).with { |cert_mode,to| to[:to] == ["host"]}
@cert_app.main
end
it "should send the currently set digest" do
@cert_app.command_line.stubs(:args).returns(["host"])
@cert_app.handle_digest(:digest)
@ca.expects(:apply).with { |cert_mode,to| to[:digest] == :digest}
@cert_app.main
end
it "should revoke cert if cert_mode is clean" do
@cert_app.subcommand = :destroy
@cert_app.command_line.stubs(:args).returns(["host"])
@ca.expects(:apply).with { |cert_mode,to| cert_mode == :revoke }
@ca.expects(:apply).with { |cert_mode,to| cert_mode == :destroy }
@cert_app.main
end
end
describe "when identifying subcommands" do
before :each do
@cert_app.all = false
@ca = stub_everything 'ca'
@cert_app.ca = @ca
end
%w{list revoke generate sign print verify fingerprint}.each do |cmd|
short = cmd[0,1]
[cmd, "--#{cmd}", "-#{short}"].each do |option|
# In our command line '-v' was eaten by 'verbose', so we can't consume
# it here; this is a special case from our otherwise standard
# processing. --daniel 2011-02-22
next if option == "-v"
it "should recognise '#{option}'" do
args = [option, "fun.example.com"]
@cert_app.command_line.stubs(:args).returns(args)
@cert_app.parse_options
@cert_app.subcommand.should == cmd.to_sym
args.should == ["fun.example.com"]
end
end
end
%w{clean --clean -c}.each do |ugly|
it "should recognise the '#{ugly}' option as destroy" do
args = [ugly, "fun.example.com"]
@cert_app.command_line.stubs(:args).returns(args)
@cert_app.parse_options
@cert_app.subcommand.should == :destroy
args.should == ["fun.example.com"]
end
end
end
end
|