-
Notifications
You must be signed in to change notification settings - Fork 11
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' of https://github.com/eclipse-tractusx/sldt-seman…
…tic-hub into SAMM_BAMM_Support-ESMF_SDK_2.3.2 # Conflicts: # CHANGELOG.md # backend/src/test/java/org/eclipse/tractusx/semantics/hub/ModelsApiTest.java
- Loading branch information
Showing
27 changed files
with
711 additions
and
95 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
############################################################### | ||
# Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH | ||
# Copyright (c) 2023 Contributors to the Eclipse Foundation | ||
# | ||
# 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: Semantic-hub End-to-End tests | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
bearerToken: | ||
description: 'bearerToken' | ||
required: true | ||
semantichubUrl: | ||
description: 'semantic-hub-Url' | ||
required: true | ||
|
||
jobs: | ||
end_to_end_tests: | ||
runs-on: ubuntu-latest | ||
name: Execute End-to-End tests | ||
|
||
steps: | ||
- name: Mask Input Credentials | ||
run: | | ||
mask_client_bearer_token=$(jq -r '.inputs.bearerToken' $GITHUB_EVENT_PATH) | ||
echo ::add-mask::$mask_client_bearer_token | ||
echo mask_client_bearer_token=$mask_client_bearer_token >> $GITHUB_ENV | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.8" | ||
check-latest: true | ||
|
||
- name: Install python dependencies | ||
working-directory: ./e2e-tests | ||
run: | | ||
pip install -r requirements.txt | ||
- name: Install python dependencies | ||
working-directory: ./e2e-tests/semantic-hub | ||
run: | | ||
py.test . -vv --html=./output/report.html --self-contained-html | ||
env: | ||
BEARER_TOKEN: ${{ env.mask_client_bearer_token }} | ||
SEMANTIC_HUB_API_URL: ${{ inputs.semantichubUrl }} | ||
- name: Upload test report | ||
uses: actions/upload-artifact@v3 | ||
if: always() | ||
with: | ||
name: semantic-hub-e2e-test-report | ||
path: ./e2e-tests/semantic-hub/output/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
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 |
---|---|---|
@@ -1,6 +1,17 @@ | ||
# Security Policy | ||
|
||
## Reporting a Vulnerability | ||
|
||
Please report a found vulnerability here: | ||
[https://www.eclipse.org/security/](https://www.eclipse.org/security/) | ||
Please do **not** report security vulnerabilities through public GitHub issues. | ||
|
||
Please report vulnerabilities to this repository via **GitHub security advisories** instead. | ||
|
||
How? Inside affected repository → security tab | ||
|
||
for contributor: | ||
→ Report a vulnerability | ||
|
||
for committer: | ||
→ advisories → New draft security advisory | ||
|
||
In severe cases, you can also report a found vulnerability via mail or eclipse issue here: https://www.eclipse.org/security/ | ||
|
||
See [Eclipse Foundation Vulnerability Reporting Policy](https://www.eclipse.org/projects/handbook/#vulnerability) |
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
36 changes: 18 additions & 18 deletions
36
charts/semantic-hub/templates/graphdb/graphdb-deployment.yaml
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.