2017-02-05 20:51:56 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Api::V1::MutesController, type: :controller do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
|
2017-07-27 09:16:07 -04:00
|
|
|
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'follow') }
|
2017-02-05 20:51:56 -05:00
|
|
|
|
|
|
|
before do
|
2017-09-02 14:19:19 -04:00
|
|
|
Fabricate(:mute, account: user.account, hide_notifications: false)
|
2017-02-05 20:51:56 -05:00
|
|
|
allow(controller).to receive(:doorkeeper_token) { token }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #index' do
|
|
|
|
it 'returns http success' do
|
2017-05-31 14:27:34 -04:00
|
|
|
get :index, params: { limit: 1 }
|
|
|
|
|
2017-02-05 20:51:56 -05:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
|
|
|
end
|
2017-09-02 13:24:58 -04:00
|
|
|
|
|
|
|
describe 'GET #details' do
|
2017-09-02 14:19:19 -04:00
|
|
|
before do
|
2017-09-02 13:24:58 -04:00
|
|
|
get :details, params: { limit: 1 }
|
2017-09-02 14:19:19 -04:00
|
|
|
end
|
2017-09-02 13:24:58 -04:00
|
|
|
|
2017-09-02 14:19:19 -04:00
|
|
|
let(:mutes) { JSON.parse(response.body) }
|
|
|
|
|
|
|
|
it 'returns http success' do
|
2017-09-02 13:24:58 -04:00
|
|
|
expect(response).to have_http_status(:success)
|
|
|
|
end
|
2017-09-02 14:19:19 -04:00
|
|
|
|
|
|
|
it 'returns one mute' do
|
|
|
|
expect(mutes.size).to be(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns whether the mute hides notifications' do
|
|
|
|
expect(mutes.first["hide_notifications"]).to be(false)
|
|
|
|
end
|
2017-09-02 13:24:58 -04:00
|
|
|
end
|
2017-02-05 20:51:56 -05:00
|
|
|
end
|