Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bug in appeal creation #390

Merged
merged 3 commits into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*.out

# # Dependency directories (remove the comment below to include it)
# vendor/
vendor/

# Config
/config.yaml
Expand Down
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ clean: tidy ## Clean the build artifacts
@rm -rf $coverage.out ${BUILD_DIR}

test: ## Run the tests
go test ./... -race -coverprofile=coverage.out
go test ./ ... -race -coverprofile=coverage.out

test-short:
@echo "Running short tests by disabling store tests..."
go test ./... -race -short -coverprofile=coverage.out

coverage: test ## Print the code coverage
@echo "Generating coverage report..."
Expand Down
2 changes: 1 addition & 1 deletion core/appeal/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ func (s *Service) Create(ctx context.Context, appeals []*domain.Appeal, opts ...
appeal.Policy = nil

for _, approval := range appeal.Approvals {
if approval.Index == len(appeal.Approvals)-1 && approval.Status == domain.ApprovalStatusApproved {
if approval.Index == len(appeal.Approvals)-1 && (approval.Status == domain.ApprovalStatusApproved || appeal.Status == domain.AppealStatusApproved) {
newGrant, revokedGrant, err := s.prepareGrant(ctx, appeal)
if err != nil {
return fmt.Errorf("preparing grant: %w", err)
Expand Down
30 changes: 30 additions & 0 deletions core/appeal/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1153,6 +1153,13 @@ func (s *ServiceTestSuite) TestCreateAppeal__WithExistingAppealAndWithAutoApprov
AllowFailed: false,
ApproveIf: "1==1",
},
{
Name: "step_2",
Strategy: "manual",
When: "1==0",
AllowFailed: false,
Approvers: []string{"[email protected]"},
},
},
IAM: &domain.IAMConfig{
Provider: "http",
Expand Down Expand Up @@ -1188,6 +1195,13 @@ func (s *ServiceTestSuite) TestCreateAppeal__WithExistingAppealAndWithAutoApprov
Status: domain.ApprovalStatusApproved,
PolicyID: "policy_1",
PolicyVersion: 1,
}, {
Name: "step_2",
Index: 1,
Status: domain.ApprovalStatusSkipped,
PolicyID: "policy_1",
PolicyVersion: 1,
Approvers: []string{"[email protected]"},
},
},
Grant: &domain.Grant{
Expand Down Expand Up @@ -1224,6 +1238,14 @@ func (s *ServiceTestSuite) TestCreateAppeal__WithExistingAppealAndWithAutoApprov
Status: domain.ApprovalStatusApproved,
PolicyID: "policy_1",
PolicyVersion: 1,
}, {
ID: "2",
Name: "step_2",
Index: 1,
Status: domain.ApprovalStatusSkipped,
PolicyID: "policy_1",
PolicyVersion: 1,
Approvers: []string{"[email protected]"},
},
},
Grant: &domain.Grant{
Expand Down Expand Up @@ -1271,6 +1293,14 @@ func (s *ServiceTestSuite) TestCreateAppeal__WithExistingAppealAndWithAutoApprov
OrderBy: []string{"updated_at:desc"},
}).
Return(expectedExistingGrants, nil).Once()
s.mockGrantService.EXPECT().
List(mock.AnythingOfType("*context.emptyCtx"), domain.ListGrantsFilter{
Statuses: []string{string(domain.GrantStatusActive)},
AccountIDs: []string{appeals[0].AccountID},
ResourceIDs: []string{appeals[0].ResourceID},
Permissions: []string{"test-permission"},
}).
Return(expectedExistingGrants, nil).Once()
s.mockProviderService.On("ValidateAppeal", mock.Anything, mock.Anything, mock.Anything, mock.Anything).Return(nil)
s.mockProviderService.On("GetPermissions", mock.Anything, mock.Anything, mock.Anything, mock.Anything).
Return([]interface{}{"test-permission"}, nil)
Expand Down
Loading