-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathBankStatementsApiTest.java
67 lines (57 loc) · 2.36 KB
/
BankStatementsApiTest.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 com.mastercard.openbanking.client.api;
import com.mastercard.openbanking.client.ApiException;
import com.mastercard.openbanking.client.model.CustomerAccount;
import com.mastercard.openbanking.client.model.StatementData;
import com.mastercard.openbanking.client.model.StatementReportConstraints;
import com.mastercard.openbanking.client.test.BaseTest;
import com.mastercard.openbanking.client.test.utils.AccountUtils;
import com.mastercard.openbanking.client.test.utils.ConsumerUtils;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import java.util.Optional;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
class BankStatementsApiTest extends BaseTest {
private final BankStatementsApi api = new BankStatementsApi(apiClient);
private static String existingAccountId;
@BeforeAll
protected static void beforeAll() {
try {
// A consumer is required to generate reports
ConsumerUtils.getOrCreateDefaultConsumer(new ConsumersApi(apiClient), CUSTOMER_ID);
// Find an existing account ID
Optional<CustomerAccount> account = AccountUtils.getCustomerAccounts(new AccountsApi(apiClient), CUSTOMER_ID)
.stream()
.findFirst();
if (account.isEmpty()) {
fail();
}
existingAccountId = account.get().getId();
} catch (ApiException e) {
fail(e);
}
}
@Test
void generateStatementReportTest() {
try {
var constraints = new StatementReportConstraints()
.statementReportData(new StatementData()
.statementIndex(1)
.accountId(Long.valueOf(existingAccountId)));
var reportAck = api.generateStatementReport(CUSTOMER_ID, constraints, null);
assertEquals("inProgress", reportAck.getStatus());
assertEquals("statement", reportAck.getType());
} catch (ApiException e) {
fail(e);
}
}
@Test
void getCustomerAccountStatementTest() {
try {
var pdf = api.getCustomerAccountStatement(CUSTOMER_ID, existingAccountId, 1, null);
assertNotNull(pdf);
} catch (ApiException e) {
fail(e);
}
}
}