-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
ConsumerUsingProxyRewriteTest.java
67 lines (60 loc) · 2.11 KB
/
ConsumerUsingProxyRewriteTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package mock.contract;
import com.intuit.karate.JsonUtils;
import com.intuit.karate.core.MockServer;
import org.springframework.context.ConfigurableApplicationContext;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
/**
*
* @author pthomas3
*/
class ConsumerUsingProxyRewriteTest {
static ConfigurableApplicationContext context;
static MockServer server;
static Consumer consumer;
@BeforeAll
static void beforeAll() {
// actual service
String queueName = "DEMO.PROXY.REWRITE";
context = PaymentService.start(queueName, false);
String paymentServiceUrl = "http://localhost:" + PaymentService.getPort(context);
// proxy
server = MockServer
.feature("classpath:mock/contract/payment-service-proxy.feature")
// requests will be forwarded / url re-written to paymentServiceUrl
.arg("paymentServiceUrl", paymentServiceUrl)
.http(0).build();
// consumer
String proxyUrl = "http://localhost:" + server.getPort();
consumer = new Consumer(proxyUrl, queueName);
}
@Test
void testPaymentCreate() throws Exception {
Payment payment = new Payment();
payment.setAmount(5.67);
payment.setDescription("test one");
Payment result = consumer.create(payment);
assertTrue(result.getId() > 0);
assertEquals(result.getAmount(), 5.67, 0);
assertEquals(result.getDescription(), "test one");
consumer.listen(json -> {
Shipment shipment = JsonUtils.fromJson(json, Shipment.class);
assertEquals(result.getId(), shipment.getPaymentId());
assertEquals("shipped", shipment.getStatus());
synchronized (this) {
notify();
}
});
synchronized (this) {
wait(10000);
}
}
@AfterAll
static void afterAll() {
server.stop();
PaymentService.stop(context);
consumer.stopQueueConsumer();
}
}