-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integration-Test-Suite for aasenvironment-component (#137)
* Updates SpecificAssetIDValueValueOnlySerialization * Implements EntityValueValueOnlyDecorator Signed-off-by: Jannis Jung <[email protected]> * Fixes SpecificAssetIdValueValueOnlySerialization Signed-off-by: Jannis Jung <[email protected]> * Adds SpecificAssetIdValueValueSerialization to SubmodelRepository Signed-off-by: Jannis Jung <[email protected]> * Includes externalSubjectId for serialization and deserialzation Co-authored-by: Marie Witt <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * cleans up code, refactoring * loads environment preconfiguration from folder * Implements loadEnvironmentFromFolder Test Co-authored-by: Marie Witt <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * Refactors Test and AasEnvironmentPreconfigurationLoader Co-authored-by: Marie Witt <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * Refactors Test Co-authored-by: Marie Witt <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * Reworks AasEnvironmentPreconfigurationLoader Co-authored-by: Marie Witt <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * Fully migrates to test "TestPreconfiguration" Co-authored-by: Marie Witt <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * Adds slf4j to aasenvironment-http pom Co-authored-by: Marie Witt <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * Improves null value handling Co-authored-by: Marie Witt <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * Removes unnecessary/disruptive pom entries Co-authored-by: Marie Witt <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * Reworks AasEnvironmentPreconfigurationLoader Co-authored-by: Marie Witt <[email protected]> Co-authored-by: Frank Schnicke <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * Resolves Review Remarks Co-authored-by: Marie Witt <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * tries to execute IT in aasenvironment * approaches integration test for aasenvironment * tries to integrate the submodelreporsitoryIT * Renames DummyConfigs with individual Names Co-authored-by: Marie Witt <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * Renemes Dummy Configs with individual Names Co-authored-by: Marie Witt <[email protected] Signed-off-by: Jannis Jung <[email protected]> * Adds dependency and annotation Signed-off-by: Jannis Jung <[email protected]> * finalize the IT-Integration * Resolves Merge conflict Signed-off-by: Jannis Jung <[email protected]> * Readds and renames DummyConfig for DiscoveryService Co-authored-by: Marie Witt <[email protected]> Signed-off-by: Jannis Jung <[email protected]> * Integrates missing png in aasenv src/test/res * applies the review-remarks --------- Signed-off-by: Jannis Jung <[email protected]> Co-authored-by: Jannis Jung <[email protected]> Co-authored-by: Frank Schnicke <[email protected]>
- Loading branch information
1 parent
2f6781a
commit c6a8f06
Showing
15 changed files
with
97 additions
and
34 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
46 changes: 46 additions & 0 deletions
46
...rc/test/java/org/eclipse/digitaltwin/basyx/aasenvironment/component/AASEnvironmentIT.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,46 @@ | ||
/******************************************************************************* | ||
* Copyright (C) 2023 the Eclipse BaSyx Authors | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining | ||
* a copy of this software and associated documentation files (the | ||
* "Software"), to deal in the Software without restriction, including | ||
* without limitation the rights to use, copy, modify, merge, publish, | ||
* distribute, sublicense, and/or sell copies of the Software, and to | ||
* permit persons to whom the Software is furnished to do so, subject to | ||
* the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be | ||
* included in all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
* | ||
* SPDX-License-Identifier: MIT | ||
******************************************************************************/ | ||
|
||
package org.eclipse.digitaltwin.basyx.aasenvironment.component; | ||
|
||
import org.eclipse.digitaltwin.basyx.aasrepository.component.AASRepositoryIT; | ||
import org.eclipse.digitaltwin.basyx.conceptdescriptionrepository.component.ConceptDescriptionRepositoryIT; | ||
import org.eclipse.digitaltwin.basyx.submodelrepository.component.SubmodelRepositoryIT; | ||
import org.junit.runner.RunWith; | ||
import org.junit.runners.Suite; | ||
|
||
/** | ||
* Integration test using the Integration tests from AASRepository, | ||
* SubmodelRepository and ConceptDescriptionRepository over the test suite | ||
* | ||
* @author witt | ||
* | ||
*/ | ||
|
||
@RunWith(Suite.class) | ||
@Suite.SuiteClasses({ AASRepositoryIT.class, SubmodelRepositoryIT.class, ConceptDescriptionRepositoryIT.class, }) | ||
public class AASEnvironmentIT { | ||
|
||
} |
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
Binary file added
BIN
+11.2 KB
...aasenvironment/basyx.aasenvironment.component/src/test/resources/BaSyx-Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -9,4 +9,5 @@ | |
* | ||
*/ | ||
public class AASRepositoryIT extends AasRepositoryTestDefinedURL { | ||
|
||
} |
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