summaryrefslogtreecommitdiff
path: root/spec/models/users_statistics_spec.rb
blob: add9bd18755e1f4c8239bb18674da3d562346299 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe UsersStatistics do
  let(:users_statistics) { build(:users_statistics) }

  describe 'scopes' do
    describe '.order_created_at_desc' do
      it 'returns the entries ordered by created at descending' do
        users_statistics1 = create(:users_statistics, created_at: Time.current)
        users_statistics2 = create(:users_statistics, created_at: Time.current - 2.days)
        users_statistics3 = create(:users_statistics, created_at: Time.current - 5.hours)

        expect(described_class.order_created_at_desc).to eq(
          [
            users_statistics1,
            users_statistics3,
            users_statistics2
          ]
        )
      end
    end
  end

  describe '.latest' do
    it 'returns the latest entry' do
      create(:users_statistics, created_at: Time.current - 1.day)
      users_statistics = create(:users_statistics, created_at: Time.current)

      expect(described_class.latest).to eq(users_statistics)
    end
  end

  describe '.create_current_stats!' do
    before do
      create_list(:user_highest_role, 1)
      create_list(:user_highest_role, 2, :guest)
      create_list(:user_highest_role, 2, :reporter)
      create_list(:user_highest_role, 2, :developer)
      create_list(:user_highest_role, 2, :maintainer)
      create_list(:user_highest_role, 2, :owner)
      create_list(:user, 2, :bot)
      create_list(:user, 1, :blocked)

      allow(described_class.connection).to receive(:transaction_open?).and_return(false)
    end

    context 'when successful' do
      it 'creates an entry with the current statistics values' do
        expect(described_class.create_current_stats!).to have_attributes(
          without_groups_and_projects: 1,
          with_highest_role_guest: 2,
          with_highest_role_reporter: 2,
          with_highest_role_developer: 2,
          with_highest_role_maintainer: 2,
          with_highest_role_owner: 2,
          bots: 2,
          blocked: 1
        )
      end
    end

    context 'when unsuccessful' do
      it 'raises an ActiveRecord::RecordInvalid exception' do
        allow(UsersStatistics).to receive(:create!).and_raise(ActiveRecord::RecordInvalid)

        expect { described_class.create_current_stats! }.to raise_error(ActiveRecord::RecordInvalid)
      end
    end
  end

  describe '#active' do
    it 'sums users statistics values without the value for blocked' do
      expect(users_statistics.active).to eq(71)
    end
  end

  describe '#total' do
    it 'sums all users statistics values' do
      expect(users_statistics.total).to eq(78)
    end
  end
end