@@ -20,14 +20,19 @@ describe(resolveCustomEndpointsConfig.name, () => {
20
20
21
21
beforeEach ( ( ) => {
22
22
vi . mocked ( normalizeProvider ) . mockImplementation ( ( input ) =>
23
- typeof input === "function" ? input : ( ) => Promise . resolve ( input )
23
+ typeof input === "function" ? ( input as any ) : ( ) => Promise . resolve ( input )
24
24
) ;
25
25
} ) ;
26
26
27
27
afterEach ( ( ) => {
28
28
vi . clearAllMocks ( ) ;
29
29
} ) ;
30
30
31
+ it ( "maintains object custody" , ( ) => {
32
+ const input = { ...mockInput } ;
33
+ expect ( resolveCustomEndpointsConfig ( input ) ) . toBe ( input ) ;
34
+ } ) ;
35
+
31
36
describe ( "tls" , ( ) => {
32
37
afterEach ( ( ) => {
33
38
expect ( normalizeProvider ) . toHaveBeenCalledTimes ( 2 ) ;
@@ -44,7 +49,7 @@ describe(resolveCustomEndpointsConfig.name, () => {
44
49
} ) ;
45
50
46
51
it ( "returns true for isCustomEndpoint" , ( ) => {
47
- expect ( resolveCustomEndpointsConfig ( mockInput ) . isCustomEndpoint ) . toStrictEqual ( true ) ;
52
+ expect ( resolveCustomEndpointsConfig ( { ... mockInput } ) . isCustomEndpoint ) . toStrictEqual ( true ) ;
48
53
} ) ;
49
54
50
55
it ( "returns false when useDualstackEndpoint is not defined" , async ( ) => {
@@ -56,23 +61,25 @@ describe(resolveCustomEndpointsConfig.name, () => {
56
61
} ) ;
57
62
58
63
describe ( "returns normalized endpoint" , ( ) => {
59
- afterEach ( ( ) => {
60
- expect ( normalizeProvider ) . toHaveBeenCalledTimes ( 2 ) ;
61
- expect ( normalizeProvider ) . toHaveBeenNthCalledWith ( 1 , mockInput . endpoint ) ;
62
- expect ( normalizeProvider ) . toHaveBeenNthCalledWith ( 2 , mockInput . useDualstackEndpoint ) ;
63
- } ) ;
64
-
65
64
it ( "calls urlParser endpoint is of type string" , async ( ) => {
66
65
const mockEndpointString = "http://localhost/" ;
67
66
const endpoint = await resolveCustomEndpointsConfig ( { ...mockInput , endpoint : mockEndpointString } ) . endpoint ( ) ;
68
67
expect ( endpoint ) . toStrictEqual ( mockEndpoint ) ;
69
68
expect ( mockInput . urlParser ) . toHaveBeenCalledWith ( mockEndpointString ) ;
69
+
70
+ expect ( normalizeProvider ) . toHaveBeenCalledTimes ( 2 ) ;
71
+ expect ( normalizeProvider ) . toHaveBeenNthCalledWith ( 1 , mockInput . endpoint ) ;
72
+ expect ( normalizeProvider ) . toHaveBeenNthCalledWith ( 2 , mockInput . useDualstackEndpoint ) ;
70
73
} ) ;
71
74
72
75
it ( "passes endpoint to normalize if not string" , async ( ) => {
73
- const endpoint = await resolveCustomEndpointsConfig ( mockInput ) . endpoint ( ) ;
76
+ const endpoint = await resolveCustomEndpointsConfig ( { ... mockInput } ) . endpoint ( ) ;
74
77
expect ( endpoint ) . toStrictEqual ( mockEndpoint ) ;
75
78
expect ( mockInput . urlParser ) . not . toHaveBeenCalled ( ) ;
79
+
80
+ expect ( normalizeProvider ) . toHaveBeenCalledTimes ( 2 ) ;
81
+ expect ( normalizeProvider ) . toHaveBeenNthCalledWith ( 1 , mockInput . endpoint ) ;
82
+ expect ( normalizeProvider ) . toHaveBeenNthCalledWith ( 2 , mockInput . useDualstackEndpoint ) ;
76
83
} ) ;
77
84
} ) ;
78
85
} ) ;
0 commit comments