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

notifications_helper_spec.rb « helpers « spec - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bfffc8f1a028d29c7a3655e3edaae38a1fd20a59 (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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
# frozen_string_literal: true

describe NotificationsHelper, type: :helper do
  include ApplicationHelper

  before do
    @user = FactoryGirl.create(:user)
    @person = FactoryGirl.create(:person)
    @post = FactoryGirl.create(:status_message, author: @user.person)
    @person2 = FactoryGirl.create(:person)
    Notifications::Liked.notify(FactoryGirl.create(:like, author: @person, target: @post), [])
    Notifications::Liked.notify(FactoryGirl.create(:like, author: @person2, target: @post), [])

    @notification = Notifications::Liked.find_by(target: @post, recipient: @user)
  end

  describe '#notification_people_link' do
    context 'formatting' do
      include ActionView::Helpers::SanitizeHelper
      let(:output){ strip_tags(notification_people_link(@note)) }

      before do
        @max = FactoryGirl.create(:person)
        @max.profile.first_name = 'max'
        @max.profile.last_name = 'salzberg'
        @sarah = FactoryGirl.create(:person)
        @sarah.profile.first_name = 'sarah'
        @sarah.profile.last_name = 'mei'


        @daniel = FactoryGirl.create(:person)
        @daniel.profile.first_name = 'daniel'
        @daniel.profile.last_name = 'grippi'

        @ilya = FactoryGirl.create(:person)
        @ilya.profile.first_name = 'ilya'
        @ilya.profile.last_name = 'zhit'
        @note = double()
      end

      it 'with two, does not comma seperate two actors' do
        allow(@note).to receive(:actors).and_return([@max, @sarah])
        expect(output.scan(/,/)).to be_empty
        expect(output.scan(/and/).count).to be 1
      end

      it 'with three, comma seperates the first two, and and the last actor' do
        allow(@note).to receive(:actors).and_return([@max, @sarah, @daniel])
        expect(output.scan(/,/).count).to be 2
        expect(output.scan(/and/).count).to be 1
      end

      it 'with more than three, lists the first three, then the others tag' do
        allow(@note).to receive(:actors).and_return([@max, @sarah, @daniel, @ilya])
        expect(output.scan(/,/).count).to be 3
        expect(output.scan(/and/).count).to be 2
      end
    end
    describe 'for a like' do
      it 'displays #{list of actors}' do
        output = notification_people_link(@notification)
        expect(output).to include @person2.name
        expect(output).to include @person.name
      end
    end
  end

  describe '#object_link' do
    describe 'for a like' do
      it 'should include a link to the post' do
        output = object_link(@notification, notification_people_link(@notification))
        expect(output).to include post_path(@post)
      end

      it 'includes the boilerplate translation' do
        output = object_link(@notification, notification_people_link(@notification))
        expect(output).to include I18n.t("#{@notification.popup_translation_key}",
                                     :actors => notification_people_link(@notification),
                                     :count => @notification.actors.count,
                                     :post_link => link_to(post_page_title(@post), post_path(@post), 'data-ref' => @post.id, :class => 'hard_object_link').html_safe)
      end

      context 'when post is deleted' do
        it 'works' do
          @post.destroy
          expect{ object_link(@notification, notification_people_link(@notification))}.to_not raise_error
        end

        it 'displays that the post was deleted' do
          @post.destroy
          expect(object_link(@notification,  notification_people_link(@notification))).to eq(t('notifications.liked_post_deleted.one', :actors => notification_people_link(@notification)))
        end
      end
    end

    let(:status_message) {
      FactoryGirl.create(:status_message_in_aspect, author: alice.person, text: text_mentioning(bob))
    }

    describe "when mentioned in status message" do
      it "should include correct wording and post link" do
        Notifications::MentionedInPost.notify(status_message, [bob.id])
        notification = Notifications::MentionedInPost.last
        expect(notification).not_to be_nil

        link = object_link(notification, notification_people_link(notification))
        expect(link).to include("mentioned you in the post")
        expect(link).to include(post_path(status_message))
      end
    end

    describe "when mentioned in comment" do
      it "should include correct wording, post link and comment link" do
        comment = FactoryGirl.create(:comment, author: bob.person, text: text_mentioning(alice), post: status_message)
        Notifications::MentionedInComment.notify(comment, [alice.id])
        notification = Notifications::MentionedInComment.last
        expect(notification).not_to be_nil

        link = object_link(notification, notification_people_link(notification))
        expect(link).to include("mentioned you in a")
        expect(link).to include(">comment</a>")
        expect(link).to include("href=\"#{post_path(status_message)}\"")
        expect(link).to include("#{post_path(status_message)}##{comment.guid}")
      end
    end

    context "for a birthday" do
      let(:notification) { Notifications::ContactsBirthday.create(recipient: alice, target: bob.person) }

      it "contains the date" do
        bob.profile.update(birthday: Time.zone.today)
        link = object_link(notification, notification_people_link(notification))
        expect(link).to include(I18n.l(Time.zone.today, format: I18n.t("date.formats.fullmonth_day")))
      end

      it "doesn't break, when the person removes the birthday date" do
        bob.profile.update(birthday: nil)
        link = object_link(notification, notification_people_link(notification))
        expect(link).to include(I18n.l(Time.zone.today, format: I18n.t("date.formats.fullmonth_day")))
      end
    end
  end

  describe '#display_year?' do
    it 'returns false if year is nil and the date includes the current year' do
      expect(display_year?(nil,Date.current.strftime('%Y-%m-%d'))).to be_falsey
    end

    it 'returns true if year is nil and the date does not include the current year' do
      expect(display_year?(nil,'1900-12-31')).to be_truthy
    end

    it 'returns false if the date includes the given year' do
      expect(display_year?(2015,'2015-12-31')).to be_falsey
    end

    it 'returns true if the date does not include the given year' do
      expect(display_year?(2015,'2014-12-31')).to be_truthy
      expect(display_year?(2015,'2016-12-31')).to be_truthy
    end
  end
end