Skip to content
This repository has been archived by the owner on Dec 20, 2021. It is now read-only.

Release 0.2 commit #27

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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)
* [W3C-Visserver-API](https://github.com/eclipse/kuksa.invehicle/tree/master/w3c-visserver-api)
27 changes: 2 additions & 25 deletions testing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>

<version>2.1.0.RELEASE</version>

</dependency>
Expand All @@ -55,12 +50,6 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
<version>2.1.0.RELEASE</version>

</dependency>
Expand Down Expand Up @@ -122,14 +111,6 @@
<scope>provided</scope>
</dependency>

<!-- H2 -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
<version>1.4.196</version>
</dependency>

<!-- LOGGING -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -149,11 +130,7 @@
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.5</version>
</dependency>


<!-- READ YAML FILE -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down