b1f90fd1d2
This is a major change to the module and would be released as a new version. * Add self.instances to database and database_user for puppet resource. * Update database provider to use flush method. * Update module to conform to puppet-lint recommendations. * Cleanup some unecessary logic in mysql::db define type. * Move mysql_restart to config class. * Use class to class dependency instead of resource dependency. * Change appropriate rspec-puppet tests. * Add fixtures directory to simplify testing. * Update raketask and spec_helper to reflect fixture changes. * Update mysql_password function to support validation. * Move client installation to a separate class. * Update documentation and readme.
30 lines
876 B
Ruby
30 lines
876 B
Ruby
#!/usr/bin/env rspec
|
|
require 'spec_helper'
|
|
|
|
describe "the mysql_password function" do
|
|
before :all do
|
|
Puppet::Parser::Functions.autoloader.loadall
|
|
end
|
|
|
|
before :each do
|
|
@scope = Puppet::Parser::Scope.new
|
|
end
|
|
|
|
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))
|
|
end
|
|
|
|
it "should raise a ParseError if there is more than 1 arguments" do
|
|
lambda { @scope.function_mysql_password(['foo', 'bar']) }.should( raise_error(Puppet::ParseError))
|
|
end
|
|
|
|
it "should convert password into a hash" do
|
|
result = @scope.function_mysql_password(["password"])
|
|
result.should(eq('*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19'))
|
|
end
|
|
|
|
end
|