b44a2c801a
Updates specs to use new rails5 format. The old format: `get :show, { some: params }, { some: headers }` The new format: `get :show, params: { some: params }, headers: { some: headers }`
49 lines
1.2 KiB
Ruby
49 lines
1.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe UserCalloutsController do
|
|
let(:user) { create(:user) }
|
|
|
|
before do
|
|
sign_in(user)
|
|
end
|
|
|
|
describe "POST #create" do
|
|
subject { post :create, params: { feature_name: feature_name }, format: :json }
|
|
|
|
context 'with valid feature name' do
|
|
let(:feature_name) { UserCallout.feature_names.keys.first }
|
|
|
|
context 'when callout entry does not exist' do
|
|
it 'should create a callout entry with dismissed state' do
|
|
expect { subject }.to change { UserCallout.count }.by(1)
|
|
end
|
|
|
|
it 'should return success' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
end
|
|
end
|
|
|
|
context 'when callout entry already exists' do
|
|
let!(:callout) { create(:user_callout, feature_name: UserCallout.feature_names.keys.first, user: user) }
|
|
|
|
it 'should return success' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'with invalid feature name' do
|
|
let(:feature_name) { 'bogus_feature_name' }
|
|
|
|
it 'should return bad request' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:bad_request)
|
|
end
|
|
end
|
|
end
|
|
end
|