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

issue_observer_spec.rb « observers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9e88aee1a5a30522cb8824cdadd9fdb800b9880 (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
require 'spec_helper'

describe IssueObserver do
  let(:some_user)      { create :user }
  let(:assignee)       { create :user }
  let(:author)         { create :user }
  let(:mock_issue)     { create(:issue, assignee: assignee, author: author) }


  before { subject.stub(:current_user).and_return(some_user) }
  before { subject.stub(notification: mock('NotificationService').as_null_object) }


  subject { IssueObserver.instance }

  describe '#after_create' do
    it 'trigger notification to send emails' do
      subject.should_receive(:notification)

      subject.after_create(mock_issue)
    end
  end

  context '#after_close' do
    context 'a status "closed"' do
      before { mock_issue.stub(state: 'closed') }

      it 'note is created if the issue is being closed' do
        Note.should_receive(:create_status_change_note).with(mock_issue, mock_issue.project, some_user, 'closed')

        subject.after_close(mock_issue, nil)
      end

      it 'trigger notification to send emails' do
        subject.notification.should_receive(:close_issue).with(mock_issue, some_user)
        subject.after_close(mock_issue, nil)
      end
    end

    context 'a status "reopened"' do
      before { mock_issue.stub(state: 'reopened') }

      it 'note is created if the issue is being reopened' do
        Note.should_receive(:create_status_change_note).with(mock_issue, mock_issue.project, some_user, 'reopened')
        subject.after_reopen(mock_issue, nil)
      end
    end
  end

  context '#after_update' do
    before(:each) do
      mock_issue.stub(:is_being_reassigned?).and_return(false)
    end

    context 'notification' do
      it 'triggered if the issue is being reassigned' do
        mock_issue.should_receive(:is_being_reassigned?).and_return(true)
        subject.should_receive(:notification)

        subject.after_update(mock_issue)
      end

      it 'is not triggered if the issue is not being reassigned' do
        mock_issue.should_receive(:is_being_reassigned?).and_return(false)
        subject.should_not_receive(:notification)

        subject.after_update(mock_issue)
      end
    end
  end
end