-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
ConsumerIntegrationTest.java
55 lines (48 loc) · 1.63 KB
/
ConsumerIntegrationTest.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
package mock.contract;
import com.intuit.karate.JsonUtils;
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 ConsumerIntegrationTest {
static ConfigurableApplicationContext context;
static Consumer consumer;
@BeforeAll
static void beforeAll() {
String queueName = "DEMO.INTEGRATION";
context = PaymentService.start(queueName, false);
String paymentServiceUrl = "http://localhost:" + PaymentService.getPort(context);
consumer = new Consumer(paymentServiceUrl, 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() {
PaymentService.stop(context);
consumer.stopQueueConsumer();
}
}