-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(test): add compatibility test for DSP
- Loading branch information
1 parent
04c5f1b
commit eabd52c
Showing
41 changed files
with
160 additions
and
1,849 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,20 @@ | ||
name: "Run Nightly Tests" | ||
on: | ||
schedule: | ||
- "0 0 * * *" # run at 00:00 UTC | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow}}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
Run-Dsp-Compatibility-Test: | ||
name: "Run DSP Compatibility Test" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: eclipse-edc/.github/.github/actions/setup-build@main | ||
- name: DSP Compatibility | ||
run: | | ||
./gradlew -p system-tests/dsp-compatibility-tests test -DincludeTags="NightlyTest" -PverboseTest=true |
33 changes: 33 additions & 0 deletions
33
core/common/junit/src/main/java/org/eclipse/edc/junit/annotations/NightlyTest.java
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,33 @@ | ||
/* | ||
* Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) | ||
* | ||
* 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 | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* Contributors: | ||
* Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation | ||
* | ||
*/ | ||
|
||
package org.eclipse.edc.junit.annotations; | ||
|
||
import org.junit.jupiter.api.Tag; | ||
|
||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
/** | ||
* Annotation for Nightly testing. This is typically triggered by a nightly build action from CI. | ||
*/ | ||
@Target({ ElementType.TYPE }) | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@IntegrationTest | ||
@Tag("NightlyTest") | ||
public @interface NightlyTest { | ||
} | ||
|
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 was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
...xtension/src/main/java/org/eclipse/edc/tck/dsp/controller/ContractNegotiationRequest.java
This file was deleted.
Oops, something went wrong.
52 changes: 0 additions & 52 deletions
52
...ck-extension/src/main/java/org/eclipse/edc/tck/dsp/controller/TckControllerExtension.java
This file was deleted.
Oops, something went wrong.
63 changes: 0 additions & 63 deletions
63
.../tck-extension/src/main/java/org/eclipse/edc/tck/dsp/controller/TckWebhookController.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.