-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
ConsumerUsingMockTest.java
62 lines (54 loc) · 1.85 KB
/
ConsumerUsingMockTest.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
package mock.contract;
import com.intuit.karate.JsonUtils;
import com.intuit.karate.core.MockServer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
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 ConsumerUsingMockTest {
static final Logger logger = LoggerFactory.getLogger(ConsumerUsingMockTest.class);
static MockServer server;
static Consumer consumer;
@BeforeAll
static void beforeAll() {
String queueName = "DEMO.MOCK";
server = MockServer
.feature("classpath:mock/contract/payment-service-mock.feature")
.arg("queueName", queueName)
.http(0).build();
String paymentServiceUrl = "http://localhost:" + server.getPort();
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() {
server.stop();
consumer.stopQueueConsumer();
}
}