Rework tests for mysql_password to extend coverage.

This commit is contained in:
Ashley Penney 2013-08-17 20:55:00 -04:00
parent 369c83126b
commit 596d005a98

View file

@ -1,4 +1,3 @@
#!/usr/bin/env rspec
require 'spec_helper'
describe 'the mysql_password function' do
@ -6,28 +5,22 @@ describe 'the mysql_password function' do
Puppet::Parser::Functions.autoloader.loadall
end
before :each do
@scope = if Puppet.version =~ /^3/
Puppet::Parser::Scope.new_for_test_harness('localhost')
else
Puppet::Parser::Scope.new
end
end
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
it 'should exist' do
Puppet::Parser::Functions.function('mysql_password').should == 'function_mysql_password'
end
it 'should raise a ParseError if there is less than 1 arguments' do
lambda { @scope.function_mysql_password([]) }.should( raise_error(Puppet::ParseError))
lambda { scope.function_mysql_password([]) }.should( raise_error(Puppet::ParseError))
end
it 'should raise a ParseError if there is more than 1 arguments' do
lambda { @scope.function_mysql_password(%w(foo bar)) }.should( raise_error(Puppet::ParseError))
lambda { scope.function_mysql_password(%w(foo bar)) }.should( raise_error(Puppet::ParseError))
end
it 'should convert password into a hash' do
result = @scope.function_mysql_password(%w(password))
result = scope.function_mysql_password(%w(password))
result.should(eq('*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19'))
end