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

timelog_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9019b55635303c844121ac602a06f23c7d93052 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Timelog do
  subject { build(:timelog) }

  let(:issue) { create(:issue) }
  let(:merge_request) { create(:merge_request) }

  it { is_expected.to belong_to(:issue).touch(true) }
  it { is_expected.to belong_to(:merge_request).touch(true) }

  it { is_expected.to be_valid }

  it { is_expected.to validate_presence_of(:time_spent) }
  it { is_expected.to validate_presence_of(:user) }

  describe 'Issuable validation' do
    it 'is invalid if issue_id and merge_request_id are missing' do
      subject.attributes = { issue: nil, merge_request: nil }

      expect(subject).to be_invalid
    end

    it 'is invalid if issue_id and merge_request_id are set' do
      subject.attributes = { issue: issue, merge_request: merge_request }

      expect(subject).to be_invalid
    end

    it 'is valid if only issue_id is set' do
      subject.attributes = { issue: issue, merge_request: nil }

      expect(subject).to be_valid
    end

    it 'is valid if only merge_request_id is set' do
      subject.attributes = { merge_request: merge_request, issue: nil }

      expect(subject).to be_valid
    end

    describe 'when importing' do
      it 'is valid if issue_id and merge_request_id are missing' do
        subject.attributes = { issue: nil, merge_request: nil, importing: true }

        expect(subject).to be_valid
      end
    end
  end

  describe 'scopes' do
    describe 'for_issues_in_group' do
      it 'return timelogs created for group issues' do
        group = create(:group)
        subgroup = create(:group, parent: group)

        create(:timelog, issue: create(:issue, project: create(:project)))
        timelog1 = create(:timelog, issue: create(:issue, project: create(:project, group: group)))
        timelog2 = create(:timelog, issue: create(:issue, project: create(:project, group: subgroup)))

        expect(described_class.for_issues_in_group(group)).to contain_exactly(timelog1, timelog2)
      end
    end

    describe 'between_times' do
      it 'returns collection of timelogs within given times' do
        create(:timelog, spent_at: 65.days.ago)
        timelog1 = create(:timelog, spent_at: 15.days.ago)
        timelog2 = create(:timelog, spent_at: 5.days.ago)
        timelogs = described_class.between_times(20.days.ago, 1.day.ago)

        expect(timelogs).to contain_exactly(timelog1, timelog2)
      end
    end
  end
end