Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement mongodb in testing Workflow #12

Merged
merged 2 commits into from
Dec 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 58 additions & 27 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle

name: Java CI with Gradle
name: Java CI with Gradle and MongoDB

permissions: write-all

Expand All @@ -14,28 +7,66 @@ on:

jobs:
test-and-build:

runs-on: ubuntu-latest
timeout-minutes: 0
permissions:
contents: read

services:
mongodb:
image: mongo:6.0
ports:
- 27017:27017
options: >-
--health-cmd="mongosh --eval 'db.runCommand({ping: 1})'"
--health-interval=10s
--health-timeout=5s
--health-retries=5

steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@d9c87d481d55275bb5441eef3fe0e46805f9ef70 # v3.5.0

- name: Test with Gradle Wrapper
env:
GITHUB_ACTIONS: true
EN2DO_DATABASE: ${{secrets.EN2DO_DATABASE}}
EN2DO_CONNECTSTRING: ${{secrets.EN2DO_CONNECTSTRING}}
run: gradle test --no-daemon --stacktrace --info
- name: Build with Gradle Wrapper and ShadowJar
run: gradle shadowJar
- uses: actions/checkout@v4

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@d9c87d481d55275bb5441eef3fe0e46805f9ef70 # v3.5.0

- name: Install MongoDB Shell (mongosh)
run: |
wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add -
echo "deb [ arch=amd64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list
sudo apt-get update
sudo apt-get install -y mongodb-mongosh

- name: Wait for MongoDB to Start
run: |
for i in {1..10}; do
if mongosh --host localhost --port 27017 --eval "db.runCommand({ping: 1})"; then
echo "MongoDB is ready!";
exit 0;
fi;
sleep 3;
done;
echo "MongoDB did not become ready in time!" && exit 1;

- name: Create Test Database
run: |
mongosh --host localhost --port 27017 <<EOF
use testdb
db.test.insertOne({ initialized: true });
EOF

- name: Test with Gradle Wrapper
env:
GITHUB_ACTIONS: true
EN2DO_DATABASE: 'testdb' # Example database name
EN2DO_CONNECTSTRING: 'mongodb://localhost:27017/testdb' # MongoDB connection string
run: gradle test --no-daemon --stacktrace --info

- name: Build with Gradle Wrapper and ShadowJar
run: gradle shadowJar