-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest.http
167 lines (148 loc) · 4 KB
/
test.http
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
157
158
159
160
161
162
163
164
165
###
GET http://localhost:3000/health-check
> {%
client.test('should return simple health check message',
() => {
client.assert(response.body === "health check OK");
});
%}
###
POST http://localhost:3000/currency
Content-Type: application/json
{
"currencies": [
{
"currency": "EUR",
"price_pln": "4.31",
"date": "2023-01-01"
},
{
"currency": "USD",
"price_pln": "3.98",
"date": "2023-01-01"
}
]
}
> {%
client.test('should add currency value for given dates',
() => {
console.log(response.status);
client.assert(response.status === 201);
});
%}
### This test will fail if you implemented GET which return also all previous rates and should be run when DB is empty you can add flush DB endpoint above to clean state
GET http://localhost:3000/currency
> {%
client.test('should return currency exchange rates',
() => {
console.log(response.body);
client.assert( JSON.stringify(response.body) === JSON.stringify({
"currencies": [
{
"currency": "EUR",
"price_pln": "4.31",
"date": "2023-01-01"
},
{
"currency": "USD",
"price_pln": "3.98",
"date": "2023-01-01"
}
]}));
});
%}
###
POST http://localhost:3000/currencyExchange
Content-Type: application/json
{
"from_currency": "EUR",
"to_currency": "PLN",
"amount": 123.33,
"date": "2023-01-01"
}
> {%
client.test('should make currency exchange for given amount EUR',
() => {
client.assert(JSON.stringify(response.body) === JSON.stringify({
"currency": "PLN",
"value": 531.5523,
"date": "2023-01-01"
}));
});
%}
###
POST http://localhost:3000/currencyExchange
Content-Type: application/json
{
"from_currency": "USD",
"to_currency": "PLN",
"amount": 123.33,
"date": "2023-01-01"
}
> {%
client.test('should make currency exchange for given amount USD',
() => {
client.assert(JSON.stringify(response.body) === JSON.stringify({
"currency": "PLN",
"value": 490.85339999999997,
"date": "2023-01-01"
}));
});
%}
###
POST http://localhost:3000/currency
Content-Type: application/json
{
"currencies": [
{
"currency": "EUR",
"price_pln": "4.50",
"date": "2023-01-02"
},
{
"currency": "USD",
"price_pln": "4.00",
"date": "2023-01-02"
}
]
}
> {%
client.test('should add new rates to existing rates',
() => {
console.log(response.status);
client.assert(response.status === 201);
});
%}
###
GET http://localhost:3000/currency
> {%
client.test('should return more currency rates',
() => {
console.log(response.body);
client.assert( JSON.stringify(response.body) === JSON.stringify({
"currencies": [
{
"currency": "EUR",
"price_pln": "4.31",
"date": "2023-01-01"
},
{
"currency": "EUR",
"price_pln": "4.5",
"date": "2023-01-02"
},
{
"currency": "USD",
"price_pln": "3.98",
"date": "2023-01-01"
},
{
"currency": "USD",
"price_pln": "4",
"date": "2023-01-02"
}
]
}
));
});
%}