-
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.
misc(ci/cd): Create initial Treaty Test for Elysia
- Loading branch information
Showing
7 changed files
with
77 additions
and
5 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
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,48 @@ | ||
name: Run Tests with Elysia Treaty | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Initialize Bun Environtment | ||
uses: oven-sh/setup-bun@v2 | ||
|
||
- name: Declaring some Global Environtment vars | ||
run: | | ||
echo "PORT=3121" >> $GITHUB_ENV | ||
echo "DOMAIN=localhost" >> $GITHUB_ENV | ||
echo "NODE_ENV=dev" >> $GITHUB_ENV | ||
echo "PASSWORD_PEPPER=${{ secrets.PASSWORD_PEPPER }}" >> $GITHUB_ENV | ||
echo "DATABASE_URL=${{ secrets.DATABASE_URL_DEV }}" >> $GITHUB_ENV | ||
echo "GOOGLE_CLIENT_ID=${{ secrets.GOOGLE_CLIENT_ID }}" >> $GITHUB_ENV | ||
echo "GOOGLE_CLIENT_SECRET=${{ secrets.GOOGLE_CLIENT_SECRET }}" >> $GITHUB_ENV | ||
echo "GITHUB_CLIENT_ID=${{ secrets.GH_CLIENT_ID }}" >> $GITHUB_ENV | ||
echo "GITHUB_CLIENT_SECRET=${{ secrets.GH_CLIENT_SECRET }}" >> $GITHUB_ENV | ||
echo "LINKEDIN_CLIENT_ID=${{ secrets.LINKEDIN_CLIENT_ID }}" >> $GITHUB_ENV | ||
echo "LINKEDIN_CLIENT_SECRET=${{ secrets.LINKEDIN_CLIENT_SECRET }}" >> $GITHUB_ENV | ||
echo "TELEGRAM_TOKEN=${{ secrets.TELEGRAM_TOKEN }}" >> $GITHUB_ENV | ||
echo "TELEGRAM_CHAT_ID=${{ secrets.TELEGRAM_CHAT_ID }}" >> $GITHUB_ENV | ||
echo "CLOUDINARY_CLOUD_NAME=${{ secrets.CLOUDINARY_CLOUD_NAME }}" >> $GITHUB_ENV | ||
echo "CLOUDINARY_API_KEY=${{ secrets.CLOUDINARY_API_KEY }}" >> $GITHUB_ENV | ||
echo "CLOUDINARY_API_SECRET=${{ secrets.CLOUDINARY_API_SECRET }}" >> $GITHUB_ENV | ||
- name: Run Treaty Tests | ||
id: treaty_test | ||
run: | | ||
bun install | ||
bunx prisma generate | ||
bun test | ||
echo "::set-output name=result::success" | ||
- name: Mark as failed if tests fail | ||
if: failure() | ||
run: echo "::set-output name=result::failure" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { describe, expect, it } from "bun:test"; | ||
import { api } from "../src"; | ||
|
||
describe("Blog Modules", () => { | ||
it("Return a all blog list", async () => { | ||
const response = await api | ||
.handle(new Request("http://localhost:3121/v2/blog")) | ||
.then(async (res) => await res.json()); | ||
|
||
expect(response).toHaveProperty("data"); | ||
expect(Array.isArray(response.data)).toBe(true); | ||
|
||
const blog = response.data[0]; | ||
expect(blog).toHaveProperty("id"); | ||
expect(blog).toHaveProperty("title"); | ||
expect(blog).toHaveProperty("content"); | ||
expect(blog).toHaveProperty("commentsCount"); | ||
expect(blog).toHaveProperty("reactionsCount"); | ||
|
||
expect(blog.commentsCount).toBeGreaterThanOrEqual(0); | ||
expect(blog.reactionsCount).toBeGreaterThanOrEqual(0); | ||
}); | ||
}); |