Sha256: 3e0f51642a0ffe29de29cbfbf128a659b739727b91c63e7d7748d41b42566242

Contents?: true

Size: 852 Bytes

Versions: 2

Compression:

Stored size: 852 Bytes

Contents

#!/usr/bin/env rspec
#
#  Created by Luke Kanies on 2008-3-7.
#  Copyright (c) 2007. All rights reserved.

require '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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
puppet-2.7.3 spec/unit/indirector/key/ca_spec.rb
puppet-2.7.1 spec/unit/indirector/key/ca_spec.rb