Skip to content
代码片段 群组 项目
未验证 提交 414d88e1 编辑于 作者: Sashi Kumar Kumaresan's avatar Sashi Kumar Kumaresan 提交者: GitLab
浏览文件

Fix FetchPolicyApproversService for ComplianceFramework

This change fixes a bug in FetchPolicyApproversService
where if a compliance framework is queried, it throws
an error.

EE: true
Changelog: fixed
上级 d1bfffcf
No related branches found
No related tags found
无相关合并请求
......@@ -7,8 +7,8 @@ class FetchPolicyApproversService
def initialize(policy:, container:, current_user:)
@policy = policy
@container = container
@current_user = current_user
@container = container.is_a?(ComplianceManagement::Framework) ? container.namespace : container
end
def execute
......
......@@ -44,6 +44,19 @@
expect(response[:all_groups]).to be_empty
end
context 'with container of compliance framework type' do
let(:container) { create(:compliance_framework, namespace: group) }
it 'returns user approvers' do
response = service.execute
expect(response[:status]).to eq(:success)
expect(response[:users]).to match_array([user])
expect(response[:groups]).to be_empty
expect(response[:all_groups]).to be_empty
end
end
context 'with container of a group type' do
let(:container) { group }
......@@ -99,6 +112,19 @@
expect(response[:users]).to be_empty
end
context 'with container of compliance framework type' do
let(:container) { create(:compliance_framework, namespace: group) }
it 'returns group approvers' do
response = service.execute
expect(response[:status]).to eq(:success)
expect(response[:groups]).to match_array([group])
expect(response[:all_groups]).to match_array([group])
expect(response[:users]).to be_empty
end
end
context 'when groups with same name exist in and outside of container' do
let_it_be(:other_container) { create(:group) }
let_it_be(:other_group) { create(:group, name: group.name, parent: other_container) }
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册