Sha256: f6bb673f765868c7f7e3bbff6f31faf9d33eb89d5cf2a93c9406dc77512ab09d

Contents?: true

Size: 1.77 KB

Versions: 1

Compression:

Stored size: 1.77 KB

Contents

require File.dirname(__FILE__) + '/test_helper'

class ShaEncryptorByDefaulTest < Test::Unit::TestCase
  def setup
    @sha_encryptor = PluginAWeek::EncryptedStrings::ShaEncryptor.new
  end
  
  def test_should_use_default_salt
    assert_equal 'salt', @sha_encryptor.salt
  end
  
  def test_should_encrypt_using_default_salt
    assert_equal 'f438229716cab43569496f3a3630b3727524b81b', @sha_encryptor.encrypt('test')
  end
end

class ShaEncryptorWithInvalidOptionsTest < Test::Unit::TestCase
  def test_should_throw_an_exception
    assert_raise(ArgumentError) {PluginAWeek::EncryptedStrings::ShaEncryptor.new(:invalid => true)}
  end
end

class ShaEncryptorTest < Test::Unit::TestCase
  def setup
    @sha_encryptor = PluginAWeek::EncryptedStrings::ShaEncryptor.new
  end
  
  def test_should_not_be_able_to_decrypt
    assert !PluginAWeek::EncryptedStrings::ShaEncryptor.new.can_decrypt?
  end
  
  def test_should_raise_exception_if_trying_to_decrypt
    assert_raises(NotImplementedError) {PluginAWeek::EncryptedStrings::ShaEncryptor.new.decrypt('test')}
  end
end

class ShaEncryptorWithCustomSaltTest < Test::Unit::TestCase
  def setup
    @sha_encryptor = PluginAWeek::EncryptedStrings::ShaEncryptor.new(:salt => 'different salt')
  end
  
  def test_should_use_custom_salt
    assert_equal 'different salt', @sha_encryptor.salt
  end
  
  def test_should_encrypt_using_custom_salt
    assert_equal '18e3256d71529db8fa65b2eef24a69ddad7070f3', @sha_encryptor.encrypt('test')
  end
end

class ShaEncryptorWithNonStringSaltTest < Test::Unit::TestCase
  def setup
    @sha_encryptor = PluginAWeek::EncryptedStrings::ShaEncryptor.new(:salt => Time.parse('Tue Jan 01 00:00:00 UTC 2008'))
  end
  
  def test_should_stringify_salt
    assert_equal 'Tue Jan 01 00:00:00 UTC 2008', @sha_encryptor.salt
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
encrypted_strings-0.0.5 test/sha_encryptor_test.rb