summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-04-19 14:59:11 -0500
committerLuke Kanies <luke@madstop.com>2008-04-19 14:59:11 -0500
commitd4813f1e03d96551e91b104e48b028fb4074d398 (patch)
tree535b8ebeadc42be7e3d1bcc8679c1790a341ec19 /spec
parent809fc77bc767fb3acabc83d55183686200b1e384 (diff)
Adding the last functionality needed for puppetca to use the Indirector.
This commit adds 'list' and 'print' support to the CA. They're mostly delegator methods, but now the CA should be the sole interface for puppetca.
Diffstat (limited to 'spec')
-rwxr-xr-xspec/unit/ssl/certificate_authority.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/unit/ssl/certificate_authority.rb b/spec/unit/ssl/certificate_authority.rb
index a4d8568fe..50f8cec9a 100755
--- a/spec/unit/ssl/certificate_authority.rb
+++ b/spec/unit/ssl/certificate_authority.rb
@@ -400,6 +400,26 @@ describe Puppet::SSL::CertificateAuthority do
@ca.should respond_to(:verify)
end
+ it "should list certificates as the sorted list of all existing signed certificates" do
+ cert1 = stub 'cert1', :name => "cert1"
+ cert2 = stub 'cert2', :name => "cert2"
+ Puppet::SSL::Certificate.expects(:search).with("*").returns [cert1, cert2]
+ @ca.list.should == %w{cert1 cert2}
+ end
+
+ describe "and printing certificates" do
+ it "should return nil if the certificate cannot be found" do
+ Puppet::SSL::Certificate.expects(:find).with("myhost").returns nil
+ @ca.print("myhost").should be_nil
+ end
+
+ it "should print certificates by calling :to_text on the host's certificate" do
+ cert1 = stub 'cert1', :name => "cert1", :to_text => "mytext"
+ Puppet::SSL::Certificate.expects(:find).with("myhost").returns cert1
+ @ca.print("myhost").should == "mytext"
+ end
+ end
+
describe "and verifying certificates" do
before do
@store = stub 'store', :verify => true, :add_file => nil, :purpose= => nil, :add_crl => true