aboutsummaryrefslogtreecommitdiff
path: root/spec/unit/parser/functions
diff options
context:
space:
mode:
authorTomas Barton <barton.tomas@gmail.com>2014-01-25 19:08:04 +0100
committerTomas Barton <barton.tomas@gmail.com>2014-01-25 19:08:04 +0100
commit2a0b58d6a8c2934ac2cd96364d6a3a6caee81a04 (patch)
tree40bd48a620d22d718e04b380f7fda0a7f0fc3505 /spec/unit/parser/functions
parent5486852c9e7a829209a640f031b6ee6f10bee239 (diff)
downloadpuppet-sshd-2a0b58d6a8c2934ac2cd96364d6a3a6caee81a04.tar.gz
puppet-sshd-2a0b58d6a8c2934ac2cd96364d6a3a6caee81a04.tar.bz2
testing infastructure, rspec tests
Diffstat (limited to 'spec/unit/parser/functions')
-rw-r--r--spec/unit/parser/functions/ssh_keygen.rb104
1 files changed, 0 insertions, 104 deletions
diff --git a/spec/unit/parser/functions/ssh_keygen.rb b/spec/unit/parser/functions/ssh_keygen.rb
deleted file mode 100644
index da45779..0000000
--- a/spec/unit/parser/functions/ssh_keygen.rb
+++ /dev/null
@@ -1,104 +0,0 @@
-#! /usr/bin/env ruby
-
-
-require File.dirname(__FILE__) + '/../../../spec_helper'
-
-require 'mocha'
-require 'fileutils'
-
-describe "the ssh_keygen function" do
-
- before :each do
- @scope = Puppet::Parser::Scope.new
- end
-
- it "should exist" do
- Puppet::Parser::Functions.function("ssh_keygen").should == "function_ssh_keygen"
- end
-
- it "should raise a ParseError if no argument is passed" do
- lambda { @scope.function_ssh_keygen }.should( raise_error(Puppet::ParseError))
- end
-
- it "should raise a ParseError if there is more than 1 arguments" do
- lambda { @scope.function_ssh_keygen("foo", "bar") }.should( raise_error(Puppet::ParseError))
- end
-
- it "should raise a ParseError if the argument is not fully qualified" do
- lambda { @scope.function_ssh_keygen("foo") }.should( raise_error(Puppet::ParseError))
- end
-
- it "should raise a ParseError if the private key path is a directory" do
- File.stubs(:directory?).with("/some_dir").returns(true)
- lambda { @scope.function_ssh_keygen("/some_dir") }.should( raise_error(Puppet::ParseError))
- end
-
- it "should raise a ParseError if the public key path is a directory" do
- File.stubs(:directory?).with("/some_dir.pub").returns(true)
- lambda { @scope.function_ssh_keygen("/some_dir") }.should( raise_error(Puppet::ParseError))
- end
-
- describe "when executing properly" do
- before do
- File.stubs(:directory?).with('/tmp/a/b/c').returns(false)
- File.stubs(:directory?).with('/tmp/a/b/c.pub').returns(false)
- File.stubs(:read).with('/tmp/a/b/c').returns('privatekey')
- File.stubs(:read).with('/tmp/a/b/c.pub').returns('publickey')
- end
-
- it "should fail if the public but not the private key exists" do
- File.stubs(:exists?).with("/tmp/a/b/c").returns(true)
- File.stubs(:exists?).with("/tmp/a/b/c.pub").returns(false)
- lambda { @scope.function_ssh_keygen("/tmp/a/b/c") }.should( raise_error(Puppet::ParseError))
- end
-
- it "should fail if the private but not the public key exists" do
- File.stubs(:exists?).with("/tmp/a/b/c").returns(false)
- File.stubs(:exists?).with("/tmp/a/b/c.pub").returns(true)
- lambda { @scope.function_ssh_keygen("/tmp/a/b/c") }.should( raise_error(Puppet::ParseError))
- end
-
-
- it "should return an array of size 2 with the right conent if the keyfiles exists" do
- File.stubs(:exists?).with("/tmp/a/b/c").returns(true)
- File.stubs(:exists?).with("/tmp/a/b/c.pub").returns(true)
- File.stubs(:directory?).with('/tmp/a/b').returns(true)
- Puppet::Util.expects(:execute).never
- result = @scope.function_ssh_keygen('/tmp/a/b/c')
- result.length.should == 2
- result[0].should == 'privatekey'
- result[1].should == 'publickey'
- end
-
- it "should create the directory path if it does not exist" do
- File.stubs(:exists?).with("/tmp/a/b/c").returns(false)
- File.stubs(:exists?).with("/tmp/a/b/c.pub").returns(false)
- File.stubs(:directory?).with("/tmp/a/b").returns(false)
- FileUtils.expects(:mkdir_p).with("/tmp/a/b", :mode => 0700)
- Puppet::Util.expects(:execute).returns("")
- result = @scope.function_ssh_keygen('/tmp/a/b/c')
- result.length.should == 2
- result[0].should == 'privatekey'
- result[1].should == 'publickey'
- end
-
- it "should generate the key if the keyfiles do not exist" do
- File.stubs(:exists?).with("/tmp/a/b/c").returns(false)
- File.stubs(:exists?).with("/tmp/a/b/c.pub").returns(false)
- File.stubs(:directory?).with("/tmp/a/b").returns(true)
- Puppet::Util.expects(:execute).with(['/usr/bin/ssh-keygen','-t', 'rsa', '-b', '4096', '-f', '/tmp/a/b/c', '-P', '', '-q']).returns("")
- result = @scope.function_ssh_keygen('/tmp/a/b/c')
- result.length.should == 2
- result[0].should == 'privatekey'
- result[1].should == 'publickey'
- end
-
- it "should fail if something goes wrong during generation" do
- File.stubs(:exists?).with("/tmp/a/b/c").returns(false)
- File.stubs(:exists?).with("/tmp/a/b/c.pub").returns(false)
- File.stubs(:directory?).with("/tmp/a/b").returns(true)
- Puppet::Util.expects(:execute).with(['/usr/bin/ssh-keygen','-t', 'rsa', '-b', '4096', '-f', '/tmp/a/b/c', '-P', '', '-q']).returns("something is wrong")
- lambda { @scope.function_ssh_keygen("/tmp/a/b/c") }.should( raise_error(Puppet::ParseError))
- end
- end
-end