-
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.
ci: add workflow. add utils test and adjust test scripts
- Loading branch information
1 parent
7afdf75
commit 302bbc4
Showing
4 changed files
with
134 additions
and
4 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,112 @@ | ||
name: 🏎 Test & Publish Adapter | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
|
||
# Perform a release using a workflow dispatch | ||
workflow_dispatch: | ||
inputs: | ||
# See https://github.com/hyper63/hyper-ci-bump#inputs for available inputs for the bump action | ||
version: | ||
description: the semver version to bump to | ||
required: true | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
deno-version: [1.x] | ||
steps: | ||
- name: ⬇️ Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: 🦕 Setup Deno | ||
uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: ${{ matrix.deno-version }} | ||
|
||
- name: ⚡ Run Tests | ||
run: | | ||
deno task test | ||
env: | ||
CI: true | ||
|
||
# Run the test suite against a Mongo Instance Self Hosted | ||
# using the mongodb: protocol | ||
# | ||
# This is meant to represent a self-hosted instance of MongoDB | ||
test-integration: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
deno-version: [1.x] | ||
redis-version: [7] | ||
steps: | ||
- name: ⬇️ Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: 🦕 Setup Deno | ||
uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: ${{ matrix.deno-version }} | ||
|
||
# Start a Mongo Instance in the local CI runner environment | ||
- name: Start Redis | ||
uses: supercharge/[email protected] | ||
with: | ||
redis-version: ${{ matrix.redis-version }} | ||
|
||
- name: ⚡ Run Native Integration Tests | ||
run: | | ||
deno task test:integration-native | ||
env: | ||
CI: true | ||
REDIS_URL: http://127.0.0.1:6379 | ||
|
||
publish: | ||
# Releases are performed via a workflow dispatch | ||
if: github.event_name == 'workflow_dispatch' | ||
runs-on: ubuntu-latest | ||
needs: [test, test-native-integration-self-hosted, test-native-integration-atlas] | ||
steps: | ||
- name: ⬇️ Checkout repo | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: 👀 Env | ||
run: | | ||
echo "Event name: ${{ github.event_name }}" | ||
echo "Git ref: ${{ github.ref }}" | ||
echo "GH actor: ${{ github.actor }}" | ||
echo "SHA: ${{ github.sha }}" | ||
VER=`node --version`; echo "Node ver: $VER" | ||
VER=`npm --version`; echo "npm ver: $VER" | ||
- name: 🤓 Set Git User | ||
run: | | ||
git config --global user.name "${{ github.actor }}" | ||
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | ||
- name: ✊ Bump | ||
id: bump | ||
uses: hyper63/hyper-ci-bump@main | ||
with: | ||
bump-to: ${{ github.event.inputs.version }} | ||
|
||
- name: ⬆️ Push | ||
run: | | ||
git push | ||
git push --tags | ||
- name: 🤖 Create Github Release | ||
if: steps.bump.outputs.tag | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
tag_name: ${{ steps.bump.outputs.tag }} |
File renamed without changes.
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,20 @@ | ||
import { assertEquals } from '../dev_deps.ts' | ||
|
||
import { createJobKey, createStoreKey } from './utils.ts' | ||
|
||
Deno.test('utils', async (t) => { | ||
await t.step('createStoreKey', async (t) => { | ||
await t.step('should create the key', () => { | ||
assertEquals(createStoreKey('prefix', 'foo-queue'), 'prefix_store_{foo-queue}') | ||
}) | ||
}) | ||
|
||
await t.step('createJobKey', async (t) => { | ||
await t.step('should create the key, appending the parts', () => { | ||
assertEquals( | ||
createJobKey('prefix', 'foo-queue', 'READY', 'foo-123'), | ||
'prefix_store_{foo-queue}_job_READY_foo-123', | ||
) | ||
}) | ||
}) | ||
}) |