@@ -58,9 +58,11 @@ test('Calls the purge API endpoint and returns `undefined` if the operation was
58
58
expect ( mockAPI . fulfilled ) . toBeTruthy ( )
59
59
} )
60
60
61
- test ( 'Throws if the API response does not have a successful status code' , async ( ) => {
61
+ test ( 'Throws an error if the API response does not have a successful status code, using the response body as part of the error message ' , async ( ) => {
62
62
if ( ! hasFetchAPI ) {
63
63
console . warn ( 'Skipping test requires the fetch API' )
64
+
65
+ return
64
66
}
65
67
66
68
const mockSiteID = '123456789'
@@ -77,7 +79,7 @@ test('Throws if the API response does not have a successful status code', async
77
79
} ,
78
80
headers : { Authorization : `Bearer ${ mockToken } ` } ,
79
81
method : 'post' ,
80
- response : new Response ( null , { status : 500 } ) ,
82
+ response : new Response ( 'site not found' , { status : 404 } ) ,
81
83
url : `https://api.netlify.com/api/v1/purge` ,
82
84
} )
83
85
// eslint-disable-next-line unicorn/consistent-function-scoping
@@ -90,14 +92,54 @@ test('Throws if the API response does not have a successful status code', async
90
92
try {
91
93
await invokeLambda ( myFunction )
92
94
93
- throw new Error ( 'Invocation should have failed' )
95
+ expect . fail ( 'Invocation should have failed' )
94
96
} catch ( error ) {
95
97
expect ( ( error as NodeJS . ErrnoException ) . message ) . toBe (
96
- 'Cache purge API call returned an unexpected status code: 500 ' ,
98
+ 'Cache purge API call was unsuccessful.\nStatus: 404\nBody: site not found ' ,
97
99
)
98
100
}
99
101
} )
100
102
103
+ test ( 'Throws if the API response does not have a successful status code, does not include the response body if it is not text' , async ( ) => {
104
+ if ( ! hasFetchAPI ) {
105
+ console . warn ( 'Skipping test requires the fetch API' )
106
+
107
+ return
108
+ }
109
+
110
+ const mockSiteID = '123456789'
111
+ const mockToken = '1q2w3e4r5t6y7u8i9o0p'
112
+
113
+ process . env . NETLIFY_PURGE_API_TOKEN = mockToken
114
+ process . env . SITE_ID = mockSiteID
115
+
116
+ const mockAPI = new MockFetch ( ) . post ( {
117
+ body : ( payload : string ) => {
118
+ const data = JSON . parse ( payload )
119
+
120
+ expect ( data . site_id ) . toBe ( mockSiteID )
121
+ } ,
122
+ headers : { Authorization : `Bearer ${ mockToken } ` } ,
123
+ method : 'post' ,
124
+ response : new Response ( null , { status : 500 } ) ,
125
+ url : `https://api.netlify.com/api/v1/purge` ,
126
+ } )
127
+ // eslint-disable-next-line unicorn/consistent-function-scoping
128
+ const myFunction = async ( ) => {
129
+ await purgeCache ( )
130
+ }
131
+
132
+ globalThis . fetch = mockAPI . fetcher
133
+
134
+ try {
135
+ await invokeLambda ( myFunction )
136
+
137
+ throw new Error ( 'Invocation should have failed' )
138
+ } catch ( error ) {
139
+ expect ( ( error as NodeJS . ErrnoException ) . message ) . toBe ( 'Cache purge API call was unsuccessful.\nStatus: 500' )
140
+ }
141
+ } )
142
+
101
143
test ( 'Ignores purgeCache if in local dev with no token or site' , async ( ) => {
102
144
if ( ! hasFetchAPI ) {
103
145
console . warn ( 'Skipping test requires the fetch API' )
0 commit comments