Spaces:
Running
Running
File size: 45,488 Bytes
c2b7eb3 | 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 | import { createSlice } from '@reduxjs/toolkit'
import type { FetchArgs } from '@reduxjs/toolkit/query'
import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query'
import { headersToObject } from 'headers-polyfill'
import { HttpResponse, delay, http } from 'msw'
import nodeFetch from 'node-fetch'
import queryString from 'query-string'
import { vi } from 'vitest'
import { setupApiStore } from '../../tests/utils/helpers'
import type { BaseQueryApi } from '../baseQueryTypes'
import { server } from './mocks/server'
const defaultHeaders: Record<string, string> = {
fake: 'header',
delete: 'true',
delete2: '1',
}
const baseUrl = 'https://example.com'
const baseQuery = fetchBaseQuery({
baseUrl,
prepareHeaders: (headers, { getState }) => {
const { token } = (getState() as RootState).auth
// If we have a token set in state, let's assume that we should be passing it.
if (token) {
headers.set('authorization', `Bearer ${token}`)
}
// A user could customize their behavior here, so we'll just test that custom scenarios would work.
const potentiallyConflictingKeys = Object.keys(defaultHeaders)
potentiallyConflictingKeys.forEach((key) => {
// Check for presence of a default key, if the incoming endpoint headers don't specify it as '', then set it
const existingValue = headers.get(key)
if (!existingValue && existingValue !== '') {
headers.set(key, String(defaultHeaders[key]))
// If an endpoint sets a header with a value of '', just delete the header.
} else if (headers.get(key) === '') {
headers.delete(key)
}
})
return headers
},
})
const api = createApi({
baseQuery,
endpoints(build) {
return {
query: build.query({ query: () => ({ url: '/echo', headers: {} }) }),
mutation: build.mutation({
query: () => ({ url: '/echo', method: 'POST', credentials: 'omit' }),
}),
}
},
})
const authSlice = createSlice({
name: 'auth',
initialState: {
token: '',
},
reducers: {
setToken(state, action) {
state.token = action.payload
},
},
})
const storeRef = setupApiStore(api, { auth: authSlice.reducer })
type RootState = ReturnType<typeof storeRef.store.getState>
let commonBaseQueryApi: BaseQueryApi = {} as any
beforeEach(() => {
let abortController = new AbortController()
commonBaseQueryApi = {
signal: abortController.signal,
abort: (reason) =>
// @ts-ignore
abortController.abort(reason),
dispatch: storeRef.store.dispatch,
getState: storeRef.store.getState,
extra: undefined,
type: 'query',
endpoint: 'doesntmatterhere',
}
})
describe('fetchBaseQuery', () => {
describe('basic functionality', () => {
it('should return an object for a simple GET request when it is json data', async () => {
const req = baseQuery('/success', commonBaseQueryApi, {})
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.data).toEqual({ value: 'success' })
})
it('should return undefined for a simple GET request when the response is empty', async () => {
const req = baseQuery('/empty', commonBaseQueryApi, {})
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.meta?.request).toBeInstanceOf(Request)
expect(res.meta?.response).toBeInstanceOf(Object)
expect(res.data).toBeNull()
})
it('should return an error and status for error responses', async () => {
const req = baseQuery('/error', commonBaseQueryApi, {})
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.meta?.request).toBeInstanceOf(Request)
expect(res.meta?.response).toBeInstanceOf(Object)
expect(res.error).toEqual({
status: 500,
data: { value: 'error' },
})
})
it('should handle a connection loss semi-gracefully', async () => {
const fetchFn = vi
.fn()
.mockRejectedValueOnce(new TypeError('Failed to fetch'))
const req = fetchBaseQuery({
baseUrl,
fetchFn,
})('/success', commonBaseQueryApi, {})
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.meta?.request).toBeInstanceOf(Request)
expect(res.meta?.response).toBe(undefined)
expect(res.error).toEqual({
status: 'FETCH_ERROR',
error: 'TypeError: Failed to fetch',
})
})
})
describe('non-JSON-body', () => {
it('success: should return data ("text" responseHandler)', async () => {
server.use(
http.get(
'https://example.com/success',
() => HttpResponse.text(`this is not json!`),
{ once: true },
),
)
const req = baseQuery(
{ url: '/success', responseHandler: 'text' },
commonBaseQueryApi,
{},
)
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.meta?.request).toBeInstanceOf(Request)
expect(res.meta?.response).toBeInstanceOf(Object)
expect(res.data).toEqual(`this is not json!`)
})
it('success: should fail gracefully (default="json" responseHandler)', async () => {
server.use(
http.get(
'https://example.com/success',
() => HttpResponse.text(`this is not json!`),
{ once: true },
),
)
const req = baseQuery('/success', commonBaseQueryApi, {})
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.meta?.request).toBeInstanceOf(Request)
expect(res.meta?.response).toBeInstanceOf(Object)
expect(res.error).toEqual({
status: 'PARSING_ERROR',
error: expect.stringMatching(/SyntaxError: Unexpected token/),
originalStatus: 200,
data: `this is not json!`,
})
})
it('success: parse text without error ("content-type" responseHandler)', async () => {
server.use(
http.get(
'https://example.com/success',
() => HttpResponse.text(`this is not json!`),
{ once: true },
),
)
const req = baseQuery(
{
url: '/success',
responseHandler: 'content-type',
},
commonBaseQueryApi,
{},
)
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.meta?.response?.headers.get('content-type')).toEqual(
'text/plain',
)
expect(res.meta?.request).toBeInstanceOf(Request)
expect(res.meta?.response).toBeInstanceOf(Object)
expect(res.data).toEqual(`this is not json!`)
})
it('success: parse json without error ("content-type" responseHandler)', async () => {
server.use(
http.get(
'https://example.com/success',
() => HttpResponse.json(`this will become json!`),
{ once: true },
),
)
const req = baseQuery(
{
url: '/success',
responseHandler: 'content-type',
},
commonBaseQueryApi,
{},
)
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.meta?.response?.headers.get('content-type')).toEqual(
'application/json',
)
expect(res.meta?.request).toBeInstanceOf(Request)
expect(res.meta?.response).toBeInstanceOf(Object)
expect(res.data).toEqual(`this will become json!`)
})
it('server error: should fail normally with a 500 status ("text" responseHandler)', async () => {
server.use(
http.get('https://example.com/error', () =>
HttpResponse.text(`this is not json!`, { status: 500 }),
),
)
const req = baseQuery(
{ url: '/error', responseHandler: 'text' },
commonBaseQueryApi,
{},
)
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.meta?.request).toBeInstanceOf(Request)
expect(res.meta?.response).toBeInstanceOf(Object)
expect(res.error).toEqual({
status: 500,
data: `this is not json!`,
})
})
it('server error: should fail normally with a 500 status as text ("content-type" responseHandler)', async () => {
const serverResponse = 'Internal Server Error'
server.use(
http.get('https://example.com/error', () =>
HttpResponse.text(serverResponse, { status: 500 }),
),
)
const req = baseQuery(
{ url: '/error', responseHandler: 'content-type' },
commonBaseQueryApi,
{},
)
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.meta?.request).toBeInstanceOf(Request)
expect(res.meta?.response).toBeInstanceOf(Object)
expect(res.meta?.response?.headers.get('content-type')).toEqual(
'text/plain',
)
expect(res.error).toEqual({
status: 500,
data: serverResponse,
})
})
it('server error: should fail normally with a 500 status as json ("content-type" responseHandler)', async () => {
const serverResponse = {
errors: { field1: "Password cannot be 'password'" },
}
server.use(
http.get('https://example.com/error', () =>
HttpResponse.json(serverResponse, { status: 500 }),
),
)
const req = baseQuery(
{ url: '/error', responseHandler: 'content-type' },
commonBaseQueryApi,
{},
)
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.meta?.request).toBeInstanceOf(Request)
expect(res.meta?.response).toBeInstanceOf(Object)
expect(res.meta?.response?.headers.get('content-type')).toEqual(
'application/json',
)
expect(res.error).toEqual({
status: 500,
data: serverResponse,
})
})
it('server error: should fail gracefully (default="json" responseHandler)', async () => {
server.use(
http.get('https://example.com/error', () =>
HttpResponse.text(`this is not json!`, { status: 500 }),
),
)
const req = baseQuery('/error', commonBaseQueryApi, {})
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.meta?.request).toBeInstanceOf(Request)
expect(res.meta?.response).toBeInstanceOf(Object)
expect(res.error).toEqual({
status: 'PARSING_ERROR',
error: expect.stringMatching(/SyntaxError: Unexpected token/),
originalStatus: 500,
data: `this is not json!`,
})
})
})
describe('arg.body', () => {
test('an object provided to body will be serialized when content-type is json', async () => {
const data = {
test: 'value',
}
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', body: data, method: 'POST' },
{ ...commonBaseQueryApi, type: 'mutation' },
{},
))
expect(request.headers['content-type']).toBe('application/json')
expect(request.body).toEqual(data)
})
test('an array provided to body will be serialized when content-type is json', async () => {
const data = ['test', 'value']
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', body: data, method: 'POST' },
commonBaseQueryApi,
{},
))
expect(request.headers['content-type']).toBe('application/json')
expect(request.body).toEqual(data)
})
test('an object provided to body will not be serialized when content-type is not json', async () => {
const data = {
test: 'value',
}
let request: any
;({ data: request } = await baseQuery(
{
url: '/echo',
body: data,
method: 'POST',
headers: { 'content-type': 'text/html' },
},
commonBaseQueryApi,
{},
))
expect(request.headers['content-type']).toBe('text/html')
expect(request.body).toEqual('[object Object]')
})
test('an array provided to body will not be serialized when content-type is not json', async () => {
const data = ['test', 'value']
let request: any
;({ data: request } = await baseQuery(
{
url: '/echo',
body: data,
method: 'POST',
headers: { 'content-type': 'text/html' },
},
commonBaseQueryApi,
{},
))
expect(request.headers['content-type']).toBe('text/html')
expect(request.body).toEqual(data.join(','))
})
it('supports a custom jsonContentType', async () => {
const baseQuery = fetchBaseQuery({
baseUrl,
jsonContentType: 'application/vnd.api+json',
})
let request: any
;({ data: request } = await baseQuery(
{
url: '/echo',
body: {},
method: 'POST',
},
commonBaseQueryApi,
{},
))
expect(request.headers['content-type']).toBe('application/vnd.api+json')
})
it('supports a custom jsonReplacer', async () => {
const body = {
items: new Set(['A', 'B', 'C']),
}
let request: any
;({ data: request } = await baseQuery(
{
url: '/echo',
body,
method: 'POST',
},
commonBaseQueryApi,
{},
))
expect(request.headers['content-type']).toBe('application/json')
expect(request.body).toEqual({ items: {} }) // Set is not properly marshalled by default
// Use jsonReplacer
const baseQueryWithReplacer = fetchBaseQuery({
baseUrl,
jsonReplacer: (key, value) =>
value instanceof Set ? [...value] : value,
})
;({ data: request } = await baseQueryWithReplacer(
{
url: '/echo',
body,
method: 'POST',
},
commonBaseQueryApi,
{},
))
expect(request.headers['content-type']).toBe('application/json')
expect(request.body).toEqual({ items: ['A', 'B', 'C'] }) // Set is marshalled correctly by jsonReplacer
})
})
describe('arg.params', () => {
it('should not serialize missing params', async () => {
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo' },
commonBaseQueryApi,
{},
))
expect(request.url).toEqual(`${baseUrl}/echo`)
})
it('should serialize numeric and boolean params', async () => {
const params = { a: 1, b: true }
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', params },
commonBaseQueryApi,
{},
))
expect(request.url).toEqual(`${baseUrl}/echo?a=1&b=true`)
})
it('should merge params into existing url querystring', async () => {
const params = { a: 1, b: true }
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo?banana=pudding', params },
commonBaseQueryApi,
{},
))
expect(request.url).toEqual(`${baseUrl}/echo?banana=pudding&a=1&b=true`)
})
it('should accept a URLSearchParams instance', async () => {
const params = new URLSearchParams({ apple: 'fruit' })
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', params },
commonBaseQueryApi,
{},
))
expect(request.url).toEqual(`${baseUrl}/echo?apple=fruit`)
})
it('should strip undefined values from the end params', async () => {
const params = { apple: 'fruit', banana: undefined, randy: null }
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', params },
commonBaseQueryApi,
{},
))
expect(request.url).toEqual(`${baseUrl}/echo?apple=fruit&randy=null`)
})
it('should support a paramsSerializer', async () => {
const baseQuery = fetchBaseQuery({
baseUrl,
paramsSerializer: (params: Record<string, unknown>) =>
queryString.stringify(params, { arrayFormat: 'bracket' }),
})
const api = createApi({
baseQuery,
endpoints(build) {
return {
query: build.query({
query: () => ({ url: '/echo', headers: {} }),
}),
mutation: build.mutation({
query: () => ({
url: '/echo',
method: 'POST',
credentials: 'omit',
}),
}),
}
},
})
const params = {
someArray: ['a', 'b', 'c'],
}
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', params },
commonBaseQueryApi,
{},
))
expect(request.url).toEqual(
`${baseUrl}/echo?someArray[]=a&someArray[]=b&someArray[]=c`,
)
})
it('should supports a custom isJsonContentType function', async () => {
const testBody = {
i_should_be_stringified: true,
}
const baseQuery = fetchBaseQuery({
baseUrl,
isJsonContentType: (headers) =>
[
'application/vnd.api+json',
'application/json',
'application/vnd.hal+json',
].includes(headers.get('content-type') ?? ''),
})
let request: any
;({ data: request } = await baseQuery(
{
url: '/echo',
method: 'POST',
body: testBody,
headers: { 'content-type': 'application/vnd.hal+json' },
},
commonBaseQueryApi,
{},
))
expect(request.body).toMatchObject(testBody)
})
})
describe('validateStatus', () => {
test('validateStatus can return an error even on normal 200 responses', async () => {
// This is a scenario where an API may always return a 200, but indicates there is an error when success = false
const res = await baseQuery(
{
url: '/nonstandard-error',
validateStatus: (response, body) =>
response.status === 200 && body.success === false ? false : true,
},
commonBaseQueryApi,
{},
)
expect(res.error).toEqual({
status: 200,
data: {
success: false,
message: 'This returns a 200 but is really an error',
},
})
})
})
describe('arg.headers and prepareHeaders', () => {
test('uses the default headers set in prepareHeaders', async () => {
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo' },
commonBaseQueryApi,
{},
))
expect(request.headers['fake']).toBe(defaultHeaders['fake'])
expect(request.headers['delete']).toBe(defaultHeaders['delete'])
expect(request.headers['delete2']).toBe(defaultHeaders['delete2'])
})
test('adds endpoint-level headers to the defaults', async () => {
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', headers: { authorization: 'Bearer banana' } },
commonBaseQueryApi,
{},
))
expect(request.headers['authorization']).toBe('Bearer banana')
expect(request.headers['fake']).toBe(defaultHeaders['fake'])
expect(request.headers['delete']).toBe(defaultHeaders['delete'])
expect(request.headers['delete2']).toBe(defaultHeaders['delete2'])
})
test('it does not set application/json when content-type is set', async () => {
let request: any
;({ data: request } = await baseQuery(
{
url: '/echo',
headers: {
authorization: 'Bearer banana',
'content-type': 'custom-content-type',
},
},
commonBaseQueryApi,
{},
))
expect(request.headers['authorization']).toBe('Bearer banana')
expect(request.headers['content-type']).toBe('custom-content-type')
expect(request.headers['fake']).toBe(defaultHeaders['fake'])
expect(request.headers['delete']).toBe(defaultHeaders['delete'])
expect(request.headers['delete2']).toBe(defaultHeaders['delete2'])
})
test('respects the headers from an endpoint over the base headers', async () => {
const fake = 'fake endpoint value'
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', headers: { fake, delete: '', delete2: '' } },
commonBaseQueryApi,
{},
))
expect(request.headers['fake']).toBe(fake)
expect(request.headers['delete']).toBeUndefined()
expect(request.headers['delete2']).toBeUndefined()
})
test('prepareHeaders can return undefined', async () => {
let request: any
const token = 'accessToken'
const _baseQuery = fetchBaseQuery({
baseUrl,
prepareHeaders: (headers) => {
headers.set('authorization', `Bearer ${token}`)
},
})
const doRequest = async () =>
_baseQuery({ url: '/echo' }, commonBaseQueryApi, {})
;({ data: request } = await doRequest())
expect(request.headers['authorization']).toBe(`Bearer ${token}`)
})
test('prepareHeaders is able to be an async function', async () => {
let request: any
const token = 'accessToken'
const getAccessTokenAsync = async () => token
const _baseQuery = fetchBaseQuery({
baseUrl,
prepareHeaders: async (headers) => {
headers.set('authorization', `Bearer ${await getAccessTokenAsync()}`)
return headers
},
})
const doRequest = async () =>
_baseQuery({ url: '/echo' }, commonBaseQueryApi, {})
;({ data: request } = await doRequest())
expect(request.headers['authorization']).toBe(`Bearer ${token}`)
})
test('prepareHeaders is able to be an async function returning undefined', async () => {
let request: any
const token = 'accessToken'
const getAccessTokenAsync = async () => token
const _baseQuery = fetchBaseQuery({
baseUrl,
prepareHeaders: async (headers) => {
headers.set('authorization', `Bearer ${await getAccessTokenAsync()}`)
},
})
const doRequest = async () =>
_baseQuery({ url: '/echo' }, commonBaseQueryApi, {})
;({ data: request } = await doRequest())
expect(request.headers['authorization']).toBe(`Bearer ${token}`)
})
test('prepareHeaders is able to select from a state', async () => {
let request: any
const doRequest = async () => {
const abortController = new AbortController()
return baseQuery(
{ url: '/echo' },
{
signal: abortController.signal,
abort: (reason) =>
// @ts-ignore
abortController.abort(reason),
dispatch: storeRef.store.dispatch,
getState: storeRef.store.getState,
extra: undefined,
type: 'query',
endpoint: '',
},
{},
)
}
;({ data: request } = await doRequest())
expect(request.headers['authorization']).toBeUndefined()
// Set a token and the follow up request should have the header injected by prepareHeaders
const token = 'fakeToken!'
storeRef.store.dispatch(authSlice.actions.setToken(token))
;({ data: request } = await doRequest())
expect(request.headers['authorization']).toBe(`Bearer ${token}`)
})
test('prepareHeaders provides extra api information for getState, extra, endpoint, type and forced', async () => {
let _getState, _arg: any, _extra, _endpoint, _type, _forced
const baseQuery = fetchBaseQuery({
baseUrl,
prepareHeaders: (
headers,
{ getState, arg, extra, endpoint, type, forced },
) => {
_getState = getState
_arg = arg
_endpoint = endpoint
_type = type
_forced = forced
_extra = extra
return headers
},
})
const fakeAuth0Client = {
getTokenSilently: async () => 'fakeToken',
}
const doRequest = async () => {
const abortController = new AbortController()
return baseQuery(
{ url: '/echo' },
{
signal: abortController.signal,
abort: (reason) =>
// @ts-ignore
abortController.abort(reason),
dispatch: storeRef.store.dispatch,
getState: storeRef.store.getState,
extra: fakeAuth0Client,
type: 'query',
forced: true,
endpoint: 'someEndpointName',
},
{},
)
}
await doRequest()
expect(_getState).toBeDefined()
expect(_arg!.url).toBe('/echo')
expect(_endpoint).toBe('someEndpointName')
expect(_type).toBe('query')
expect(_forced).toBe(true)
expect(_extra).toBe(fakeAuth0Client)
})
test('can be instantiated with a `ExtraOptions` generic and `extraOptions` will be available in `prepareHeaders', async () => {
const prepare = vitest.fn()
const baseQuery = fetchBaseQuery({
prepareHeaders(headers, api) {
expectTypeOf(api.extraOptions).toEqualTypeOf<unknown>()
prepare.apply(undefined, arguments as unknown as any[])
},
})
baseQuery('https://example.com', commonBaseQueryApi, {
foo: 'baz',
bar: 5,
})
expect(prepare).toHaveBeenCalledWith(
expect.anything(),
expect.objectContaining({ extraOptions: { foo: 'baz', bar: 5 } }),
)
// ensure types
createApi({
baseQuery,
endpoints(build) {
return {
testQuery: build.query({
query: () => ({ url: '/echo', headers: {} }),
extraOptions: {
foo: 'asd',
bar: 1,
},
}),
testMutation: build.mutation({
query: () => ({
url: '/echo',
method: 'POST',
credentials: 'omit',
}),
extraOptions: {
foo: 'qwe',
bar: 15,
},
}),
}
},
})
})
})
test('can pass `headers` into `fetchBaseQuery`', async () => {
let request: any
const token = 'accessToken'
const _baseQuery = fetchBaseQuery({
baseUrl,
headers: { authorization: `Bearer ${token}` },
})
const doRequest = async () =>
_baseQuery({ url: '/echo' }, commonBaseQueryApi, {})
;({ data: request } = await doRequest())
expect(request.headers['authorization']).toBe(`Bearer ${token}`)
})
test('lets a header be undefined', async () => {
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', headers: undefined },
commonBaseQueryApi,
{},
))
expect(request.headers['fake']).toBe(defaultHeaders['fake'])
expect(request.headers['delete']).toBe(defaultHeaders['delete'])
expect(request.headers['delete2']).toBe(defaultHeaders['delete2'])
})
test('allows for possibly undefined header key/values', async () => {
const banana = '1' as '1' | undefined
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', headers: { banana } },
commonBaseQueryApi,
{},
))
expect(request.headers['banana']).toBe('1')
expect(request.headers['fake']).toBe(defaultHeaders['fake'])
expect(request.headers['delete']).toBe(defaultHeaders['delete'])
expect(request.headers['delete2']).toBe(defaultHeaders['delete2'])
})
test('strips undefined values from the headers', async () => {
const banana = undefined as '1' | undefined
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', headers: { banana } },
commonBaseQueryApi,
{},
))
expect(request.headers['banana']).toBeUndefined()
expect(request.headers['fake']).toBe(defaultHeaders['fake'])
expect(request.headers['delete']).toBe(defaultHeaders['delete'])
expect(request.headers['delete2']).toBe(defaultHeaders['delete2'])
})
describe('Accepts global arguments', () => {
test('Global responseHandler', async () => {
server.use(
http.get(
'https://example.com/success',
() => HttpResponse.text(`this is not json!`),
{ once: true },
),
)
const globalizedBaseQuery = fetchBaseQuery({
baseUrl,
responseHandler: 'text',
})
const req = globalizedBaseQuery(
{ url: '/success' },
commonBaseQueryApi,
{},
)
expect(req).toBeInstanceOf(Promise)
const res = await req
expect(res).toBeInstanceOf(Object)
expect(res.meta?.request).toBeInstanceOf(Request)
expect(res.meta?.response).toBeInstanceOf(Object)
expect(res.error).toBeUndefined()
expect(res.data).toEqual(`this is not json!`)
})
test('Global responseHandler: content-type with text response', async () => {
server.use(
http.get(
'https://example.com/success',
() => HttpResponse.text(`this is plain text!`),
{ once: true },
),
)
const globalizedBaseQuery = fetchBaseQuery({
baseUrl,
responseHandler: 'content-type',
})
const res = await globalizedBaseQuery(
{ url: '/success' },
commonBaseQueryApi,
{},
)
expect(res.error).toBeUndefined()
expect(res.data).toEqual(`this is plain text!`)
expect(res.meta?.response?.headers.get('content-type')).toEqual(
'text/plain',
)
})
test('Global responseHandler: content-type with JSON response', async () => {
server.use(
http.get(
'https://example.com/success',
() => HttpResponse.json({ message: 'this is json!' }),
{ once: true },
),
)
const globalizedBaseQuery = fetchBaseQuery({
baseUrl,
responseHandler: 'content-type',
})
const res = await globalizedBaseQuery(
{ url: '/success' },
commonBaseQueryApi,
{},
)
expect(res.error).toBeUndefined()
expect(res.data).toEqual({ message: 'this is json!' })
expect(res.meta?.response?.headers.get('content-type')).toEqual(
'application/json',
)
})
test('Global responseHandler: content-type can be overridden at endpoint level', async () => {
server.use(
http.get(
'https://example.com/success',
() => HttpResponse.text(`this is text but will be parsed as json`),
{ once: true },
),
)
const globalizedBaseQuery = fetchBaseQuery({
baseUrl,
responseHandler: 'content-type',
})
// Override global content-type handler with explicit text handler
const res = await globalizedBaseQuery(
{ url: '/success', responseHandler: 'text' },
commonBaseQueryApi,
{},
)
expect(res.error).toBeUndefined()
expect(res.data).toEqual(`this is text but will be parsed as json`)
})
test('Global responseHandler: content-type with error response (text)', async () => {
const errorMessage = 'Internal Server Error'
server.use(
http.get('https://example.com/error', () =>
HttpResponse.text(errorMessage, { status: 500 }),
),
)
const globalizedBaseQuery = fetchBaseQuery({
baseUrl,
responseHandler: 'content-type',
})
const res = await globalizedBaseQuery(
{ url: '/error' },
commonBaseQueryApi,
{},
)
expect(res.error).toEqual({
status: 500,
data: errorMessage,
})
expect(res.meta?.response?.headers.get('content-type')).toEqual(
'text/plain',
)
})
test('Global responseHandler: content-type with error response (JSON)', async () => {
const errorData = { error: 'Something went wrong', code: 'ERR_500' }
server.use(
http.get('https://example.com/error', () =>
HttpResponse.json(errorData, { status: 500 }),
),
)
const globalizedBaseQuery = fetchBaseQuery({
baseUrl,
responseHandler: 'content-type',
})
const res = await globalizedBaseQuery(
{ url: '/error' },
commonBaseQueryApi,
{},
)
expect(res.error).toEqual({
status: 500,
data: errorData,
})
expect(res.meta?.response?.headers.get('content-type')).toEqual(
'application/json',
)
})
test('Global validateStatus', async () => {
const globalizedBaseQuery = fetchBaseQuery({
baseUrl,
validateStatus: (response, body) =>
response.status === 200 && body.success === false ? false : true,
})
// This is a scenario where an API may always return a 200, but indicates there is an error when success = false
const res = await globalizedBaseQuery(
{
url: '/nonstandard-error',
},
commonBaseQueryApi,
{},
)
expect(res.error).toEqual({
status: 200,
data: {
success: false,
message: 'This returns a 200 but is really an error',
},
})
})
test('Global timeout', async () => {
server.use(
http.get(
'https://example.com/empty1',
async ({ request, cookies, params, requestId }) => {
await delay(300)
return HttpResponse.json({
...request,
cookies,
params,
requestId,
url: new URL(request.url),
headers: headersToObject(request.headers),
})
},
{ once: true },
),
)
const globalizedBaseQuery = fetchBaseQuery({
baseUrl,
timeout: 200,
})
const result = await globalizedBaseQuery(
{ url: '/empty1' },
commonBaseQueryApi,
{},
)
expect(result?.error).toEqual({
status: 'TIMEOUT_ERROR',
error: expect.stringMatching(/^TimeoutError/),
})
})
})
})
describe('fetchFn', () => {
test('accepts a custom fetchFn', async () => {
const baseUrl = 'https://example.com'
const params = new URLSearchParams({ apple: 'fruit' })
const baseQuery = fetchBaseQuery({
baseUrl,
fetchFn: nodeFetch as any,
})
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', params },
commonBaseQueryApi,
{},
))
expect(request.url).toEqual(`${baseUrl}/echo?apple=fruit`)
})
test('respects mocking window.fetch after a fetch base query is created', async () => {
const baseUrl = 'https://example.com'
const baseQuery = fetchBaseQuery({ baseUrl })
const fakeResponse = {
ok: true,
status: 200,
text: async () => `{ "url": "mock-return-url" }`,
clone: () => fakeResponse,
}
const spiedFetch = vi.spyOn(window, 'fetch')
spiedFetch.mockResolvedValueOnce(fakeResponse as any)
const { data } = await baseQuery({ url: '/echo' }, commonBaseQueryApi, {})
expect(data).toEqual({ url: 'mock-return-url' })
spiedFetch.mockClear()
})
})
describe('FormData', () => {
test('sets the right headers when sending FormData', async () => {
const body = new FormData()
body.append('username', 'test')
body.append(
'file',
new Blob([JSON.stringify({ hello: 'there' }, null, 2)], {
type: 'application/json',
}),
)
const res = await baseQuery(
{ url: '/echo', method: 'POST', body },
commonBaseQueryApi,
{},
)
const request: any = res.data
expect(request.headers['content-type']).not.toContain('application/json')
})
test('FormData works correctly when prepareHeaders sets Content-Type to application/json', async () => {
// This test covers the exact scenario from issue #4669
const baseQueryWithJsonDefault = fetchBaseQuery({
baseUrl,
prepareHeaders: (headers) => {
// Set default Content-Type for all requests
headers.set('Content-Type', 'application/json')
return headers
},
})
const body = new FormData()
body.append('username', 'test')
body.append(
'file',
new Blob([JSON.stringify({ hello: 'there' }, null, 2)], {
type: 'application/json',
}),
)
const res = await baseQueryWithJsonDefault(
{ url: '/echo', method: 'POST', body },
commonBaseQueryApi,
{},
)
const request: any = res.data
// The Content-Type should NOT be application/json when FormData is used
expect(request.headers['content-type']).not.toContain('application/json')
// It should contain multipart/form-data (set automatically by the browser)
expect(request.headers['content-type']).toContain('multipart/form-data')
})
test('FormData works when prepareHeaders conditionally removes Content-Type', async () => {
// This tests the workaround solution from the issue comments
const baseQueryWithConditionalHeader = fetchBaseQuery({
baseUrl,
prepareHeaders: (headers, { arg }) => {
// Check if body is FormData and skip setting Content-Type
if ((arg as FetchArgs).body instanceof FormData) {
// Delete Content-Type to let browser set it automatically
headers.delete('Content-Type')
} else {
// Set default Content-Type for non-FormData requests
headers.set('Content-Type', 'application/json')
}
return headers
},
})
const body = new FormData()
body.append('username', 'test')
body.append('file', new Blob(['test content'], { type: 'text/plain' }))
const res = await baseQueryWithConditionalHeader(
{ url: '/echo', method: 'POST', body },
commonBaseQueryApi,
{},
)
const request: any = res.data
// Should have multipart/form-data set by browser
expect(request.headers['content-type']).toContain('multipart/form-data')
expect(request.headers['content-type']).not.toContain('application/json')
})
test('endpoint-level headers cannot override to multipart/form-data manually', async () => {
// This tests the fetch API quirk mentioned in the issue
const baseQueryWithJsonDefault = fetchBaseQuery({
baseUrl,
prepareHeaders: (headers) => {
headers.set('Content-Type', 'application/json')
return headers
},
})
const body = new FormData()
body.append('test', 'value')
const res = await baseQueryWithJsonDefault(
{
url: '/echo',
method: 'POST',
body,
// Attempting to manually set multipart/form-data (this won't work as expected)
headers: { 'Content-Type': 'multipart/form-data' },
},
commonBaseQueryApi,
{},
)
const request: any = res.data
// Due to prepareHeaders running after endpoint headers,
// and the fetch API not allowing manual multipart/form-data setting,
// this demonstrates the problem from the issue
// The actual behavior depends on fetchBaseQuery implementation
expect(request.headers['content-type']).toBeDefined()
})
test('non-FormData requests still get application/json from prepareHeaders', async () => {
// Verify that the workaround doesn't break normal JSON requests
const baseQueryWithConditionalHeader = fetchBaseQuery({
baseUrl,
prepareHeaders: (headers, { arg }) => {
if (!((arg as FetchArgs).body instanceof FormData)) {
headers.set('Content-Type', 'application/json')
}
return headers
},
})
const jsonBody = { test: 'value' }
const res = await baseQueryWithConditionalHeader(
{ url: '/echo', method: 'POST', body: jsonBody },
commonBaseQueryApi,
{},
)
const request: any = res.data
// Regular JSON requests should still get application/json
expect(request.headers['content-type']).toBe('application/json')
expect(request.body).toEqual(jsonBody)
})
})
describe('Accept header handling', () => {
test('sets Accept header to application/json for json responseHandler', async () => {
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', responseHandler: 'json' },
commonBaseQueryApi,
{},
))
expect(request.headers['accept']).toBe('application/json')
})
test('sets Accept header to application/json by default (json is default responseHandler)', async () => {
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo' },
commonBaseQueryApi,
{},
))
expect(request.headers['accept']).toBe('application/json')
})
test('sets Accept header for text responseHandler', async () => {
// Create a baseQuery with text as the global responseHandler
const textBaseQuery = fetchBaseQuery({
baseUrl,
responseHandler: 'text',
})
let request: any
// Override to json just for this test so we can inspect the echoed request object
;({ data: request } = await textBaseQuery(
{ url: '/echo', responseHandler: 'json' },
commonBaseQueryApi,
{},
))
// The endpoint-level 'json' responseHandler overrides the global 'text',
// so the Accept header should be application/json
expect(request.headers['accept']).toBe('application/json')
})
test('does not override explicit Accept header from endpoint', async () => {
let request: any
;({ data: request } = await baseQuery(
{
url: '/echo',
responseHandler: 'json',
headers: { Accept: 'application/xml' },
},
commonBaseQueryApi,
{},
))
expect(request.headers['accept']).toBe('application/xml')
})
test('does not override Accept header set in prepareHeaders', async () => {
const customBaseQuery = fetchBaseQuery({
baseUrl,
prepareHeaders: (headers) => {
headers.set('Accept', 'application/vnd.api+json')
return headers
},
})
let request: any
;({ data: request } = await customBaseQuery(
{ url: '/echo', responseHandler: 'json' },
commonBaseQueryApi,
{},
))
expect(request.headers['accept']).toBe('application/vnd.api+json')
})
test('does not set Accept header for content-type responseHandler', async () => {
let request: any
;({ data: request } = await baseQuery(
{ url: '/echo', responseHandler: 'content-type' },
commonBaseQueryApi,
{},
))
// Should either not have accept header or have a permissive one
// content-type handler adapts to whatever server sends
const acceptHeader = request.headers['accept']
if (acceptHeader) {
expect(acceptHeader).toMatch(/\*\/\*/)
}
})
test('respects global responseHandler for Accept header', async () => {
const textBaseQuery = fetchBaseQuery({
baseUrl,
responseHandler: 'text',
})
let request: any
// Override to json just for this test so we can inspect the echoed request object
;({ data: request } = await textBaseQuery(
{ url: '/echo', responseHandler: 'json' },
commonBaseQueryApi,
{},
))
// The endpoint-level 'json' responseHandler overrides the global 'text',
// so the Accept header should be application/json (proving endpoint-level takes precedence)
expect(request.headers['accept']).toBe('application/json')
})
})
describe('still throws on completely unexpected errors', () => {
test('', async () => {
const error = new Error('some unexpected error')
const req = baseQuery(
{
url: '/success',
validateStatus() {
throw error
},
},
commonBaseQueryApi,
{},
)
expect(req).toBeInstanceOf(Promise)
await expect(req).rejects.toBe(error)
})
})
describe('timeout', () => {
test('throws a timeout error when a request takes longer than specified timeout duration', async () => {
server.use(
http.get(
'https://example.com/empty2',
async ({ request, cookies, params, requestId }) => {
await delay(300)
return HttpResponse.json({
...request,
url: new URL(request.url),
cookies,
params,
requestId,
headers: headersToObject(request.headers),
})
},
{ once: true },
),
)
const result = await baseQuery(
{ url: '/empty2', timeout: 200 },
commonBaseQueryApi,
{},
)
expect(result?.error).toEqual({
status: 'TIMEOUT_ERROR',
error: expect.stringMatching(/^TimeoutError/),
})
})
})
|