Commit 95779ee8 authored by Shinya Maeda's avatar Shinya Maeda

Fix spec/models/group_spec.rb(Need to be backported to CE)

parent e8322625
......@@ -461,6 +461,7 @@ describe Group, models: true do
describe '#secret_variables_for' do
let(:project) { create(:empty_project, group: group) }
context 'when protected and unprotected variables has existsed' do
let!(:secret_variable) do
create(:ci_group_variable, value: 'secret', group: group)
end
......@@ -503,22 +504,17 @@ describe Group, models: true do
it_behaves_like 'ref is protected'
end
end
context 'when group has children' do
let!(:variable) { create(:ci_group_variable, group: group) }
let!(:group_child) { create(:group, parent: group) }
let!(:variable_child) { create(:ci_group_variable, group: group_child) }
let!(:group_child_3) { create(:group, parent: group_child_2) }
let!(:variable_child_3) { create(:ci_group_variable, group: group_child_3) }
let!(:group_child_2) { create(:group, parent: group_child) }
let!(:variable_child_2) { create(:ci_group_variable, group: group_child_2) }
it 'returns all variables belong to the group and parent groups' do
expected_array1 = [protected_variable, secret_variable]
expected_array2 = [variable_child, variable_child_2, variable_child_3]
got_array = group_child_3.secret_variables_for('ref', project).to_a
subject { group_child.secret_variables_for('ref', project) }
expect(got_array.shift(2)).to contain_exactly(*expected_array1)
expect(got_array).to eq(expected_array2)
it 'returns all variables belong to the group and parent groups' do
is_expected.to eq([variable, variable_child])
end
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment