-
Notifications
You must be signed in to change notification settings - Fork 0
/
MoneyTransferAppIT.java
156 lines (132 loc) · 4.46 KB
/
MoneyTransferAppIT.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package app;
import io.restassured.RestAssured;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import java.math.BigDecimal;
import static io.restassured.RestAssured.given;
import static io.restassured.config.JsonConfig.jsonConfig;
import static io.restassured.path.json.config.JsonPathConfig.NumberReturnType.BIG_DECIMAL;
import static org.hamcrest.Matchers.*;
class MoneyTransferAppIT {
@BeforeAll
static void start() {
int port = 12345;
RestAssured.baseURI = "http://localhost:" + port;
RestAssured.config = RestAssured.config().jsonConfig(jsonConfig().numberReturnType(BIG_DECIMAL));
new App().start(port);
}
@Test
void shouldCreateAccount() {
given().
body("{\"initialBalance\": 100.00}").
when().
post("/accounts").
then().
statusCode(201).
body("balance", is(equalTo(new BigDecimal("100.00"))));
}
@Test
void shouldNotCreateAccountWithNegativeInitialBalance() {
given().
body("{\"initialBalance\": -100.00}").
when().
post("/accounts").
then().
statusCode(400).
body("message", is(notNullValue()));
}
@Test
void shouldReturnAccountById() {
var initialBalance = new BigDecimal("10.00");
int accountId = createAccount(initialBalance);
given().
pathParam("id", accountId).
when().
get("/accounts/{id}").
then().
statusCode(200).
body("id", is(equalTo(accountId))).
body("balance", is(equalTo(initialBalance)));
}
@Test
void shouldNotFoundAccountWhenAccountDoesNotExist() {
given().
pathParam("id", -1).
when().
get("/accounts/{id}").
then().
statusCode(404).
body("message", is(notNullValue()));
}
@Test
void shouldCorrectlyDepositMoney() {
int accountId = createAccount(new BigDecimal("100.00"));
given().
pathParam("id", accountId).
queryParam("amount", 10.10).
when().
post("/accounts/{id}/deposit").
then().
statusCode(200).
body("id", is(equalTo(accountId))).
body("balance", is(equalTo(new BigDecimal("110.10"))));
}
@Test
void shouldCorrectlyWithdrawMoney() {
int accountId = createAccount(new BigDecimal("100.00"));
given().
pathParam("id", accountId).
queryParam("amount", 10.10).
when().
post("/accounts/{id}/withdrawal").
then().
statusCode(200).
body("id", is(equalTo(accountId))).
body("balance", is(equalTo(new BigDecimal("89.90"))));
}
@Test
void shoudlCorrectlyTransferMoney() {
int senderAccountId = createAccount(new BigDecimal("100.00"));
int receiverAccountId = createAccount(new BigDecimal("50.00"));
given().
body("{\n" +
"\"senderAccountId\": " + senderAccountId +"," +
"\"receiverAccountId\": " + receiverAccountId + "," +
"\"amount\": 25.00" +
"}").
when().
post("/transfers").
then().
statusCode(200);
var expectedBalance = new BigDecimal("75.00");
given().
pathParam("id", senderAccountId).
when().
get("/accounts/{id}").
then().
statusCode(200).
body("id", is(equalTo(senderAccountId))).
body("balance", is(equalTo(expectedBalance)));
given().
pathParam("id", receiverAccountId).
when().
get("/accounts/{id}").
then().
statusCode(200).
body("id", is(equalTo(receiverAccountId))).
body("balance", is(equalTo(expectedBalance)));
}
private static int createAccount(BigDecimal initialBalance) {
return
given().
body("{\"initialBalance\": " + initialBalance + "}").
when().
post("/accounts").
then().
statusCode(201).
extract().
body().
jsonPath().
getInt("id");
}
}