Hurl tests with CI #267
Workflow file for this run
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
# Version 2023-03-05 | |
name: Java CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
uses: igniterealtime/openfire-plugin-builder-action/.github/workflows/openfire-plugin-build.yml@main | |
secrets: | |
IGNITE_REALTIME_MAVEN_USERNAME: ${{ secrets.IGNITE_REALTIME_MAVEN_USERNAME }} | |
IGNITE_REALTIME_MAVEN_PASSWORD: ${{ secrets.IGNITE_REALTIME_MAVEN_PASSWORD }} | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Openfire actions e.g. 'startCIServer' | |
uses: actions/checkout@v4 | |
with: | |
repository: igniterealtime/Openfire | |
sparse-checkout: | | |
.github | |
- name: Download a recent Openfire daily build. | |
run: | | |
# This tries to find the most recent daily build, going back 30 days if none are available. | |
#Note that the cache above will cause whatever build that's download to be considered 'todays' build. | |
for i in $(seq 0 30); do | |
STAMP=`date --date="$i day ago" +%F`; | |
echo "Attempting to download Openfire build for $STAMP" | |
curl --fail -L "https://download.igniterealtime.org/openfire/dailybuilds/openfire_$STAMP.tar.gz" -o openfire.tar.gz && break | |
done | |
- name: Extract Openfire | |
run: | | |
tar -xzf openfire.tar.gz | |
- name: Set up yq | |
uses: frenck/action-setup-yq@v1 | |
- name: Add extras to the demoboot file | |
run: | | |
yq eval-all '. as $item ireduce ({}; . * $item )' openfire/conf/openfire-demoboot.xml test/demoboot-additions.xml > openfire/conf/openfire-demoboot.xml | |
- name: Start CI server from distribution | |
id: startCIServer | |
uses: ./.github/actions/startserver-action | |
with: | |
distBaseDir: './openfire' | |
domain: 'example.org' | |
ip: '127.0.0.1' | |
- name: Download the built artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: restAPI | |
path: . | |
- name: Install plugin | |
run: | | |
cp restAPI-openfire-plugin-assembly.jar openfire/plugins/restAPI.jar | |
- uses: gacts/install-hurl@v1 | |
- name: Test the plugin | |
run: | | |
# Wait for the server to start | |
sleep 30 | |
# Test the plugin | |
hurl --test test/restAPI.hurl |