-
Notifications
You must be signed in to change notification settings - Fork 8
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 #3 from mswatosh/actions
Add actions and Create Retrieve and Delete test
- Loading branch information
Showing
8 changed files
with
114 additions
and
20 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,16 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: daily | ||
|
||
- package-ecosystem: maven | ||
directory: / | ||
schedule: | ||
interval: daily | ||
|
||
- package-ecosystem: docker | ||
directory: /mongo | ||
schedule: | ||
interval: daily |
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,67 @@ | ||
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | ||
# For more information see: https://docs.github.com/actions/automating-builds-and-tests/building-and-testing-java-with-maven | ||
|
||
name: Java CI with Maven on Pull | ||
|
||
on: | ||
pull_request: | ||
branches: [ "main" ] | ||
push: | ||
branches: [ "actions"] #Allows testing Actions changes in a fork | ||
schedule: | ||
- cron: "0 12 * * 1-5" | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
services: | ||
mongo: | ||
#Update Readme to match | ||
image: mongo:7.0.7 | ||
env: | ||
MONGO_INITDB_ROOT_USERNAME: sampleUser | ||
MONGO_INITDB_ROOT_PASSWORD: openliberty | ||
# Set health checks to wait until mongo has started | ||
options: >- | ||
--health-cmd "echo 'db.runCommand("ping").ok' | mongosh --quiet" | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
ports: | ||
- 27017:27017 | ||
|
||
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 | ||
with: | ||
java-version: 21 | ||
distribution: 'temurin' | ||
cache: maven | ||
- name: Compile App and Tests | ||
run: | | ||
mvn -B compiler:compile | ||
mvn -B compiler:testCompile | ||
- name: Create Server and Deploy App | ||
run: | | ||
mvn -B liberty:create | ||
mvn -B liberty:deploy | ||
- name: Start Server | ||
run: mvn -B liberty:start | ||
- name: Run Integration Tests | ||
run: mvn -B failsafe:integration-test | ||
- name: Stop Server | ||
run: mvn -B liberty:stop | ||
- name: Verify Integration Test Results | ||
run: mvn -B failsafe:verify | ||
- name: Archive Liberty logs | ||
if: ${{ failure() }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: liberty-logs | ||
path: target/liberty/wlp/usr/servers/MongoServer/logs/ | ||
retention-days: 1 |
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 |
---|---|---|
|
@@ -13,27 +13,26 @@ git clone [email protected]:OpenLiberty/sample-mongodb.git | |
You will also need a MongoDB instance to use this sample. If you have Docker installed, you can use the following: | ||
|
||
``` | ||
docker build -t liberty_mongo mongo | ||
docker run --name liberty_mongo -d -p 27017:27017 liberty_mongo | ||
docker run -d --name liberty_mongo -p 27017:27017 -e MONGO_INITDB_ROOT_USERNAME=sampleUser -e MONGO_INITDB_ROOT_PASSWORD=openliberty mongo:7.0.7 | ||
``` | ||
|
||
If you don't have Docker, you can install MongoDB manually from [mongodb.com](https://docs.mongodb.com/manual/administration/install-community/) | ||
|
||
Next, you will need to create a user for authentication. Issue the following commands from the command line: | ||
|
||
If you're using docker, you can skip this step. It is done for you by the `init.js` file. | ||
If you're using docker, you can skip this step. | ||
|
||
``` | ||
mongosh | ||
use testdb | ||
db.createUser({user: 'sampleUser', pwd:'openliberty', roles: [{ role: 'readWrite', db:'testdb'}]}) | ||
db.createUser({user: 'sampleUser', pwd:'openliberty', roles: [{ role: 'readWrite', db:'admin'}]}) | ||
``` | ||
|
||
You should see the following: | ||
``` | ||
{ ok: 1 } | ||
``` | ||
Now you are ready to run the sample. Type `exit` to get out of the mongo shell, and if using docker type `exit` again to exit the docker shell. | ||
Now you are ready to run the sample. Type `exit` to get out of the mongo shell. | ||
|
||
## Running the Sample | ||
From inside the sample-mongodb directory, build and start the application in Open Liberty with the following command: | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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