Sha256: d93c476dd20f5ec3285af1f20d846d4067bf9a19655f997c7e0baf6668c6387f

Contents?: true

Size: 1.74 KB

Versions: 8

Compression:

Stored size: 1.74 KB

Contents

ENV['RACK_ENV'] = 'test'

require './spec'
require 'rspec'
require 'rack/test'

describe '${ClassName}' do
  def app
    Sinatra::Application
  end

  before do
    @username     = 'Gennaro'
    @email        = 'gennaro@bullo.pk'
    @password     = 'sonopropriounbullo!'
    @new_password = 'sonounnuovobullo'
    @level        = User.empty? ? User.founder : User.user
  end

  it 'creates an user' do
    User.exists?(@username).should be_false
    user = User.signup @username, @email, @password, @level
    user.errors.should             be_empty
    user.guest?.should             be_false
    user.founder?.should           be_true
    User.exists?(@username).should be_true

    user = User.signup @username, @email, @password, @level
    user.errors.should_not be_empty
  end

  it 'logs in a user' do
    User.exists?(@username).should         be_true
    User.login(@username, @password).should be_true

    user = User.get @username
    user.session.should have(29).chars
  end

  it 'logs out a user' do
    user = User.get @username
    user.session.should have(29).chars
    user.logout
    user.session.should be_empty
  end

  it 'recovers lost @password' do
    User.login(@username, @new_password).should be_false

    passcode = User.lost_password @username
    passcode.should_not be_false
    passcode.should have(29).chars

    recovery = User.password_recovery @username, passcode, @new_password
    recovery.should be_true

    User.login(@username, @new_password).should be_true
  end

  it 'change the user @level' do
    User.login(@username, @new_password).should be_true
    
    user = User.get @username
    user.founder?

    user.change_level User.banned
    user.banned?
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
gennaro-0.3.6.4 templates/authentication/spec/user_spec.rb
gennaro-0.3.6.3 templates/authentication/spec/user_spec.rb
gennaro-0.3.6.2 templates/authentication/spec/user_spec.rb
gennaro-0.3.6.1 templates/authentication/spec/user_spec.rb
gennaro-0.3.6 templates/authentication/spec/user_spec.rb
gennaro-0.3.5 templates/authentication/spec/user_spec.rb
gennaro-0.3.4.2 templates/authentication/spec/user_spec.rb
gennaro-0.3.4.1 templates/authentication/spec/user_spec.rb