summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/data/.keep0
-rw-r--r--spec/trocla/util_spec.rb28
-rw-r--r--spec/trocla_spec.rb128
3 files changed, 156 insertions, 0 deletions
diff --git a/spec/data/.keep b/spec/data/.keep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/spec/data/.keep
diff --git a/spec/trocla/util_spec.rb b/spec/trocla/util_spec.rb
new file mode 100644
index 0000000..879b244
--- /dev/null
+++ b/spec/trocla/util_spec.rb
@@ -0,0 +1,28 @@
+require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
+
+describe "Trocla::Util" do
+
+ { :random_str => 12, :salt => 8 }.each do |m,length|
+ describe m do
+ it "should be random" do
+ Trocla::Util.send(m).should_not eql(Trocla::Util.send(m))
+ end
+
+ it "should default to length #{length}" do
+ Trocla::Util.send(m).length.should == length
+ end
+
+ it "should be possible to change length" do
+ Trocla::Util.send(m,8).length.should == 8
+ Trocla::Util.send(m,32).length.should == 32
+ Trocla::Util.send(m,1).length.should == 1
+ end
+ end
+ end
+
+ describe :salt do
+ it "should only contain characters and numbers" do
+ Trocla::Util.salt =~ /^[a-z0-9]+$/i
+ end
+ end
+end
diff --git a/spec/trocla_spec.rb b/spec/trocla_spec.rb
new file mode 100644
index 0000000..61d9921
--- /dev/null
+++ b/spec/trocla_spec.rb
@@ -0,0 +1,128 @@
+require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
+
+describe "Trocla" do
+
+ before(:each) do
+ Trocla.any_instance.expects(:read_config).returns(test_config)
+ @trocla = Trocla.new
+ end
+
+ describe "password" do
+ it "should generate random passwords by default" do
+ @trocla.password('random1','plain').should_not eql(@trocla.password('random2','plain'))
+ end
+
+ it "should generate passwords of length #{default_config['options']['length']}" do
+ @trocla.password('random1','plain').length.should eql(default_config['options']['length'])
+ end
+
+ Trocla::Formats.all.each do |format|
+ describe "#{format} password format" do
+ it "should return a password hashed in the #{format} format" do
+ @trocla.password('some_test',format,format_options[format]).should_not be_empty
+ end
+
+ it "should return the same hashed for the #{format} format on multiple invocations" do
+ (round1=@trocla.password('some_test',format,format_options[format])).should_not be_empty
+ @trocla.password('some_test',format,format_options[format]).should eql(round1)
+ end
+
+ it "should also store the plain password by default" do
+ pwd = @trocla.password('some_test','plain')
+ pwd.should_not be_empty
+ pwd.length.should eql(12)
+ end
+ end
+ end
+
+ Trocla::Formats.all.reject{|f| f == 'plain' }.each do |format|
+ it "should raise an exception if not a random password is asked but plain password is not present for format #{format}" do
+ lambda{ @trocla.password('not_random',format, 'random' => false) }.should raise_error
+ end
+ end
+ end
+
+ describe "set_password" do
+ it "should reset hashed passwords on a new plain password" do
+ @trocla.password('set_test','mysql').should_not be_empty
+ @trocla.get_password('set_test','mysql').should_not be_nil
+ (old_plain=@trocla.password('set_test','mysql')).should_not be_empty
+
+ @trocla.set_password('set_test','plain','foobar').should_not eql(old_plain)
+ @trocla.get_password('set_test','mysql').should be_nil
+ end
+
+ it "should otherwise only update the hash" do
+ (mysql = @trocla.password('set_test2','mysql')).should_not be_empty
+ (md5crypt = @trocla.password('set_test2','md5crypt')).should_not be_empty
+ (plain = @trocla.get_password('set_test2','plain')).should_not be_empty
+
+ (new_mysql = @trocla.set_password('set_test2','mysql','foo')).should_not eql(mysql)
+ @trocla.get_password('set_test2','mysql').should eql(new_mysql)
+ @trocla.get_password('set_test2','md5crypt').should eql(md5crypt)
+ @trocla.get_password('set_test2','plain').should eql(plain)
+ end
+ end
+
+ describe "reset_password" do
+ it "should reset a password" do
+ plain1 = @trocla.password('reset_pwd','plain')
+ plain2 = @trocla.reset_password('reset_pwd','plain')
+
+ plain1.should_not eql(plain2)
+ end
+
+ it "should not reset other formats" do
+ (mysql = @trocla.password('reset_pwd2','mysql')).should_not be_empty
+ (md5crypt1 = @trocla.password('reset_pwd2','md5crypt')).should_not be_empty
+
+ (md5crypt2 = @trocla.reset_password('reset_pwd2','md5crypt')).should_not be_empty
+ md5crypt2.should_not eql(md5crypt1)
+
+ @trocla.get_password('reset_pwd2','mysql').should eql(mysql)
+ end
+ end
+
+ describe "delete_password" do
+ it "should delete all passwords if no format is given" do
+ @trocla.password('delete_test1','mysql').should_not be_nil
+ @trocla.get_password('delete_test1','plain').should_not be_nil
+
+ @trocla.delete_password('delete_test1')
+ @trocla.get_password('delete_test1','plain').should be_nil
+ @trocla.get_password('delete_test1','mysql').should be_nil
+ end
+
+ it "should delete only a given format" do
+ @trocla.password('delete_test2','mysql').should_not be_nil
+ @trocla.get_password('delete_test2','plain').should_not be_nil
+
+ @trocla.delete_password('delete_test2','plain')
+ @trocla.get_password('delete_test2','plain').should be_nil
+ @trocla.get_password('delete_test2','mysql').should_not be_nil
+ end
+
+ it "should delete only a given non-plain format" do
+ @trocla.password('delete_test3','mysql').should_not be_nil
+ @trocla.get_password('delete_test3','plain').should_not be_nil
+
+ @trocla.delete_password('delete_test3','mysql')
+ @trocla.get_password('delete_test3','mysql').should be_nil
+ @trocla.get_password('delete_test3','plain').should_not be_nil
+ end
+ end
+
+ describe "VERSION" do
+ it "should return a version" do
+ Trocla::VERSION::STRING.should_not be_empty
+ end
+ end
+
+ def format_options
+ @format_options ||= Hash.new({}).merge({
+ 'pgsql' => { 'username' => 'test' },
+ 'x509' => { 'CN' => 'test' },
+ })
+ end
+
+end