-
Notifications
You must be signed in to change notification settings - Fork 54
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 #1193 from eclipse-tractusx/release/0.7.0-rc1
Release version 0.7.0-rc1
- Loading branch information
Showing
592 changed files
with
15,848 additions
and
24,201 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
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,73 @@ | ||
################################################################################# | ||
# Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) | ||
# | ||
# See the NOTICE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Apache License, Version 2.0 which is available at | ||
# https://www.apache.org/licenses/LICENSE-2.0. | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
################################################################################# | ||
|
||
|
||
--- | ||
name: "Setup TractusX EDC in memory runtime" | ||
description: "Setup TractusX EDC in memory runtime" | ||
runs: | ||
using: "composite" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup-java | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Dockerize TractusX EDC in memory distribution | ||
shell: bash | ||
run: | | ||
./gradlew :edc-controlplane:edc-runtime-memory:dockerize | ||
- name: Starting MIW, Keycloak and Postgres Servers | ||
shell: bash | ||
run: | | ||
cd edc-tests/miw-tests/src/test/resources/docker-environment | ||
docker compose up -d --wait | ||
- uses: nick-fields/retry@v3 | ||
name: Wait for MIW | ||
with: | ||
timeout_minutes: 5 | ||
max_attempts: 3 | ||
command: | | ||
code=$(curl -IL -sw "%{http_code}" http://localhost:8000/api/actuator/health -o /dev/null) | ||
if [ "$code" -ne "401" ]; then | ||
echo "MIW not ready yet, status = $code" | ||
exit 1; | ||
fi | ||
- name: Starting in memory TractusX EDC | ||
shell: bash | ||
run: | | ||
cd dast | ||
docker compose up -d | ||
- uses: nick-fields/retry@v3 | ||
name: Wait for TractusX EDC | ||
with: | ||
timeout_minutes: 5 | ||
max_attempts: 3 | ||
command: | | ||
code=$(curl -IL -sw "%{http_code}" http://localhost:8181/api/check/health -o /dev/null) | ||
if [ "$code" -ne "401" ]; then | ||
echo "TractusX EDC not ready yet, status = $code" | ||
docker logs dast-edc-runtime-1 | ||
exit 1; | ||
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 |
---|---|---|
@@ -0,0 +1,84 @@ | ||
################################################################################# | ||
# Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) | ||
# | ||
# See the NOTICE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Apache License, Version 2.0 which is available at | ||
# https://www.apache.org/licenses/LICENSE-2.0. | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
################################################################################# | ||
|
||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
paths-ignore: | ||
- "**/*.md" | ||
- "**/*.txt" | ||
pull_request: | ||
branches: [ "main" ] | ||
paths-ignore: | ||
- "**/*.md" | ||
- "**/*.txt" | ||
schedule: | ||
- cron: "0 0 * * 0" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 360 | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ "java" ] # Define languages here | ||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ] | ||
# Use only 'java' to analyze code written in Java, Kotlin or both | ||
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both | ||
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: ${{ matrix.language }} | ||
# If you wish to specify custom queries, you can do so here or in a config file | ||
# By default, queries listed here will override any specified in a config file | ||
# Prefix the list here with "+" to use these queries and those in the config file | ||
|
||
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs | ||
# Use +security-extended,security-and-quality for wider security and better code quality | ||
queries: +security-extended,security-and-quality | ||
|
||
|
||
# build only production code, no test sources | ||
- uses: ./.github/actions/setup-java | ||
- name: Build Production Code | ||
run: | | ||
./gradlew compileJava --no-daemon | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 | ||
with: | ||
category: "/language:${{matrix.language}}" | ||
fail-on: error |
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,123 @@ | ||
################################################################################# | ||
# Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) | ||
# | ||
# See the NOTICE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Apache License, Version 2.0 which is available at | ||
# https://www.apache.org/licenses/LICENSE-2.0. | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
################################################################################# | ||
|
||
name: ZAP_ALL | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
zap_scan: | ||
runs-on: ubuntu-latest | ||
name: OWASP ZAP API Scan | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup-memory-runtime | ||
|
||
- name: Fetch MIW VP token | ||
run: ./dast/fetch-token.sh | ||
|
||
- name: API Catalog Request Test | ||
id: catalog_request | ||
run: | | ||
dsp_response=$(curl -w "%{http_code}" --request POST \ | ||
--url http://localhost:8282/api/v1/dsp/catalog/request \ | ||
--header "Authorization: $VP_TOKEN" \ | ||
--header 'Content-Type: application/json' \ | ||
--data '{ | ||
"@type": "dspace:CatalogRequestMessage", | ||
"dspace:filter": { | ||
"@type": "QuerySpec", | ||
"limit": 50, | ||
"offset": 0, | ||
"sortOrder": "ASC", | ||
"filterExpression": [] | ||
}, | ||
"@context": { | ||
"@vocab": "https://w3id.org/edc/v0.0.1/ns/", | ||
"edc": "https://w3id.org/edc/v0.0.1/ns/", | ||
"tx": "https://w3id.org/tractusx/v0.0.1/ns/", | ||
"dcat": "http://www.w3.org/ns/dcat#", | ||
"dct": "https://purl.org/dc/terms/", | ||
"odrl": "http://www.w3.org/ns/odrl/2/", | ||
"dspace": "https://w3id.org/dspace/v0.8/" | ||
} | ||
}') | ||
echo "Response: $dsp_response" | ||
- name: Generating report skeletons | ||
if: success() || failure() | ||
run: | | ||
touch API_report.html | ||
chmod a+w API_report.html | ||
ls -lrt | ||
- name: Run ZAP API scan | ||
run: | | ||
set +e | ||
echo "Pulling ZAP image..." | ||
docker pull ghcr.io/zaproxy/zaproxy:stable -q | ||
echo "Starting ZAP Docker container..." | ||
docker run --network miw-net -v ${GITHUB_WORKSPACE}:/zap/wrk/:rw ghcr.io/zaproxy/zaproxy:stable zap-api-scan.py -t http://edc-runtime:8282/api/v1/dsp -f openapi -r API_report.html -T 1 | ||
echo "... done." | ||
- name: Upload HTML report | ||
if: success() || failure() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ZAP_API scan report | ||
path: ./API_report.html | ||
|
||
zap_scan2: | ||
runs-on: ubuntu-latest | ||
name: OWASP ZAP FULL Scan | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/setup-memory-runtime | ||
|
||
- name: Generating report skeletons | ||
if: success() || failure() | ||
run: | | ||
touch fullscan_report.html | ||
chmod a+w fullscan_report.html | ||
ls -lrt | ||
- name: Perform ZAP FULL scan | ||
run: | | ||
set +e | ||
echo "Pulling ZAP image..." | ||
docker pull ghcr.io/zaproxy/zaproxy:stable -q | ||
echo "Starting ZAP Docker container..." | ||
docker run --network miw-net -v ${GITHUB_WORKSPACE}:/zap/wrk/:rw ghcr.io/zaproxy/zaproxy:stable zap-full-scan.py -t http://edc-runtime:8282/api/v1/dsp -r fullscan_report.html -T 1 | ||
echo "... done." | ||
- name: Upload HTML report | ||
if: success() || failure() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ZAP_FULL scan report | ||
path: ./fullscan_report.html |
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.