-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ConductorOne/jbernal/connector
Jbernal/connector
- Loading branch information
Showing
293 changed files
with
53,960 additions
and
3,033 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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
name: ci | ||
name: Test Baton Gitlab Integration | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
|
||
go-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -11,94 +14,124 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Run linters | ||
uses: golangci/golangci-lint-action@v5 | ||
uses: golangci/golangci-lint-action@v6 | ||
with: | ||
version: latest | ||
args: --timeout=3m | ||
go-test: | ||
strategy: | ||
matrix: | ||
go-version: [1.22.x] | ||
platform: [ubuntu-latest] | ||
runs-on: ${{ matrix.platform }} | ||
|
||
test-groups: | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
# Logging level for Baton | ||
BATON_LOG_LEVEL: debug | ||
|
||
# Connector-specific details | ||
CONNECTOR_GRANT: 'group:100021949:Maintainer:user:25334081' | ||
CONNECTOR_ENTITLEMENT: 'group:100021949:Maintainer' | ||
CONNECTOR_PRINCIPAL: '25334081' | ||
CONNECTOR_PRINCIPAL_TYPE: 'user' | ||
|
||
# Secrets for Baton authentication | ||
BATON_ACCESS_TOKEN: "${{ secrets.BATON_ACCESS_TOKEN }}" | ||
|
||
steps: | ||
# Step 1: Set up Go environment | ||
- name: Install Go | ||
if: success() | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
go-version: 1.23.4 | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: go tests | ||
run: (set -o pipefail && go test -v -covermode=count -json ./... | tee test.json) | ||
- name: annotate go tests | ||
if: always() | ||
uses: guyarb/[email protected] | ||
with: | ||
test-results: test.json | ||
- name: Build baton-gitlab | ||
run: go build ./cmd/baton-gitlab | ||
- name: Run baton-gitlab | ||
run: ./baton-gitlab | ||
- name: Install baton | ||
run: ./scripts/get-baton.sh && mv baton /usr/local/bin | ||
|
||
- name: Check for grant before revoking | ||
run: | | ||
baton grants --entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --output-format=json | \ | ||
jq --exit-status ".grants[].principal.id.resource == \"${{ env.CONNECTOR_PRINCIPAL }}\"" | ||
- name: Revoke grants | ||
run: ./baton-gitlab --revoke-grant="${{ env.CONNECTOR_GRANT }}" | ||
|
||
- name: Check grant was revoked | ||
run: | | ||
./baton-gitlab && \ | ||
baton grants --entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --output-format=json | \ | ||
jq --exit-status "if .grants then .grants[]?.principal.id.resource != \"${{ env.CONNECTOR_PRINCIPAL }}\" else . end" | ||
- name: Grant entitlement | ||
run: | | ||
./baton-gitlab --grant-entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" \ | ||
--grant-principal="${{ env.CONNECTOR_PRINCIPAL }}" \ | ||
--grant-principal-type="${{ env.CONNECTOR_PRINCIPAL_TYPE }}" | ||
- name: Check grant was re-granted | ||
run: | | ||
./baton-gitlab && \ | ||
baton grants --entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --output-format=json | \ | ||
jq --exit-status ".grants[].principal.id.resource == \"${{ env.CONNECTOR_PRINCIPAL }}\"" | ||
test: | ||
test-projects: | ||
runs-on: ubuntu-latest | ||
# Define any services needed for the test suite (or delete this section) | ||
# services: | ||
# postgres: | ||
# image: postgres:16 | ||
# ports: | ||
# - "5432:5432" | ||
# env: | ||
# POSTGRES_PASSWORD: secretpassword | ||
|
||
env: | ||
# Logging level for Baton | ||
BATON_LOG_LEVEL: debug | ||
# Add any environment variables needed to run baton-gitlab | ||
# BATON_BASE_URL: 'http://localhost:8080' | ||
# BATON_ACCESS_TOKEN: 'secret_token' | ||
# The following parameters are passed to grant/revoke commands | ||
# Change these to the correct IDs for your test data | ||
CONNECTOR_GRANT: 'grant:entitlement:group:1234:member:user:9876' | ||
CONNECTOR_ENTITLEMENT: 'entitlement:group:1234:member' | ||
CONNECTOR_PRINCIPAL: 'user:9876' | ||
|
||
# Connector-specific details | ||
CONNECTOR_GRANT: 'project:65850627:Reporter:user:25334081' | ||
CONNECTOR_ENTITLEMENT: 'project:65850627:Reporter' | ||
CONNECTOR_PRINCIPAL: '25334081' | ||
CONNECTOR_PRINCIPAL_TYPE: 'user' | ||
|
||
# Secrets for Baton authentication | ||
BATON_ACCESS_TOKEN: "${{ secrets.BATON_ACCESS_TOKEN }}" | ||
|
||
steps: | ||
# Step 1: Set up Go environment | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.22.x | ||
go-version: 1.23.4 | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
# Install any dependencies here (or delete this) | ||
# - name: Install postgres client | ||
# run: sudo apt install postgresql-client | ||
# Run any fixture setup here (or delete this) | ||
# - name: Import sql into postgres | ||
# run: psql -h localhost --user postgres -f environment.sql | ||
# env: | ||
# PGPASSWORD: secretpassword | ||
- name: Build baton-gitlab | ||
run: go build ./cmd/baton-gitlab | ||
- name: Run baton-gitlab | ||
run: ./baton-gitlab | ||
|
||
- name: Install baton | ||
run: ./scripts/get-baton.sh && mv baton /usr/local/bin | ||
|
||
# tests | ||
- name: Check for grant before revoking | ||
|
||
run: | ||
baton grants --entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --output-format=json | jq --exit-status ".grants[].principal.id.resource == \"${{ env.CONNECTOR_PRINCIPAL }}\"" | ||
|
||
run: | | ||
baton grants --entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --output-format=json | \ | ||
jq --exit-status ".grants[].principal.id.resource == \"${{ env.CONNECTOR_PRINCIPAL }}\"" | ||
- name: Revoke grants | ||
run: ./baton-gitlab --revoke-grant="${{ env.CONNECTOR_GRANT }}" | ||
|
||
- name: Check grant was revoked | ||
run: ./baton-gitlab && baton grants --entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --output-format=json | jq --exit-status "if .grants then .grants[]?.principal.id.resource != \"${{ env.CONNECTOR_PRINCIPAL }}\" else . end" | ||
run: | | ||
./baton-gitlab && \ | ||
baton grants --entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --output-format=json | \ | ||
jq --exit-status "if .grants then .grants[]?.principal.id.resource != \"${{ env.CONNECTOR_PRINCIPAL }}\" else . end" | ||
- name: Grant entitlement | ||
# Change the grant arguments to the correct IDs for your test data | ||
run: ./baton-gitlab --grant-entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --grant-principal="${{ env.CONNECTOR_PRINCIPAL }}" --grant-principal-type="${{ env.CONNECTOR_PRINCIPAL_TYPE }}" | ||
run: | | ||
./baton-gitlab --grant-entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" \ | ||
--grant-principal="${{ env.CONNECTOR_PRINCIPAL }}" \ | ||
--grant-principal-type="${{ env.CONNECTOR_PRINCIPAL_TYPE }}" | ||
- name: Check grant was re-granted | ||
|
||
run: | ||
baton grants --entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --output-format=json | jq --exit-status ".grants[].principal.id.resource == \"${{ env.CONNECTOR_PRINCIPAL }}\"" | ||
run: | | ||
./baton-gitlab && \ | ||
baton grants --entitlement="${{ env.CONNECTOR_ENTITLEMENT }}" --output-format=json | \ | ||
jq --exit-status ".grants[].principal.id.resource == \"${{ env.CONNECTOR_PRINCIPAL }}\"" | ||
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 |
---|---|---|
|
@@ -26,3 +26,7 @@ add-dep: | |
.PHONY: lint | ||
lint: | ||
golangci-lint run | ||
|
||
.PHONY: run | ||
run: | ||
go run ./cmd/baton-gitlab |
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
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.