Compare commits
2 Commits
main
...
vzt/prepar
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f4e59e3d45 | ||
|
|
3048b822db |
118
.github/workflows/acceptance-test.yml
vendored
Normal file
118
.github/workflows/acceptance-test.yml
vendored
Normal file
@@ -0,0 +1,118 @@
|
|||||||
|
name: Acceptance test
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
secret:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
secret-in-section:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
multiline-secret:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
export-env:
|
||||||
|
required: true
|
||||||
|
type: boolean
|
||||||
|
version:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: "latest"
|
||||||
|
os:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
default: "ubuntu-latest"
|
||||||
|
auth:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
acceptance-test:
|
||||||
|
runs-on: ${{ inputs.os }}
|
||||||
|
steps:
|
||||||
|
- name: Base checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
if: |
|
||||||
|
github.event_name != 'repository_dispatch' &&
|
||||||
|
(
|
||||||
|
github.ref == 'refs/heads/main' ||
|
||||||
|
(
|
||||||
|
github.event_name == 'pull_request' &&
|
||||||
|
github.event.pull_request.head.repo.full_name == github.repository
|
||||||
|
)
|
||||||
|
)
|
||||||
|
- name: Fork based /ok-to-test checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.client_payload.pull_request.head.sha }}
|
||||||
|
if: |
|
||||||
|
github.event_name == 'repository_dispatch' &&
|
||||||
|
github.event.client_payload.slash_command.args.named.sha != '' &&
|
||||||
|
contains(
|
||||||
|
github.event.client_payload.pull_request.head.sha,
|
||||||
|
github.event.client_payload.slash_command.args.named.sha
|
||||||
|
)
|
||||||
|
- name: Launch 1Password Connect instance
|
||||||
|
if: ${{ inputs.auth == 'connect' }}
|
||||||
|
env:
|
||||||
|
OP_CONNECT_CREDENTIALS: ${{ secrets.OP_CONNECT_CREDENTIALS }}
|
||||||
|
run: |
|
||||||
|
echo "$OP_CONNECT_CREDENTIALS" > 1password-credentials.json
|
||||||
|
docker compose -f tests/fixtures/docker-compose.yml up -d && sleep 10
|
||||||
|
- name: Configure Service account
|
||||||
|
if: ${{ inputs.auth == 'service-account' }}
|
||||||
|
uses: ./configure
|
||||||
|
with:
|
||||||
|
service-account-token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
|
||||||
|
- name: Verify Service Account env var is set
|
||||||
|
if: ${{ inputs.auth == 'service-account' }}
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
if [ -z "${OP_SERVICE_ACCOUNT_TOKEN}" ]; then
|
||||||
|
echo "OP_SERVICE_ACCOUNT_TOKEN environment variable is not set" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
- name: Configure 1Password Connect
|
||||||
|
if: ${{ inputs.auth == 'connect' }}
|
||||||
|
uses: ./configure # 1password/load-secrets-action/configure@<version>
|
||||||
|
with:
|
||||||
|
connect-host: http://localhost:8080
|
||||||
|
connect-token: ${{ secrets.OP_CONNECT_TOKEN }}
|
||||||
|
- name: Verify Connect env vars are set
|
||||||
|
if: ${{ inputs.auth == 'connect' }}
|
||||||
|
run: |
|
||||||
|
if [ -z "$OP_CONNECT_HOST" ] || [ -z "$OP_CONNECT_TOKEN" ]; then
|
||||||
|
echo "OP_CONNECT_HOST or OP_CONNECT_TOKEN environment variables are not set" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
- name: Load secrets
|
||||||
|
id: load_secrets
|
||||||
|
uses: ./ # 1password/load-secrets-action@<version>
|
||||||
|
with:
|
||||||
|
version: ${{ inputs.version }}
|
||||||
|
export-env: ${{ inputs.export-env }}
|
||||||
|
env:
|
||||||
|
SECRET: ${{ inputs.secret }}
|
||||||
|
SECRET_IN_SECTION: ${{ inputs.secret-in-section }}
|
||||||
|
MULTILINE_SECRET: ${{ inputs.multiline-secret }}
|
||||||
|
OP_ENV_FILE: ./tests/.env.tpl
|
||||||
|
- name: Assert test secret values [step output]
|
||||||
|
if: ${{ !inputs.export-env }}
|
||||||
|
env:
|
||||||
|
SECRET: ${{ steps.load_secrets.outputs.SECRET }}
|
||||||
|
SECRET_IN_SECTION: ${{ steps.load_secrets.outputs.SECRET_IN_SECTION }}
|
||||||
|
MULTILINE_SECRET: ${{ steps.load_secrets.outputs.MULTILINE_SECRET }}
|
||||||
|
OP_ENV_FILE: ./tests/.env.tpl
|
||||||
|
run: ./tests/assert-env-set.sh
|
||||||
|
- name: Assert test secret values [exported env]
|
||||||
|
if: ${{ inputs.export-env }}
|
||||||
|
run: ./tests/assert-env-set.sh
|
||||||
|
- name: Remove secrets [exported env]
|
||||||
|
if: ${{ inputs.export-env }}
|
||||||
|
uses: ./ # 1password/load-secrets-action@<version>
|
||||||
|
with:
|
||||||
|
unset-previous: true
|
||||||
|
- name: Assert removed secrets [exported env]
|
||||||
|
if: ${{ inputs.export-env }}
|
||||||
|
run: ./tests/assert-env-unset.sh
|
||||||
29
.github/workflows/lint.yml
vendored
Normal file
29
.github/workflows/lint.yml
vendored
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
pull_request:
|
||||||
|
name: Lint
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Run ShellCheck
|
||||||
|
uses: ludeeus/action-shellcheck@2.0.0
|
||||||
|
with:
|
||||||
|
ignore_paths: >-
|
||||||
|
.husky
|
||||||
|
- name: Setup Node.js
|
||||||
|
id: setup-node
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 20
|
||||||
|
cache: npm
|
||||||
|
- name: Install Dependencies
|
||||||
|
id: install
|
||||||
|
run: npm ci
|
||||||
|
- name: Check formatting
|
||||||
|
run: npm run format:check
|
||||||
|
- name: Check lint
|
||||||
|
run: npm run lint
|
||||||
92
.github/workflows/test-fork.yml
vendored
Normal file
92
.github/workflows/test-fork.yml
vendored
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
on:
|
||||||
|
repository_dispatch:
|
||||||
|
types: [ok-to-test-command]
|
||||||
|
name: Run acceptance tests [fork]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test-with-output-secrets:
|
||||||
|
if: |
|
||||||
|
github.event_name == 'repository_dispatch' &&
|
||||||
|
github.event.client_payload.slash_command.args.named.sha != '' &&
|
||||||
|
contains(
|
||||||
|
github.event.client_payload.pull_request.head.sha,
|
||||||
|
github.event.client_payload.slash_command.args.named.sha
|
||||||
|
)
|
||||||
|
uses: 1password/load-secrets-action/.github/workflows/acceptance-test.yml@main
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
secret: op://acceptance-tests/test-secret/password
|
||||||
|
secret-in-section: op://acceptance-tests/test-secret/test-section/password
|
||||||
|
multiline-secret: op://acceptance-tests/multiline-secret/notesPlain
|
||||||
|
export-env: false
|
||||||
|
test-with-export-env:
|
||||||
|
if: |
|
||||||
|
github.event_name == 'repository_dispatch' &&
|
||||||
|
github.event.client_payload.slash_command.args.named.sha != '' &&
|
||||||
|
contains(
|
||||||
|
github.event.client_payload.pull_request.head.sha,
|
||||||
|
github.event.client_payload.slash_command.args.named.sha
|
||||||
|
)
|
||||||
|
uses: 1password/load-secrets-action/.github/workflows/acceptance-test.yml@main
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
secret: op://acceptance-tests/test-secret/password
|
||||||
|
secret-in-section: op://acceptance-tests/test-secret/test-section/password
|
||||||
|
multiline-secret: op://acceptance-tests/multiline-secret/notesPlain
|
||||||
|
export-env: true
|
||||||
|
test-references-with-ids:
|
||||||
|
if: |
|
||||||
|
github.event_name == 'repository_dispatch' &&
|
||||||
|
github.event.client_payload.slash_command.args.named.sha != '' &&
|
||||||
|
contains(
|
||||||
|
github.event.client_payload.pull_request.head.sha,
|
||||||
|
github.event.client_payload.slash_command.args.named.sha
|
||||||
|
)
|
||||||
|
uses: 1password/load-secrets-action/.github/workflows/acceptance-test.yml@main
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
secret: op://v5pz6venw4roosmkzdq2nhpv6u/hrgkzhrlvscomepxlgafb2m3ca/password
|
||||||
|
secret-in-section: op://v5pz6venw4roosmkzdq2nhpv6u/hrgkzhrlvscomepxlgafb2m3ca/Section_tco6nsqycj6jcbyx63h5isxcny/doxu3mhkozcznnk5vjrkpdqayy
|
||||||
|
multiline-secret: op://v5pz6venw4roosmkzdq2nhpv6u/ghtz3jvcc6dqmzc53d3r3eskge/notesPlain
|
||||||
|
export-env: false
|
||||||
|
update-checks:
|
||||||
|
# required permissions for updating the status of the pull request checks
|
||||||
|
permissions:
|
||||||
|
pull-requests: write
|
||||||
|
checks: write
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ always() }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
job-name:
|
||||||
|
[
|
||||||
|
test-with-output-secrets,
|
||||||
|
test-with-export-env,
|
||||||
|
test-references-with-ids,
|
||||||
|
]
|
||||||
|
needs:
|
||||||
|
[test-with-output-secrets, test-with-export-env, test-references-with-ids]
|
||||||
|
steps:
|
||||||
|
- uses: actions/github-script@v6
|
||||||
|
env:
|
||||||
|
job: ${{ matrix.job-name }}
|
||||||
|
ref: ${{ github.event.client_payload.pull_request.head.sha }}
|
||||||
|
conclusion: ${{ needs[format('{0}', matrix.job-name )].result }}
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
script: |
|
||||||
|
const { data: checks } = await github.rest.checks.listForRef({
|
||||||
|
...context.repo,
|
||||||
|
ref: process.env.ref
|
||||||
|
});
|
||||||
|
|
||||||
|
const check = checks.check_runs.filter(c => c.name === process.env.job);
|
||||||
|
|
||||||
|
const { data: result } = await github.rest.checks.update({
|
||||||
|
...context.repo,
|
||||||
|
check_run_id: check[0].id,
|
||||||
|
status: 'completed',
|
||||||
|
conclusion: process.env.conclusion
|
||||||
|
});
|
||||||
|
|
||||||
|
return result;
|
||||||
100
.github/workflows/test.yml
vendored
Normal file
100
.github/workflows/test.yml
vendored
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
pull_request:
|
||||||
|
name: Run acceptance tests
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
unit-tests:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 20
|
||||||
|
- run: npm ci
|
||||||
|
- run: npm test
|
||||||
|
|
||||||
|
test-with-output-secrets:
|
||||||
|
if: |
|
||||||
|
github.ref == 'refs/heads/main' ||
|
||||||
|
(
|
||||||
|
github.event_name == 'pull_request' &&
|
||||||
|
github.event.pull_request.head.repo.full_name == github.repository
|
||||||
|
)
|
||||||
|
uses: 1password/load-secrets-action/.github/workflows/acceptance-test.yml@main
|
||||||
|
secrets: inherit
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
version: [latest, latest-beta, 2.30.0, 2.30.0-beta.03]
|
||||||
|
auth: [connect, service-account]
|
||||||
|
exclude:
|
||||||
|
- os: macos-latest
|
||||||
|
auth: connect
|
||||||
|
- os: windows-latest
|
||||||
|
auth: connect
|
||||||
|
with:
|
||||||
|
os: ${{ matrix.os }}
|
||||||
|
version: ${{ matrix.version }}
|
||||||
|
auth: ${{ matrix.auth }}
|
||||||
|
secret: op://acceptance-tests/test-secret/password
|
||||||
|
secret-in-section: op://acceptance-tests/test-secret/test-section/password
|
||||||
|
multiline-secret: op://acceptance-tests/multiline-secret/notesPlain
|
||||||
|
export-env: false
|
||||||
|
|
||||||
|
test-with-export-env:
|
||||||
|
if: |
|
||||||
|
github.ref == 'refs/heads/main' ||
|
||||||
|
(
|
||||||
|
github.event_name == 'pull_request' &&
|
||||||
|
github.event.pull_request.head.repo.full_name == github.repository
|
||||||
|
)
|
||||||
|
uses: 1password/load-secrets-action/.github/workflows/acceptance-test.yml@main
|
||||||
|
secrets: inherit
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
version: [latest, latest-beta, 2.30.0, 2.30.0-beta.03]
|
||||||
|
auth: [connect, service-account]
|
||||||
|
exclude:
|
||||||
|
- os: macos-latest
|
||||||
|
auth: connect
|
||||||
|
- os: windows-latest
|
||||||
|
auth: connect
|
||||||
|
with:
|
||||||
|
os: ${{ matrix.os }}
|
||||||
|
version: ${{ matrix.version }}
|
||||||
|
auth: ${{ matrix.auth }}
|
||||||
|
secret: op://acceptance-tests/test-secret/password
|
||||||
|
secret-in-section: op://acceptance-tests/test-secret/test-section/password
|
||||||
|
multiline-secret: op://acceptance-tests/multiline-secret/notesPlain
|
||||||
|
export-env: true
|
||||||
|
|
||||||
|
test-references-with-ids:
|
||||||
|
if: |
|
||||||
|
github.ref == 'refs/heads/main' ||
|
||||||
|
(
|
||||||
|
github.event_name == 'pull_request' &&
|
||||||
|
github.event.pull_request.head.repo.full_name == github.repository
|
||||||
|
)
|
||||||
|
uses: 1password/load-secrets-action/.github/workflows/acceptance-test.yml@main
|
||||||
|
secrets: inherit
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
|
version: [latest, latest-beta, 2.30.0, 2.30.0-beta.03]
|
||||||
|
auth: [connect, service-account]
|
||||||
|
exclude:
|
||||||
|
- os: macos-latest
|
||||||
|
auth: connect
|
||||||
|
- os: windows-latest
|
||||||
|
auth: connect
|
||||||
|
with:
|
||||||
|
os: ${{ matrix.os }}
|
||||||
|
version: ${{ matrix.version }}
|
||||||
|
auth: ${{ matrix.auth }}
|
||||||
|
secret: op://v5pz6venw4roosmkzdq2nhpv6u/hrgkzhrlvscomepxlgafb2m3ca/password
|
||||||
|
secret-in-section: op://v5pz6venw4roosmkzdq2nhpv6u/hrgkzhrlvscomepxlgafb2m3ca/Section_tco6nsqycj6jcbyx63h5isxcny/doxu3mhkozcznnk5vjrkpdqayy
|
||||||
|
multiline-secret: op://v5pz6venw4roosmkzdq2nhpv6u/ghtz3jvcc6dqmzc53d3r3eskge/notesPlain
|
||||||
|
export-env: false
|
||||||
4
dist/index.js
vendored
4
dist/index.js
vendored
@@ -33484,7 +33484,7 @@ var external_util_ = __nccwpck_require__(9023);
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
const execAsync = (0,external_util_.promisify)(external_child_process_.exec);
|
const execFileAsync = (0,external_util_.promisify)(external_child_process_.execFile);
|
||||||
class MacOsInstaller extends CliInstaller {
|
class MacOsInstaller extends CliInstaller {
|
||||||
platform = "darwin"; // Node.js platform identifier for macOS
|
platform = "darwin"; // Node.js platform identifier for macOS
|
||||||
constructor(version) {
|
constructor(version) {
|
||||||
@@ -33501,7 +33501,7 @@ class MacOsInstaller extends CliInstaller {
|
|||||||
const pkgWithExtension = `${pkgPath}.pkg`;
|
const pkgWithExtension = `${pkgPath}.pkg`;
|
||||||
external_fs_.renameSync(pkgPath, pkgWithExtension);
|
external_fs_.renameSync(pkgPath, pkgWithExtension);
|
||||||
const expandDir = "temp-pkg";
|
const expandDir = "temp-pkg";
|
||||||
await execAsync(`pkgutil --expand "${pkgWithExtension}" "${expandDir}"`);
|
await execFileAsync("pkgutil", ["--expand", pkgWithExtension, expandDir]);
|
||||||
const payloadPath = external_path_.join(expandDir, "op.pkg", "Payload");
|
const payloadPath = external_path_.join(expandDir, "op.pkg", "Payload");
|
||||||
console.info("Installing 1Password CLI");
|
console.info("Installing 1Password CLI");
|
||||||
const cliPath = await tool_cache.extractTar(payloadPath);
|
const cliPath = await tool_cache.extractTar(payloadPath);
|
||||||
|
|||||||
3
tests/.env.tpl
Normal file
3
tests/.env.tpl
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
FILE_SECRET=op://acceptance-tests/test-secret/password
|
||||||
|
FILE_SECRET_IN_SECTION=op://acceptance-tests/test-secret/test-section/password
|
||||||
|
FILE_MULTILINE_SECRET=op://acceptance-tests/multiline-secret/notesPlain
|
||||||
Reference in New Issue
Block a user