-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/authz-sm-list
- Loading branch information
Showing
15 changed files
with
446 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: "🔦 actionlint" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- '.github/workflows/**' | ||
|
||
jobs: | ||
actionlint: | ||
runs-on: ubuntu-22.04 | ||
name: actionlint | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
checks: write | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | ||
- name: "Run reviewdog actionlint" | ||
uses: reviewdog/action-actionlint@053981cb135d7a696bbeec6181d9d5fae6e07dae # v1.57.0 | ||
with: | ||
reporter: "github-pr-review" | ||
fail_on_error: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
name: Build Platform Container Image | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
|
||
jobs: | ||
build: | ||
if: startsWith(github.event.release.tag_name, 'service/') | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | ||
|
||
- name: "Authenticate to Google Cloud (Push to Public registry)" | ||
id: "gcp-auth" | ||
uses: google-github-actions/auth@62cf5bd3e4211a0a0b51f2c6d6a37129d828611d | ||
with: | ||
workload_identity_provider: ${{ secrets.GCP_WORKLOAD_IDENTITY }} | ||
service_account: ${{ secrets.GCP_SERVICE_ACCOUNT }} | ||
token_format: "access_token" | ||
create_credentials_file: false | ||
|
||
- name: Install Cosign | ||
uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da | ||
|
||
- name: Install Trivy | ||
uses: aquasecurity/setup-trivy@ff1b8b060f23b650436d419b5e13f67f5d4c3087 | ||
with: | ||
version: v0.57.1 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb | ||
|
||
- name: 'Docker login to Artifact Registry' | ||
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 | ||
with: | ||
registry: us-docker.pkg.dev | ||
username: oauth2accesstoken | ||
password: ${{ steps.gcp-auth.outputs.access_token }} | ||
|
||
- id: docker_meta | ||
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 | ||
with: | ||
images: ${{ secrets.DOCKER_REPO }} | ||
tags: | | ||
type=sha,format=long | ||
type=match,pattern=service/v(\d.\d.\d),group=1,prefix=v | ||
type=match,pattern=service/v(\d.\d),group=1,prefix=v | ||
labels: | | ||
org.opencontainers.image.documentation=https://docs.opentdf.io | ||
- name: Build and Push container images | ||
uses: docker/build-push-action@1a162644f9a7e87d8f4b053101d1d9a712edc18c | ||
id: build-and-push | ||
with: | ||
platforms: linux/amd64,linux/arm64 | ||
push: true | ||
tags: ${{ steps.docker_meta.outputs.tags }} | ||
|
||
- name: Sign the images with GitHub OIDC Token | ||
env: | ||
DIGEST: ${{ steps.build-and-push.outputs.digest }} | ||
TAGS: ${{ steps.docker_meta.outputs.tags }} | ||
run: | | ||
images="" | ||
for tag in ${TAGS}; do | ||
images+="${tag}@${DIGEST} " | ||
done | ||
# shellcheck disable=SC2086 | ||
cosign sign --yes ${images} | ||
- name: Generate Reports | ||
run: | | ||
trivy image --scanners vuln --format cyclonedx --output bom-cyclonedx.json ${{ secrets.DOCKER_REPO }}@${{ steps.build-and-push.outputs.digest }} | ||
trivy image --format spdx-json --output bom-spdx.json ${{ secrets.DOCKER_REPO }}@${{ steps.build-and-push.outputs.digest }} | ||
trivy image --format cosign-vuln --output cosign-vuln.json ${{ secrets.DOCKER_REPO }}@${{ steps.build-and-push.outputs.digest }} | ||
- name: Cosign Attest SBOM | ||
run: | | ||
cosign attest --type cyclonedx --predicate bom-cyclonedx.json '${{ secrets.DOCKER_REPO }}@${{ steps.build-and-push.outputs.digest }}' | ||
cosign attest --type spdxjson -predicate bom-spdx.json '${{ secrets.DOCKER_REPO }}@${{ steps.build-and-push.outputs.digest }}' | ||
cosign attest --type vuln --predicate cosign-vuln.json '${{ secrets.DOCKER_REPO }}@${{ steps.build-and-push.outputs.digest }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,5 @@ | |
"lib/flattening": "0.1.2", | ||
"protocol/go": "0.2.22", | ||
"sdk": "0.3.23", | ||
"service": "0.4.30" | ||
"service": "0.4.31" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
package integration | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"log/slog" | ||
"testing" | ||
|
||
"github.com/opentdf/platform/service/internal/fixtures" | ||
"github.com/opentdf/platform/service/policy/db" | ||
"github.com/stretchr/testify/suite" | ||
) | ||
|
||
type PolicyDBClientSuite struct { | ||
suite.Suite | ||
f fixtures.Fixtures | ||
db fixtures.DBInterface | ||
ctx context.Context //nolint:containedctx // context is used in the test suite | ||
} | ||
|
||
func (s *PolicyDBClientSuite) SetupSuite() { | ||
s.ctx = context.Background() | ||
c := *Config | ||
c.DB.Schema = "text_opentdf_policy_db_client" | ||
s.db = fixtures.NewDBInterface(c) | ||
s.f = fixtures.NewFixture(s.db) | ||
s.f.Provision() | ||
} | ||
|
||
func (s *PolicyDBClientSuite) TearDownSuite() { | ||
slog.Info("tearing down db.PolicyDbClient test suite") | ||
s.f.TearDown() | ||
} | ||
|
||
func (s *PolicyDBClientSuite) Test_RunInTx_CommitsOnSuccess() { | ||
var ( | ||
nsName = "success.com" | ||
attrName = fmt.Sprintf("http://%s/attr/attr_one", nsName) | ||
attrValue = fmt.Sprintf("http://%s/attr/%s/value/attr_one_value", nsName, attrName) | ||
|
||
nsID string | ||
attrID string | ||
valID string | ||
err error | ||
) | ||
|
||
txErr := s.db.PolicyClient.RunInTx(s.ctx, func(txClient *db.PolicyDBClient) error { | ||
nsID, err = txClient.Queries.CreateNamespace(s.ctx, db.CreateNamespaceParams{ | ||
Name: nsName, | ||
}) | ||
s.Require().NoError(err) | ||
s.Require().NotNil(nsID) | ||
|
||
attrID, err = txClient.Queries.CreateAttribute(s.ctx, db.CreateAttributeParams{ | ||
NamespaceID: nsID, | ||
Name: attrName, | ||
Rule: db.AttributeDefinitionRuleALLOF, | ||
}) | ||
s.Require().NoError(err) | ||
s.Require().NotNil(attrID) | ||
|
||
valID, err = txClient.Queries.CreateAttributeValue(s.ctx, db.CreateAttributeValueParams{ | ||
AttributeDefinitionID: attrID, | ||
Value: attrValue, | ||
}) | ||
s.Require().NoError(err) | ||
s.Require().NotNil(valID) | ||
|
||
return nil | ||
}) | ||
s.Require().NoError(txErr) | ||
|
||
ns, err := s.db.PolicyClient.GetNamespace(s.ctx, nsID) | ||
s.Require().NoError(err) | ||
s.Equal(nsName, ns.GetName()) | ||
|
||
attr, err := s.db.PolicyClient.GetAttribute(s.ctx, attrID) | ||
s.Require().NoError(err) | ||
s.Equal(attrName, attr.GetName()) | ||
|
||
attrVal, err := s.db.PolicyClient.GetAttributeValue(s.ctx, valID) | ||
s.Require().NoError(err) | ||
s.Equal(attrValue, attrVal.GetValue()) | ||
} | ||
|
||
func (s *PolicyDBClientSuite) Test_RunInTx_RollsBackOnFailure() { | ||
var ( | ||
nsName = "failure.com" | ||
attrName = fmt.Sprintf("http://%s/attr/attr_one", nsName) | ||
|
||
nsID string | ||
attrID string | ||
err error | ||
) | ||
|
||
txErr := s.db.PolicyClient.RunInTx(s.ctx, func(txClient *db.PolicyDBClient) error { | ||
nsID, err = txClient.Queries.CreateNamespace(s.ctx, db.CreateNamespaceParams{ | ||
Name: nsName, | ||
}) | ||
s.Require().NoError(err) | ||
s.Require().NotNil(nsID) | ||
|
||
attrID, err = txClient.Queries.CreateAttribute(s.ctx, db.CreateAttributeParams{ | ||
NamespaceID: "invalid_ns_id", | ||
Name: attrName, | ||
Rule: db.AttributeDefinitionRuleALLOF, | ||
}) | ||
s.Require().Error(err) | ||
s.Require().Zero(attrID) | ||
return err | ||
}) | ||
s.Require().Error(txErr) | ||
|
||
ns, err := s.db.PolicyClient.GetNamespace(s.ctx, nsID) | ||
s.Require().Error(err) | ||
s.Nil(ns) | ||
|
||
attr, err := s.db.PolicyClient.GetAttribute(s.ctx, attrID) | ||
s.Require().Error(err) | ||
s.Nil(attr) | ||
} | ||
|
||
func TestPolicySuite(t *testing.T) { | ||
if testing.Short() { | ||
t.Skip("skipping policy integration tests") | ||
} | ||
suite.Run(t, new(PolicyDBClientSuite)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.