Convert settings/featured_tags
controller->request/system spec (#33880)
This commit is contained in:
parent
dd2cb77f1a
commit
7d20c12913
3 changed files with 56 additions and 74 deletions
|
@ -1,68 +0,0 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe Settings::FeaturedTagsController do
|
||||
render_views
|
||||
|
||||
context 'when user is not signed in' do
|
||||
subject { post :create }
|
||||
|
||||
it { is_expected.to redirect_to new_user_session_path }
|
||||
end
|
||||
|
||||
context 'when user is signed in' do
|
||||
let(:user) { Fabricate(:user, password: '12345678') }
|
||||
|
||||
before { sign_in user, scope: :user }
|
||||
|
||||
describe 'POST #create' do
|
||||
subject { post :create, params: { featured_tag: params } }
|
||||
|
||||
context 'when parameter is valid' do
|
||||
let(:params) { { name: 'test' } }
|
||||
|
||||
it 'creates featured tag' do
|
||||
expect { subject }.to change { user.account.featured_tags.count }.by(1)
|
||||
end
|
||||
end
|
||||
|
||||
context 'when parameter is invalid' do
|
||||
let(:params) { { name: 'test, #foo !bleh' } }
|
||||
|
||||
it 'renders new' do
|
||||
expect(subject).to render_template :index
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe 'GET to #index' do
|
||||
let(:tag) { Fabricate(:tag) }
|
||||
|
||||
before do
|
||||
status = Fabricate :status, account: user.account
|
||||
status.tags << tag
|
||||
end
|
||||
|
||||
it 'responds with success' do
|
||||
get :index
|
||||
|
||||
expect(response).to have_http_status(200)
|
||||
expect(response.body).to include(
|
||||
settings_featured_tags_path(featured_tag: { name: tag.name })
|
||||
)
|
||||
end
|
||||
end
|
||||
|
||||
describe 'DELETE to #destroy' do
|
||||
let(:featured_tag) { Fabricate(:featured_tag, account: user.account) }
|
||||
|
||||
it 'removes the featured tag' do
|
||||
delete :destroy, params: { id: featured_tag.id }
|
||||
|
||||
expect(response).to redirect_to(settings_featured_tags_path)
|
||||
expect { featured_tag.reload }.to raise_error(ActiveRecord::RecordNotFound)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue