Skip to content

Commit 5c67946

Browse files
feat: added getCurrentWalletInstanceStatus endpoint
Refs: #1197 SIW-2079
1 parent 36bb15d commit 5c67946

File tree

5 files changed

+229
-0
lines changed

5 files changed

+229
-0
lines changed

api_io_wallet.yaml

+24
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,30 @@ paths:
8282
"503":
8383
$ref: "#/components/responses/ServiceUnavailable"
8484

85+
/wallet-instances/current/status:
86+
get:
87+
summary: Retrieve the current Wallet Instance status
88+
operationId: getCurrentWalletInstanceStatus
89+
responses:
90+
"200":
91+
description: Wallet Instance status successfully retrieved
92+
content:
93+
application/json:
94+
schema:
95+
$ref: "#/components/schemas/WalletInstanceData"
96+
"400":
97+
$ref: "#/components/responses/BadRequest"
98+
"403":
99+
$ref: "#/components/responses/Forbidden"
100+
"404":
101+
$ref: "#/components/responses/NotFound"
102+
"422":
103+
$ref: "#/components/responses/UnprocessableContent"
104+
"500":
105+
$ref: "#/components/responses/Unexpected"
106+
"503":
107+
$ref: "#/components/responses/ServiceUnavailable"
108+
85109
/wallet-instances/{id}/status:
86110
parameters:
87111
- in: path

src/controllers/ioWalletController.ts

+17
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,23 @@ export default class IoWalletController {
199199
)()
200200
);
201201

202+
/**
203+
* Get Current Wallet Instance Status
204+
*/
205+
public readonly getCurrentWalletInstanceStatus = (
206+
req: express.Request
207+
): Promise<
208+
| IResponseErrorInternal
209+
| IResponseSuccessJson<WalletInstanceData>
210+
| IResponseErrorNotFound
211+
| IResponseErrorServiceUnavailable
212+
| IResponseErrorValidation
213+
| IResponseErrorForbiddenNotAuthorized
214+
> =>
215+
withUserFromRequest(req, async (user) =>
216+
this.ioWalletService.getCurrentWalletInstanceStatus(user.fiscal_code)
217+
);
218+
202219
private readonly ensureUserIsAllowed = (
203220
userId: NonEmptyString
204221
): TE.TaskEither<Error, void> =>

src/routes/ioWalletRoutes.ts

+9
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@ export const registerIoWalletAPIRoutes = (
4545
)
4646
);
4747

48+
app.get(
49+
`${basePath}/wallet-instances/current/status`,
50+
bearerSessionTokenAuth,
51+
toExpressHandler(
52+
ioWalletController.getCurrentWalletInstanceStatus,
53+
ioWalletController
54+
)
55+
);
56+
4857
app.get(
4958
`${basePath}/wallet-instances/:walletInstanceId/status`,
5059
bearerSessionTokenAuth,

src/services/__tests__/ioWalletService.test.ts

+137
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,17 @@ mockGetWalletInstanceStatus.mockImplementation(() =>
5050
})
5151
);
5252

53+
mockGetCurrentWalletInstanceStatus.mockImplementation(() =>
54+
t.success({
55+
status: 200,
56+
value: {
57+
id: "bar",
58+
is_revoked: "false",
59+
revocation_reason: "NEW_WALLET_INSTANCE_CREATED"
60+
},
61+
})
62+
);
63+
5364
mockSetWalletInstanceStatus.mockImplementation(() =>
5465
t.success({
5566
status: 204,
@@ -635,6 +646,132 @@ describe("IoWalletService#getWalletInstanceStatus", () => {
635646
});
636647
});
637648

649+
describe("IoWalletService#getCurrentWalletInstanceStatus", () => {
650+
beforeEach(() => {
651+
jest.clearAllMocks();
652+
});
653+
654+
it("should make the correct api call", async () => {
655+
const service = new IoWalletService(api, trialSystemApi);
656+
657+
await service.getCurrentWalletInstanceStatus(aFiscalCode);
658+
659+
expect(mockGetCurrentWalletInstanceStatus).toHaveBeenCalledWith({
660+
"fiscal-code": aFiscalCode,
661+
});
662+
});
663+
664+
it("should handle a success response", async () => {
665+
const service = new IoWalletService(api, trialSystemApi);
666+
667+
const res = await service.getCurrentWalletInstanceStatus(aFiscalCode);
668+
669+
expect(res).toMatchObject({
670+
kind: "IResponseSuccessJson",
671+
});
672+
});
673+
674+
it("should handle an internal error when the API client returns 400", async () => {
675+
mockGetCurrentWalletInstanceStatus.mockImplementationOnce(() =>
676+
t.success({ status: 400 })
677+
);
678+
679+
const service = new IoWalletService(api, trialSystemApi);
680+
681+
const res = await service.getCurrentWalletInstanceStatus(aFiscalCode);
682+
683+
expect(res).toMatchObject({
684+
kind: "IResponseErrorInternal",
685+
});
686+
});
687+
688+
it("should handle a not found error when the API client returns 404", async () => {
689+
mockGetCurrentWalletInstanceStatus.mockImplementationOnce(() =>
690+
t.success({ status: 404 })
691+
);
692+
693+
const service = new IoWalletService(api, trialSystemApi);
694+
695+
const res = await service.getCurrentWalletInstanceStatus(aFiscalCode);
696+
697+
expect(res).toMatchObject({
698+
kind: "IResponseErrorNotFound",
699+
});
700+
});
701+
702+
it("should handle an internal error when the API client returns 422", async () => {
703+
mockGetCurrentWalletInstanceStatus.mockImplementationOnce(() =>
704+
t.success({ status: 422 })
705+
);
706+
707+
const service = new IoWalletService(api, trialSystemApi);
708+
709+
const res = await service.getCurrentWalletInstanceStatus(aFiscalCode);
710+
711+
expect(res).toMatchObject({
712+
kind: "IResponseErrorInternal",
713+
});
714+
});
715+
716+
it("should handle an internal error when the API client returns 500", async () => {
717+
const aGenericProblem = {};
718+
mockGetCurrentWalletInstanceStatus.mockImplementationOnce(() =>
719+
t.success({ status: 500, value: aGenericProblem })
720+
);
721+
722+
const service = new IoWalletService(api, trialSystemApi);
723+
724+
const res = await service.getCurrentWalletInstanceStatus(aFiscalCode);
725+
726+
expect(res).toMatchObject({
727+
kind: "IResponseErrorInternal",
728+
});
729+
});
730+
731+
it("should handle a service unavailable error when the API client returns 503", async () => {
732+
const aGenericProblem = {};
733+
mockGetCurrentWalletInstanceStatus.mockImplementationOnce(() =>
734+
t.success({ status: 503, value: aGenericProblem })
735+
);
736+
737+
const service = new IoWalletService(api, trialSystemApi);
738+
739+
const res = await service.getCurrentWalletInstanceStatus(aFiscalCode);
740+
741+
expect(res).toMatchObject({
742+
kind: "IResponseErrorServiceUnavailable",
743+
});
744+
});
745+
746+
it("should handle an internal error when the API client returns a code not specified in spec", async () => {
747+
const aGenericProblem = {};
748+
mockGetCurrentWalletInstanceStatus.mockImplementationOnce(() =>
749+
t.success({ status: 599, value: aGenericProblem })
750+
);
751+
752+
const service = new IoWalletService(api, trialSystemApi);
753+
754+
const res = await service.getCurrentWalletInstanceStatus(aFiscalCode);
755+
756+
expect(res).toMatchObject({
757+
kind: "IResponseErrorInternal",
758+
});
759+
});
760+
761+
it("should return an error if the api call throws an error", async () => {
762+
mockGetCurrentWalletInstanceStatus.mockImplementationOnce(() => {
763+
throw new Error();
764+
});
765+
const service = new IoWalletService(api, trialSystemApi);
766+
767+
const res = await service.getCurrentWalletInstanceStatus(aFiscalCode);
768+
769+
expect(res).toMatchObject({
770+
kind: "IResponseErrorInternal",
771+
});
772+
});
773+
});
774+
638775
describe("IoWalletService#getSubscription", () => {
639776
beforeEach(() => {
640777
jest.clearAllMocks();

src/services/ioWalletService.ts

+42
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,48 @@ export default class IoWalletService {
281281
});
282282
});
283283

284+
/**
285+
* Get Current Wallet Instance Status
286+
*/
287+
public readonly getCurrentWalletInstanceStatus = (
288+
fiscal_code: FiscalCode
289+
): Promise<
290+
| IResponseSuccessJson<WalletInstanceData>
291+
| IResponseErrorNotFound
292+
| IResponseErrorInternal
293+
| IResponseErrorServiceUnavailable
294+
> =>
295+
withCatchAsInternalError(async () => {
296+
const validated =
297+
await this.ioWalletApiClient.getCurrentWalletInstanceStatus({
298+
"fiscal-code": fiscal_code
299+
});
300+
return withValidatedOrInternalError(validated, (response) => {
301+
switch (response.status) {
302+
case 200:
303+
return ResponseSuccessJson(response.value);
304+
case 404:
305+
return ResponseErrorNotFound(
306+
"Not Found",
307+
"Wallet instance not found"
308+
);
309+
case 400:
310+
case 422:
311+
case 500:
312+
return ResponseErrorInternal(
313+
`Internal server error | ${response.value}`
314+
);
315+
case 503:
316+
return ResponseErrorServiceTemporarilyUnavailable(
317+
serviceUnavailableDetail,
318+
"10"
319+
);
320+
default:
321+
return ResponseErrorStatusNotDefinedInSpec(response);
322+
}
323+
});
324+
});
325+
284326
/**
285327
* Get the subscription given a specific user.
286328
*/

0 commit comments

Comments
 (0)