notify_spec.rb 7.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
require 'spec_helper'

describe Notify do
  include EmailSpec::Helpers
  include EmailSpec::Matchers

  before :all do
    default_url_options[:host] = 'example.com'
  end

R
Robb Kidd 已提交
11 12
  let(:recipient) { Factory.create(:user, :email => 'recipient@example.com') }
  let(:project) { Factory.create(:project) }
13

R
Robb Kidd 已提交
14 15 16 17 18 19 20
  shared_examples 'a multiple recipients email' do
    it 'is sent to the given recipient' do
      should deliver_to recipient.email
    end
  end

  describe 'for new users, the email' do
21
    let(:example_site_url) { root_url }
22
    let(:new_user) { Factory.create(:user, :email => 'newguy@example.com') }
23

24
    subject { Notify.new_user_email(new_user.id, new_user.password) }
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

    it 'is sent to the new user' do
      should deliver_to new_user.email
    end

    it 'has the correct subject' do
      should have_subject /Account was created for you/
    end

    it 'contains the new user\'s login name' do
      should have_body_text /#{new_user.email}/
    end

    it 'contains the new user\'s password' do
      should have_body_text /#{new_user.password}/
    end

    it 'includes a link to the site' do
      should have_body_text /#{example_site_url}/
    end
  end

R
Robb Kidd 已提交
47 48 49 50
  context 'for a project' do
    describe 'items that are assignable, the email' do
      let(:assignee) { Factory.create(:user, :email => 'assignee@example.com') }
      let(:old_assignee) { Factory.create(:user, :name => 'Old Assignee Guy') }
51

R
Robb Kidd 已提交
52 53 54 55 56
      shared_examples 'an assignee email' do
        it 'is sent to the assignee' do
          should deliver_to assignee.email
        end
      end
57

R
Robb Kidd 已提交
58 59
      context 'for issues' do
        let(:issue) { Factory.create(:issue, :assignee => assignee, :project => project ) }
60

R
Robb Kidd 已提交
61 62
        describe 'that are new' do
          subject { Notify.new_issue_email(issue) }
63

R
Robb Kidd 已提交
64
          it_behaves_like 'an assignee email'
65

R
Robb Kidd 已提交
66 67 68
          it 'has the correct subject' do
            should have_subject /New Issue was created/
          end
69

R
Robb Kidd 已提交
70 71 72 73
          it 'contains a link to the new issue' do
            should have_body_text /#{project_issue_url project, issue}/
          end
        end
74

R
Robb Kidd 已提交
75 76
        describe 'that have been reassigned' do
          before(:each) { issue.stub(:assignee_id_was).and_return(old_assignee.id) }
77

R
Robb Kidd 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
          subject { Notify.changed_issue_email(recipient, issue) }

          it_behaves_like 'a multiple recipients email'

          it 'has the correct subject' do
            should have_subject /changed issue/
          end

          it 'contains the name of the previous assignee' do
            should have_body_text /#{old_assignee.name}/
          end

          it 'contains the name of the new assignee' do
            should have_body_text /#{assignee.name}/
          end

          it 'contains a link to the issue' do
            should have_body_text /#{project_issue_url project, issue}/
          end
        end
      end

      context 'for merge requests' do
        let(:merge_request) { Factory.create(:merge_request, :assignee => assignee, :project => project) }

        describe 'that are new' do
          subject { Notify.new_merge_request_email(merge_request) }

          it_behaves_like 'an assignee email'

          it 'has the correct subject' do
            should have_subject /new merge request/
          end

          it 'contains a link to the new merge request' do
            should have_body_text /#{project_merge_request_url(project, merge_request)}/
          end

          it 'contains the source branch for the merge request' do
            should have_body_text /#{merge_request.source_branch}/
          end

          it 'contains the target branch for the merge request' do
            should have_body_text /#{merge_request.target_branch}/
          end
        end

        describe 'that are reassigned' do
          before(:each) { merge_request.stub(:assignee_id_was).and_return(old_assignee.id) }

          subject { Notify.changed_merge_request_email(recipient, merge_request) }

          it_behaves_like 'a multiple recipients email'

          it 'has the correct subject' do
            should have_subject /merge request changed/
          end

          it 'contains the name of the previous assignee' do
            should have_body_text /#{old_assignee.name}/
          end

          it 'contains the name of the new assignee' do
            should have_body_text /#{assignee.name}/
          end

          it 'contains a link to the merge request' do
            should have_body_text /#{project_merge_request_url project, merge_request}/
          end

        end
      end
150 151
    end

R
Robb Kidd 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
    context 'items that are noteable, the email for a note' do
      let(:note_author) { Factory.create(:user, :name => 'author_name') }
      let(:note) { Factory.create(:note, :project => project, :author => note_author) }

      shared_examples 'a note email' do
        it 'is sent to the given recipient' do
          should deliver_to recipient.email
        end

        it 'contains the name of the note\'s author' do
          should have_body_text /#{note_author.name}/
        end

        it 'contains the message from the note' do
          should have_body_text /#{note.note}/
        end
      end

      describe 'on a project wall' do
        let(:note_on_the_wall_url) { wall_project_url(project, :anchor => "note_#{note.id}") }

        subject { Notify.note_wall_email(recipient, note) }

        it_behaves_like 'a note email'

        it 'has the correct subject' do
          should have_subject /#{project.name}/
        end

        it 'contains a link to the wall note' do
          should have_body_text /#{note_on_the_wall_url}/
        end
      end

      describe 'on a commit' do
        let(:commit) do
          mock(:commit).tap do |commit|
            commit.stub(:id).and_return('faux_sha_1')
          end
        end
        before(:each) { note.stub(:target).and_return(commit) }

        subject { Notify.note_commit_email(recipient, note) }

        it_behaves_like 'a note email'

        it 'has the correct subject' do
          should have_subject /note for commit/
        end

        it 'contains a link to the commit' do
          should have_body_text /faux_sha_1/
        end
      end

      describe 'on a merge request' do
        let(:merge_request) { Factory.create(:merge_request, :project => project) }
        let(:note_on_merge_request_url) { project_merge_request_url(project, merge_request, :anchor => "note_#{note.id}") }
        before(:each) { note.stub(:noteable).and_return(merge_request) }

        subject { Notify.note_merge_request_email(recipient, note) }

        it_behaves_like 'a note email'

        it 'has the correct subject' do
          should have_subject /note for merge request/
        end

        it 'contains a link to the merge request note' do
          should have_body_text /#{note_on_merge_request_url}/
        end
      end

      describe 'on an issue' do
        let(:issue) { Factory.create(:issue, :project => project) }
        let(:note_on_issue_url) { project_issue_url(project, issue, :anchor => "note_#{note.id}") }
        before(:each) { note.stub(:noteable).and_return(issue) }
        subject { Notify.note_issue_email(recipient, note) }

        it_behaves_like 'a note email'

        it 'has the correct subject' do
          should have_subject /note for issue #{issue.id}/
        end

        it 'contains a link to the issue note' do
          should have_body_text /#{note_on_issue_url}/
        end
      end
241 242 243
    end
  end
end