Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca34f07df7f005f783f51e141546a4aa9b58e4c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
require 'spec_helper'

describe User do
  describe "Associations" do
    it { should have_many(:users_projects).dependent(:destroy) }
    it { should have_many(:projects) }
    it { should have_many(:my_own_projects).class_name('Project') }
    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') }
    it { should have_many(:issues).dependent(:destroy) }
    it { should have_many(:notes).dependent(:destroy) }
    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) }
  end

  describe 'validations' do
    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) }
  end

  describe "Respond to" do
    it { should respond_to(:is_admin?) }
    it { should respond_to(:identifier) }
    it { should respond_to(:name) }
    it { should respond_to(:private_token) }
  end

  it "should return valid identifier" do
    user = User.new(email: "test@mail.com")
    user.identifier.should == "test_mail_com"
  end

  it "should return identifier without + sign" do
    user = User.new(email: "test+foo@mail.com")
    user.identifier.should == "test_foo_mail_com"
  end

  it "should execute callback when force_random_password specified" do
    user = User.new(email: "test@mail.com", force_random_password: true)
    user.should_receive(:generate_password)
    user.save
  end

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

  it "should generate password when forcing random password" do
    Devise.stub(:friendly_token).and_return('123456789')
    user = User.create(email: "test1@mail.com", force_random_password: true)
    user.password.should == user.password_confirmation
    user.password.should == '12345678'
  end

  it "should have authentication token" do
    user = Factory(:user)
    user.authentication_token.should_not == ""
  end
end