-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathBalanceAnalyticsApiTest.java
34 lines (27 loc) · 1.21 KB
/
BalanceAnalyticsApiTest.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
package com.mastercard.openbanking.client.api;
import client.api.CustomBalanceAnalyticsApi;
import com.mastercard.openbanking.client.ApiException;
import com.mastercard.openbanking.client.model.BalanceAndCashFlowAnalyticsReportConstraints;
import com.mastercard.openbanking.client.test.BaseTest;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertNotNull;
class BalanceAnalyticsApiTest extends BaseTest {
private final CustomBalanceAnalyticsApi api = new CustomBalanceAnalyticsApi(apiClient);
@Test
void generateBalanceAnalyticsTest() {
try {
// Generate a report
var reportConstraints = new BalanceAndCashFlowAnalyticsReportConstraints();
var generateResponse = api.generateBalanceAnalytics(CUSTOMER_ID, reportConstraints, null);
var reportId = generateResponse.getReportId();
// Fetch the report as JSON
var report = api.getObbAnalyticsJsonReport(reportId);
assertNotNull(report);
// Fetch the report as PDF
var pdf = api.getObbAnalyticsPdfReport(reportId);
assertNotNull(pdf);
} catch (ApiException e) {
fail(e);
}
}
}