-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/PN7160TokenProv-extLib
Signed-off-by: cburandt <[email protected]>
- Loading branch information
Showing
181 changed files
with
28,461 additions
and
525 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,25 @@ | ||
#!/bin/sh | ||
|
||
rsync -a "$EXT_MOUNT/source/tests" ./ | ||
retVal=$? | ||
|
||
if [ $retVal -ne 0 ]; then | ||
echo "Failed to copy tests" | ||
exit $retVal | ||
fi | ||
|
||
pip install --break-system-packages \ | ||
"$EXT_MOUNT"/wheels/everestpy-*.whl \ | ||
"$EXT_MOUNT"/wheels/everest_testing-*.whl \ | ||
"$EXT_MOUNT"/wheels/iso15118-*.whl \ | ||
pytest-html | ||
retVal=$? | ||
|
||
if [ $retVal -ne 0 ]; then | ||
echo "Failed to pip-install" | ||
exit $retVal | ||
fi | ||
|
||
pip install --break-system-packages -r tests/ocpp_tests/requirements.txt | ||
|
||
$(cd ./tests/ocpp_tests/test_sets/everest-aux/ && ./install_certs.sh "$EXT_MOUNT/dist" && ./install_configs.sh "$EXT_MOUNT/dist") |
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,25 @@ | ||
#!/bin/sh | ||
|
||
cd tests | ||
|
||
PARALLEL_TESTS=$(nproc) | ||
|
||
echo "Running $PARALLEL_TESTS ocpp tests in parallel" | ||
|
||
pytest \ | ||
-rA \ | ||
-d --tx "$PARALLEL_TESTS"*popen//python=python3 \ | ||
--max-worker-restart=0 \ | ||
--timeout=300 \ | ||
--junitxml="$EXT_MOUNT/ocpp-tests-result.xml" \ | ||
--html="$EXT_MOUNT/ocpp-tests-report.html" \ | ||
--self-contained-html \ | ||
ocpp_tests/test_sets/ocpp16/*.py \ | ||
ocpp_tests/test_sets/ocpp201/*.py \ | ||
--everest-prefix "$EXT_MOUNT/dist" | ||
retVal=$? | ||
|
||
if [ $retVal -ne 0 ]; then | ||
echo "OCPP tests failed with return code $retVal" | ||
exit $retVal | ||
fi |
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 |
---|---|---|
|
@@ -29,3 +29,94 @@ jobs: | |
do_not_run_coverage_badge_creation: true | ||
run_install_wheels: true | ||
run_integration_tests: true | ||
ocpp-tests: | ||
name: OCPP Tests | ||
needs: | ||
- ci | ||
runs-on: ${{ inputs.runner || 'ubuntu-22.04' }} | ||
steps: | ||
- name: Download dist dir | ||
uses: actions/[email protected] | ||
with: | ||
name: dist | ||
- name: Extract dist.tar.gz | ||
run: | | ||
tar -xzf ${{ github.workspace }}/dist.tar.gz -C ${{ github.workspace }} | ||
- name: Download wheels | ||
# if: ${{ inputs.run_install_wheels == 'true' }} | ||
uses: actions/[email protected] | ||
with: | ||
name: wheels | ||
path: wheels | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
with: | ||
path: source | ||
- name: Setup run scripts | ||
run: | | ||
mkdir scripts | ||
rsync -a source/.ci/build-kit/scripts/ scripts | ||
- name: Docker Meta | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ${{ env.BUILD_KIT_IMAGE_NAME }} | ||
- name: Set output tag | ||
id: buildkit_tag | ||
shell: python3 {0} | ||
run: | | ||
import os | ||
tags = "${{ steps.meta.outputs.tags }}".split(",") | ||
if len(tags) == 0: | ||
print("No tags found!❌") | ||
exit(1) | ||
tag = f"local/build-kit-everest-core:{tags[0]}" | ||
with open(os.environ["GITHUB_OUTPUT"], "a") as f: | ||
f.write(f"tag={tag}\n") | ||
print(f"Set tag={tag}") | ||
- name: Download build-kit image | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: build-kit | ||
- name: Load build-kit image | ||
run: | | ||
docker load -i build-kit.tar | ||
docker image tag ${{ steps.buildkit_tag.outputs.tag }} build-kit | ||
- name: Create integration-image | ||
run: | | ||
docker run \ | ||
--volume "${{ github.workspace }}:/ext" \ | ||
--name integration-container \ | ||
build-kit run-script create_ocpp_tests_image | ||
docker commit integration-container integration-image | ||
- name: Run OCPP tests | ||
id: run_ocpp_tests | ||
continue-on-error: true | ||
run: | | ||
docker compose \ | ||
-f source/.ci/e2e/docker-compose.yaml \ | ||
run \ | ||
e2e-test-server \ | ||
run-script run_ocpp_tests | ||
- name: Upload result and report as artifact | ||
continue-on-error: true | ||
if: ${{ steps.run_ocpp_tests.outcome == 'success' || steps.run_ocpp_tests.outcome == 'failure' }} | ||
uses: actions/[email protected] | ||
with: | ||
if-no-files-found: error | ||
name: ocpp-tests-report | ||
path: | | ||
ocpp-tests-result.xml | ||
ocpp-tests-report.html | ||
- name: Render OCPP tests result | ||
if: ${{ steps.run_ocpp_tests.outcome == 'success' || steps.run_ocpp_tests.outcome == 'failure' }} | ||
uses: pmeier/[email protected] | ||
with: | ||
path: ocpp-tests-result.xml | ||
summary: True | ||
display-options: fEX | ||
fail-on-empty: True | ||
title: Test results | ||
- name: Check if OCPP tests failed | ||
if: ${{ steps.run_ocpp_tests.outcome == 'failure' }} | ||
run: exit 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
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
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
Oops, something went wrong.