diff --git a/spec/controllers/api/v1/accounts_controller_spec.rb b/spec/controllers/api/v1/accounts_controller_spec.rb index d69d9c4c2..041b279f7 100644 --- a/spec/controllers/api/v1/accounts_controller_spec.rb +++ b/spec/controllers/api/v1/accounts_controller_spec.rb @@ -17,6 +17,14 @@ RSpec.describe Api::V1::AccountsController, type: :controller do end end + describe 'GET #search' do + it 'returns http success' do + get :search, params: { q: 'query' } + + expect(response).to have_http_status(:success) + end + end + describe 'GET #verify_credentials' do it 'returns http success' do get :verify_credentials diff --git a/spec/controllers/api/v1/instances_controller_spec.rb b/spec/controllers/api/v1/instances_controller_spec.rb new file mode 100644 index 000000000..544f3d28f --- /dev/null +++ b/spec/controllers/api/v1/instances_controller_spec.rb @@ -0,0 +1,22 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe Api::V1::InstancesController, type: :controller do + render_views + + let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) } + let(:token) { double acceptable?: true, resource_owner_id: user.id } + + before do + allow(controller).to receive(:doorkeeper_token) { token } + end + + describe 'GET #show' do + it 'returns http success' do + get :show + + expect(response).to have_http_status(:success) + end + end +end diff --git a/spec/controllers/api/v1/notifications_controller_spec.rb b/spec/controllers/api/v1/notifications_controller_spec.rb index e3c953094..e06230913 100644 --- a/spec/controllers/api/v1/notifications_controller_spec.rb +++ b/spec/controllers/api/v1/notifications_controller_spec.rb @@ -11,6 +11,35 @@ RSpec.describe Api::V1::NotificationsController, type: :controller do allow(controller).to receive(:doorkeeper_token) { token } end + describe 'GET #show' do + it 'returns http success' do + notification = Fabricate(:notification, account: user.account) + get :show, params: { id: notification.id } + + expect(response).to have_http_status(:success) + end + end + + describe 'POST #dismiss' do + it 'destroys the notification' do + notification = Fabricate(:notification, account: user.account) + post :dismiss, params: { id: notification.id } + + expect(response).to have_http_status(:success) + expect { notification.reload }.to raise_error(ActiveRecord::RecordNotFound) + end + end + + describe 'POST #clear' do + it 'clears notifications for the account' do + notification = Fabricate(:notification, account: user.account) + post :clear + + expect(notification.account.reload.notifications).to be_empty + expect(response).to have_http_status(:success) + end + end + describe 'GET #index' do before do first_status = PostStatusService.new.call(user.account, 'Test') diff --git a/spec/controllers/api/v1/reports_controller_spec.rb b/spec/controllers/api/v1/reports_controller_spec.rb new file mode 100644 index 000000000..3df6cdfe7 --- /dev/null +++ b/spec/controllers/api/v1/reports_controller_spec.rb @@ -0,0 +1,32 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe Api::V1::ReportsController, type: :controller do + render_views + + let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) } + let(:token) { double acceptable?: true, resource_owner_id: user.id } + + before do + allow(controller).to receive(:doorkeeper_token) { token } + end + + describe 'GET #index' do + it 'returns http success' do + get :index + + expect(response).to have_http_status(:success) + end + end + + describe 'POST #create' do + it 'creates a report' do + status = Fabricate(:status) + post :create, params: { status_ids: [status.id], account_id: status.account.id, comment: 'reasons' } + + expect(status.reload.account.targeted_reports).not_to be_empty + expect(response).to have_http_status(:success) + end + end +end diff --git a/spec/controllers/api/v1/search_controller_spec.rb b/spec/controllers/api/v1/search_controller_spec.rb new file mode 100644 index 000000000..4d22ddc98 --- /dev/null +++ b/spec/controllers/api/v1/search_controller_spec.rb @@ -0,0 +1,22 @@ +# frozen_string_literal: true + +require 'rails_helper' + +RSpec.describe Api::V1::SearchController, type: :controller do + render_views + + let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) } + let(:token) { double acceptable?: true, resource_owner_id: user.id } + + before do + allow(controller).to receive(:doorkeeper_token) { token } + end + + describe 'GET #index' do + it 'returns http success' do + get :index, params: { q: 'test' } + + expect(response).to have_http_status(:success) + end + end +end