@@ -50,6 +50,17 @@ mockGetWalletInstanceStatus.mockImplementation(() =>
50
50
} )
51
51
) ;
52
52
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
+
53
64
mockSetWalletInstanceStatus . mockImplementation ( ( ) =>
54
65
t . success ( {
55
66
status : 204 ,
@@ -635,6 +646,132 @@ describe("IoWalletService#getWalletInstanceStatus", () => {
635
646
} ) ;
636
647
} ) ;
637
648
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
+
638
775
describe ( "IoWalletService#getSubscription" , ( ) => {
639
776
beforeEach ( ( ) => {
640
777
jest . clearAllMocks ( ) ;
0 commit comments