user_spec.rb 4.4 KB
Newer Older
D
Dmitriy Zaporozhets 已提交
1 2 3 4
# == Schema Information
#
# Table name: users
#
D
Dmitriy Zaporozhets 已提交
5 6 7
#  id                     :integer          not null, primary key
#  email                  :string(255)      default(""), not null
#  encrypted_password     :string(255)      default(""), not null
D
Dmitriy Zaporozhets 已提交
8 9 10
#  reset_password_token   :string(255)
#  reset_password_sent_at :datetime
#  remember_created_at    :datetime
D
Dmitriy Zaporozhets 已提交
11
#  sign_in_count          :integer          default(0)
D
Dmitriy Zaporozhets 已提交
12 13 14 15
#  current_sign_in_at     :datetime
#  last_sign_in_at        :datetime
#  current_sign_in_ip     :string(255)
#  last_sign_in_ip        :string(255)
D
Dmitriy Zaporozhets 已提交
16 17
#  created_at             :datetime         not null
#  updated_at             :datetime         not null
D
Dmitriy Zaporozhets 已提交
18
#  name                   :string(255)
D
Dmitriy Zaporozhets 已提交
19 20 21 22 23
#  admin                  :boolean          default(FALSE), not null
#  projects_limit         :integer          default(10)
#  skype                  :string(255)      default(""), not null
#  linkedin               :string(255)      default(""), not null
#  twitter                :string(255)      default(""), not null
D
Dmitriy Zaporozhets 已提交
24
#  authentication_token   :string(255)
D
Dmitriy Zaporozhets 已提交
25 26
#  dark_scheme            :boolean          default(FALSE), not null
#  theme_id               :integer          default(1), not null
D
Dmitriy Zaporozhets 已提交
27
#  bio                    :string(255)
D
Dmitriy Zaporozhets 已提交
28 29
#  blocked                :boolean          default(FALSE), not null
#  failed_attempts        :integer          default(0)
D
Dmitriy Zaporozhets 已提交
30 31 32
#  locked_at              :datetime
#  extern_uid             :string(255)
#  provider               :string(255)
D
Dmitriy Zaporozhets 已提交
33
#  username               :string(255)
D
Dmitriy Zaporozhets 已提交
34 35
#

G
gitlabhq 已提交
36 37 38 39
require 'spec_helper'

describe User do
  describe "Associations" do
40
    it { should have_one(:namespace) }
41
    it { should have_many(:users_projects).dependent(:destroy) }
42
    it { should have_many(:projects) }
43
    it { should have_many(:groups) }
44 45 46
    it { should have_many(:keys).dependent(:destroy) }
    it { should have_many(:events).class_name('Event').dependent(:destroy) }
    it { should have_many(:recent_events).class_name('Event') }
47
    it { should have_many(:issues).dependent(:destroy) }
48
    it { should have_many(:notes).dependent(:destroy) }
49 50 51
    it { should have_many(:assigned_issues).dependent(:destroy) }
    it { should have_many(:merge_requests).dependent(:destroy) }
    it { should have_many(:assigned_merge_requests).dependent(:destroy) }
52 53
  end

54 55 56 57 58
  describe "Mass assignment" do
    it { should_not allow_mass_assignment_of(:projects_limit) }
    it { should allow_mass_assignment_of(:projects_limit).as(:admin) }
  end

59
  describe 'validations' do
60
    it { should validate_presence_of(:username) }
61 62 63 64 65 66
    it { should validate_presence_of(:projects_limit) }
    it { should validate_numericality_of(:projects_limit) }
    it { should allow_value(0).for(:projects_limit) }
    it { should_not allow_value(-1).for(:projects_limit) }

    it { should ensure_length_of(:bio).is_within(0..255) }
G
gitlabhq 已提交
67 68
  end

D
Dmitriy Zaporozhets 已提交
69 70 71 72
  describe 'modules' do
    it { should include_module(Account) }
  end

G
gitlabhq 已提交
73 74 75 76
  describe "Respond to" do
    it { should respond_to(:is_admin?) }
    it { should respond_to(:identifier) }
    it { should respond_to(:name) }
N
Nihad Abbasov 已提交
77
    it { should respond_to(:private_token) }
G
gitlabhq 已提交
78 79
  end

80 81 82 83 84
  describe '#identifier' do
    it "should return valid identifier" do
      user = build(:user, email: "test@mail.com")
      user.identifier.should == "test_mail_com"
    end
85

86 87 88 89
    it "should return identifier without + sign" do
      user = build(:user, email: "test+foo@mail.com")
      user.identifier.should == "test_foo_mail_com"
    end
90

91 92 93 94
    it "should conform to Gitolite's required identifier pattern" do
      user = build(:user, email: "_test@example.com")
      user.identifier.should == 'test_example_com'
    end
95 96
  end

97 98 99 100 101 102 103 104 105 106 107
  describe '#generate_password' do
    it "should execute callback when force_random_password specified" do
      user = build(:user, force_random_password: true)
      user.should_receive(:generate_password)
      user.save
    end

    it "should not generate password by default" do
      user = create(:user, password: 'abcdefg')
      user.password.should == 'abcdefg'
    end
108

109 110 111 112 113
    it "should generate password when forcing random password" do
      Devise.stub(:friendly_token).and_return('123456789')
      user = create(:user, password: 'abcdefg', force_random_password: true)
      user.password.should == '12345678'
    end
114 115
  end

116 117
  describe 'authentication token' do
    it "should have authentication token" do
118
      user = create(:user)
119 120
      user.authentication_token.should_not be_blank
    end
N
Nihad Abbasov 已提交
121
  end
G
gitlabhq 已提交
122
end