summaryrefslogtreecommitdiffstats
path: root/spec/unit/indirector/key/ca.rb
blob: 964b0b0eda64b7baf3984db15c53432471b8da3d (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
#!/usr/bin/env ruby
#
#  Created by Luke Kanies on 2008-3-7.
#  Copyright (c) 2007. All rights reserved.

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

require 'puppet/indirector/key/ca'

describe Puppet::SSL::Key::Ca do
    it "should have documentation" do
        Puppet::SSL::Key::Ca.doc.should be_instance_of(String)
    end

    it "should use the :privatekeydir as the collection directory" do
        Puppet.settings.expects(:value).with(:privatekeydir).returns "/key/dir"
        Puppet::SSL::Key::Ca.collection_directory.should == "/key/dir"
    end

    it "should store the ca key at the :cakey location" do
        Puppet.settings.stubs(:use)
        Puppet.settings.stubs(:value).returns "whatever"
        Puppet.settings.stubs(:value).with(:cakey).returns "/ca/key"
        file = Puppet::SSL::Key::Ca.new
        file.stubs(:ca?).returns true
        file.path("whatever").should == "/ca/key"
    end
end