diff --git a/README.md b/README.md index 394f77d..d7f4a68 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,16 @@ Contributors: This Repository contains necessary tests for Eclipse Kuksa Platforms. -Currently, Eclipse HONO API (including MQTT) and Hawkbit API tests are implemented. -Appstore tests will follow as well as a Jenkins CI config file. +Module and Integration Test Suite containing 40 Tests in the Kuksa context. + +Covers: +Eclipse Hono +Eclipse Hawkbit +Kuksa Appstore +Kuka Invehicle Platform Integration + +Jenkins setup via Spring parameters +Tests can be modified via the TestData files in testing/src/test/resources/testData # Getting Started with Eclipse Kuksa @@ -38,4 +46,4 @@ Appstore tests will follow as well as a Jenkins CI config file. * [VisDataFeeder](https://github.com/eclipse/kuksa.invehicle/tree/master/elm327-visdatafeeder) * [Kuksa-Hawkbit](https://github.com/eclipse/kuksa.invehicle/tree/master/kuksa-hawkbit) * [Remote-Access](https://github.com/eclipse/kuksa.invehicle/tree/master/remoteAccess) - * [W3C-Visserver-API](https://github.com/eclipse/kuksa.invehicle/tree/master/w3c-visserver-api) \ No newline at end of file + * [W3C-Visserver-API](https://github.com/eclipse/kuksa.invehicle/tree/master/w3c-visserver-api) diff --git a/testing/pom.xml b/testing/pom.xml index 91c9a64..cb80729 100644 --- a/testing/pom.xml +++ b/testing/pom.xml @@ -29,12 +29,7 @@ org.springframework.cloud spring-cloud-starter-openfeign - - - org.springframework.boot - spring-boot-starter-logging - - + 2.1.0.RELEASE @@ -55,12 +50,6 @@ org.springframework.boot spring-boot-starter-web - - - org.springframework.boot - spring-boot-starter-logging - - 2.1.0.RELEASE @@ -122,14 +111,6 @@ provided - - - com.h2database - h2 - runtime - 1.4.196 - - org.apache.logging.log4j @@ -149,11 +130,7 @@ slf4j-api 1.7.5 - - org.slf4j - slf4j-log4j12 - 1.7.5 - + diff --git a/testing/src/main/java/org/eclipse/kuksa/testing/HawkbitMultiPartFileFeignClient.java b/testing/src/main/java/org/eclipse/kuksa/testing/HawkbitMultiPartFileFeignClient.java index b742b95..5ddc4d4 100644 --- a/testing/src/main/java/org/eclipse/kuksa/testing/HawkbitMultiPartFileFeignClient.java +++ b/testing/src/main/java/org/eclipse/kuksa/testing/HawkbitMultiPartFileFeignClient.java @@ -23,7 +23,7 @@ import feign.Response; -@FeignClient(name = "feign-client", url = "http://hawkbit-appstacle.westeurope.cloudapp.azure.com:8080", configuration = HawkBitConfiguration.class) +@FeignClient(name = "feign-client", url = "${hawkbit_address}", configuration = HawkBitConfiguration.class) public interface HawkbitMultiPartFileFeignClient { @RequestMapping(value = "rest/v1/softwaremodules/{softwareModuleId}/artifacts", method = RequestMethod.POST)