2022-08-13 15:12:31 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
RSpec.describe 'Query.group(fullPath).ciVariables', feature_category: :pipeline_authoring do
|
2022-08-13 15:12:31 +05:30
|
|
|
include GraphqlHelpers
|
|
|
|
|
|
|
|
let_it_be(:group) { create(:group) }
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
|
|
|
|
let(:query) do
|
|
|
|
%(
|
|
|
|
query {
|
|
|
|
group(fullPath: "#{group.full_path}") {
|
|
|
|
ciVariables {
|
2022-10-11 01:57:18 +05:30
|
|
|
limit
|
2022-08-13 15:12:31 +05:30
|
|
|
nodes {
|
|
|
|
id
|
|
|
|
key
|
|
|
|
value
|
|
|
|
variableType
|
|
|
|
protected
|
|
|
|
masked
|
|
|
|
raw
|
|
|
|
environmentScope
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the user can administer the group' do
|
|
|
|
before do
|
|
|
|
group.add_owner(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the group's CI variables" do
|
2022-10-11 01:57:18 +05:30
|
|
|
variable = create(:ci_group_variable,
|
|
|
|
group: group,
|
|
|
|
key: 'TEST_VAR',
|
|
|
|
value: 'test',
|
|
|
|
masked: false,
|
|
|
|
protected: true,
|
|
|
|
raw: true,
|
|
|
|
environment_scope: 'staging')
|
2022-08-13 15:12:31 +05:30
|
|
|
|
|
|
|
post_graphql(query, current_user: user)
|
|
|
|
|
2023-04-23 21:23:45 +05:30
|
|
|
expect(graphql_data.dig('group', 'ciVariables', 'limit')).to be(30000)
|
2022-08-13 15:12:31 +05:30
|
|
|
expect(graphql_data.dig('group', 'ciVariables', 'nodes')).to contain_exactly({
|
|
|
|
'id' => variable.to_global_id.to_s,
|
|
|
|
'key' => 'TEST_VAR',
|
|
|
|
'value' => 'test',
|
|
|
|
'variableType' => 'ENV_VAR',
|
|
|
|
'masked' => false,
|
|
|
|
'protected' => true,
|
|
|
|
'raw' => true,
|
|
|
|
'environmentScope' => 'staging'
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the user cannot administer the group' do
|
|
|
|
it 'returns nothing' do
|
|
|
|
create(:ci_group_variable, group: group, value: 'verysecret', masked: true)
|
|
|
|
|
|
|
|
group.add_developer(user)
|
|
|
|
|
|
|
|
post_graphql(query, current_user: user)
|
|
|
|
|
|
|
|
expect(graphql_data.dig('group', 'ciVariables')).to be_nil
|
|
|
|
end
|
|
|
|
end
|
2023-04-23 21:23:45 +05:30
|
|
|
|
|
|
|
describe 'sorting and pagination' do
|
|
|
|
let_it_be(:current_user) { user }
|
|
|
|
let_it_be(:data_path) { [:group, :ci_variables] }
|
|
|
|
let_it_be(:variables) do
|
|
|
|
[
|
|
|
|
create(:ci_group_variable, group: group, key: 'd'),
|
|
|
|
create(:ci_group_variable, group: group, key: 'a'),
|
|
|
|
create(:ci_group_variable, group: group, key: 'c'),
|
|
|
|
create(:ci_group_variable, group: group, key: 'e'),
|
|
|
|
create(:ci_group_variable, group: group, key: 'b')
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def pagination_query(params)
|
|
|
|
graphql_query_for(
|
|
|
|
:group,
|
|
|
|
{ fullPath: group.full_path },
|
|
|
|
query_graphql_field('ciVariables', params, "#{page_info} nodes { id }")
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
group.add_owner(current_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'sorted paginated variables'
|
|
|
|
end
|
2022-08-13 15:12:31 +05:30
|
|
|
end
|