| 
									
										
										
										
											2016-12-06 18:22:59 +01:00
										 |  |  | require 'rails_helper' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | RSpec.describe Api::V1::NotificationsController, type: :controller do | 
					
						
							|  |  |  |   render_views | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   let(:user)  { Fabricate(:user, account: Fabricate(:account, username: 'alice')) } | 
					
						
							| 
									
										
										
										
											2018-07-05 18:31:35 +02:00
										 |  |  |   let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: scopes) } | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |   let(:other) { Fabricate(:user, account: Fabricate(:account, username: 'bob')) } | 
					
						
							| 
									
										
										
										
											2016-12-06 18:22:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |   before do | 
					
						
							|  |  |  |     allow(controller).to receive(:doorkeeper_token) { token } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 17:32:37 -04:00
										 |  |  |   describe 'GET #show' do | 
					
						
							| 
									
										
										
										
											2018-07-05 18:31:35 +02:00
										 |  |  |     let(:scopes) { 'read:notifications' } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 17:32:37 -04:00
										 |  |  |     it 'returns http success' do | 
					
						
							|  |  |  |       notification = Fabricate(:notification, account: user.account) | 
					
						
							|  |  |  |       get :show, params: { id: notification.id } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-22 04:35:07 +09:00
										 |  |  |       expect(response).to have_http_status(200) | 
					
						
							| 
									
										
										
										
											2017-05-19 17:32:37 -04:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe 'POST #dismiss' do | 
					
						
							| 
									
										
										
										
											2018-07-05 18:31:35 +02:00
										 |  |  |     let(:scopes) { 'write:notifications' } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 17:32:37 -04:00
										 |  |  |     it 'destroys the notification' do | 
					
						
							|  |  |  |       notification = Fabricate(:notification, account: user.account) | 
					
						
							|  |  |  |       post :dismiss, params: { id: notification.id } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-22 04:35:07 +09:00
										 |  |  |       expect(response).to have_http_status(200) | 
					
						
							| 
									
										
										
										
											2017-05-19 17:32:37 -04:00
										 |  |  |       expect { notification.reload }.to raise_error(ActiveRecord::RecordNotFound) | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe 'POST #clear' do | 
					
						
							| 
									
										
										
										
											2018-07-05 18:31:35 +02:00
										 |  |  |     let(:scopes) { 'write:notifications' } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 17:32:37 -04:00
										 |  |  |     it 'clears notifications for the account' do | 
					
						
							|  |  |  |       notification = Fabricate(:notification, account: user.account) | 
					
						
							|  |  |  |       post :clear | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(notification.account.reload.notifications).to be_empty | 
					
						
							| 
									
										
										
										
											2018-04-22 04:35:07 +09:00
										 |  |  |       expect(response).to have_http_status(200) | 
					
						
							| 
									
										
										
										
											2017-05-19 17:32:37 -04:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-06 18:22:59 +01:00
										 |  |  |   describe 'GET #index' do | 
					
						
							| 
									
										
										
										
											2018-07-05 18:31:35 +02:00
										 |  |  |     let(:scopes) { 'read:notifications' } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |     before do | 
					
						
							| 
									
										
										
										
											2017-04-12 09:53:55 -04:00
										 |  |  |       first_status = PostStatusService.new.call(user.account, 'Test') | 
					
						
							|  |  |  |       @reblog_of_first_status = ReblogService.new.call(other.account, first_status) | 
					
						
							|  |  |  |       mentioning_status = PostStatusService.new.call(other.account, 'Hello @alice') | 
					
						
							|  |  |  |       @mention_from_status = mentioning_status.mentions.first | 
					
						
							|  |  |  |       @favourite = FavouriteService.new.call(other.account, first_status) | 
					
						
							|  |  |  |       @follow = FollowService.new.call(other.account, 'alice') | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe 'with no options' do | 
					
						
							|  |  |  |       before do | 
					
						
							|  |  |  |         get :index | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it 'returns http success' do | 
					
						
							| 
									
										
										
										
											2018-04-22 04:35:07 +09:00
										 |  |  |         expect(response).to have_http_status(200) | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it 'includes reblog' do | 
					
						
							| 
									
										
										
										
											2017-04-12 09:53:55 -04:00
										 |  |  |         expect(assigns(:notifications).map(&:activity)).to include(@reblog_of_first_status) | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it 'includes mention' do | 
					
						
							| 
									
										
										
										
											2017-04-12 09:53:55 -04:00
										 |  |  |         expect(assigns(:notifications).map(&:activity)).to include(@mention_from_status) | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it 'includes favourite' do | 
					
						
							| 
									
										
										
										
											2017-04-12 09:53:55 -04:00
										 |  |  |         expect(assigns(:notifications).map(&:activity)).to include(@favourite) | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it 'includes follow' do | 
					
						
							| 
									
										
										
										
											2017-04-12 09:53:55 -04:00
										 |  |  |         expect(assigns(:notifications).map(&:activity)).to include(@follow) | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe 'with excluded mentions' do | 
					
						
							|  |  |  |       before do | 
					
						
							|  |  |  |         get :index, params: { exclude_types: ['mention'] } | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it 'returns http success' do | 
					
						
							| 
									
										
										
										
											2018-04-22 04:35:07 +09:00
										 |  |  |         expect(response).to have_http_status(200) | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it 'includes reblog' do | 
					
						
							| 
									
										
										
										
											2017-04-12 09:53:55 -04:00
										 |  |  |         expect(assigns(:notifications).map(&:activity)).to include(@reblog_of_first_status) | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it 'excludes mention' do | 
					
						
							| 
									
										
										
										
											2017-04-12 09:53:55 -04:00
										 |  |  |         expect(assigns(:notifications).map(&:activity)).to_not include(@mention_from_status) | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it 'includes favourite' do | 
					
						
							| 
									
										
										
										
											2017-04-12 09:53:55 -04:00
										 |  |  |         expect(assigns(:notifications).map(&:activity)).to include(@favourite) | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |       end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it 'includes follow' do | 
					
						
							| 
									
										
										
										
											2017-04-12 09:53:55 -04:00
										 |  |  |         expect(assigns(:notifications).map(&:activity)).to include(@follow) | 
					
						
							| 
									
										
										
										
											2017-04-10 23:45:29 +02:00
										 |  |  |       end | 
					
						
							| 
									
										
										
										
											2016-12-06 18:22:59 +01:00
										 |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |