debian-mirror-gitlab/spec/controllers/groups/variables_controller_spec.rb

74 lines
1.7 KiB
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe Groups::VariablesController do
2019-07-07 11:18:12 +05:30
include ExternalAuthorizationServiceHelpers
2017-09-10 17:25:29 +05:30
let(:group) { create(:group) }
let(:user) { create(:user) }
before do
sign_in(user)
2018-11-18 11:00:15 +05:30
group.add_maintainer(user)
2017-09-10 17:25:29 +05:30
end
2018-03-17 18:26:18 +05:30
describe 'GET #show' do
let!(:variable) { create(:ci_group_variable, group: group) }
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
subject do
2019-02-15 15:39:39 +05:30
get :show, params: { group_id: group }, format: :json
2017-09-10 17:25:29 +05:30
end
2018-03-17 18:26:18 +05:30
include_examples 'GET #show lists all variables'
end
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
describe 'PATCH #update' do
let!(:variable) { create(:ci_group_variable, group: group) }
let(:owner) { group }
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
subject do
patch :update,
2019-02-15 15:39:39 +05:30
params: {
group_id: group,
variables_attributes: variables_attributes
},
2018-03-17 18:26:18 +05:30
format: :json
2017-09-10 17:25:29 +05:30
end
2018-03-17 18:26:18 +05:30
include_examples 'PATCH #update updates variables'
2017-09-10 17:25:29 +05:30
end
2019-07-07 11:18:12 +05:30
context 'with external authorization enabled' do
before do
enable_external_authorization_service_check
end
describe 'GET #show' do
let!(:variable) { create(:ci_group_variable, group: group) }
it 'is successful' do
get :show, params: { group_id: group }, format: :json
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:ok)
2019-07-07 11:18:12 +05:30
end
end
describe 'PATCH #update' do
let!(:variable) { create(:ci_group_variable, group: group) }
let(:owner) { group }
it 'is successful' do
patch :update,
params: {
group_id: group,
variables_attributes: [{ id: variable.id, key: 'hello' }]
},
format: :json
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:ok)
2019-07-07 11:18:12 +05:30
end
end
end
2017-09-10 17:25:29 +05:30
end