4 changed files with 176 additions and 11 deletions
@ -0,0 +1,69 @@
@@ -0,0 +1,69 @@
|
||||
/* |
||||
* Copyright 2016 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://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. |
||||
*/ |
||||
|
||||
package org.springframework.cloud.netflix.hystrix.stream; |
||||
|
||||
import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand; |
||||
|
||||
import org.junit.runner.RunWith; |
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.SpringApplication; |
||||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; |
||||
import org.springframework.boot.test.context.SpringBootTest; |
||||
import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker; |
||||
import org.springframework.cloud.contract.verifier.messaging.boot.AutoConfigureMessageVerifier; |
||||
import org.springframework.cloud.netflix.hystrix.stream.StreamSourceTestBase.Application; |
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* Base class for sensor autogenerated tests (used by Spring Cloud Contract). |
||||
* |
||||
* This bootstraps the Spring Boot application code. |
||||
* |
||||
* @author Marius Bogoevici |
||||
*/ |
||||
@RunWith(SpringJUnit4ClassRunner.class) |
||||
@SpringBootTest(classes = Application.class, properties = "spring.cloud.stream.bindings.output.destination=sensor-data") |
||||
@AutoConfigureMessageVerifier |
||||
public abstract class StreamSourceTestBase { |
||||
|
||||
@Autowired |
||||
Application application; |
||||
|
||||
public void createMetricsData() { |
||||
application.hello(); |
||||
} |
||||
|
||||
@EnableAutoConfiguration |
||||
@EnableCircuitBreaker |
||||
@RestController |
||||
public static class Application { |
||||
|
||||
@HystrixCommand |
||||
@RequestMapping("/") |
||||
public String hello() { |
||||
return "Hello World"; |
||||
} |
||||
|
||||
public static void main(String[] args) { |
||||
SpringApplication.run(Application.class, args); |
||||
} |
||||
|
||||
} |
||||
} |
@ -0,0 +1,24 @@
@@ -0,0 +1,24 @@
|
||||
package contracts |
||||
|
||||
org.springframework.cloud.contract.spec.Contract.make { |
||||
// Human readable description |
||||
description 'Should produce valid metrics data' |
||||
// Label by means of which the output message can be triggered |
||||
label 'metrics' |
||||
// input to the contract |
||||
input { |
||||
// the contract will be triggered by a method |
||||
triggeredBy('createMetricsData()') |
||||
} |
||||
// output message of the contract |
||||
outputMessage { |
||||
// destination to which the output message will be sent |
||||
sentTo 'hystrixStreamOutput' |
||||
headers { |
||||
header('contentType': 'application/json') |
||||
} |
||||
// the body of the output message |
||||
body ([ |
||||
]) |
||||
} |
||||
} |
Loading…
Reference in new issue