Skip to content

Commit

Permalink
DSEGOG-341 Initial migration to MSW v2
Browse files Browse the repository at this point in the history
  • Loading branch information
joelvdavies committed Aug 12, 2024
1 parent 00acd12 commit acb5a81
Show file tree
Hide file tree
Showing 17 changed files with 556 additions and 769 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"jest-canvas-mock": "2.5.0",
"jest-fail-on-console": "3.3.0",
"lint-staged": "15.2.0",
"msw": "1.3.2",
"msw": "2.3.5",
"prettier": "3.3.3",
"serve": "14.2.0",
"serve-static": "1.15.0",
Expand Down
181 changes: 81 additions & 100 deletions public/mockServiceWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
/* tslint:disable */

/**
* Mock Service Worker (1.3.2).
* Mock Service Worker.
* @see https://github.com/mswjs/msw
* - Please do NOT modify this file.
* - Please do NOT serve this file on production.
*/

const INTEGRITY_CHECKSUM = '3d6b9f06410d179a7f7404d4bf4c3c70'
const PACKAGE_VERSION = '2.3.5'
const INTEGRITY_CHECKSUM = '26357c79639bfa20d64c0efca2a87423'
const IS_MOCKED_RESPONSE = Symbol('isMockedResponse')
const activeClientIds = new Set()

self.addEventListener('install', function () {
Expand Down Expand Up @@ -47,7 +49,10 @@ self.addEventListener('message', async function (event) {
case 'INTEGRITY_CHECK_REQUEST': {
sendToClient(client, {
type: 'INTEGRITY_CHECK_RESPONSE',
payload: INTEGRITY_CHECKSUM,
payload: {
packageVersion: PACKAGE_VERSION,
checksum: INTEGRITY_CHECKSUM,
},
})
break
}
Expand Down Expand Up @@ -86,12 +91,6 @@ self.addEventListener('message', async function (event) {

self.addEventListener('fetch', function (event) {
const { request } = event
const accept = request.headers.get('accept') || ''

// Bypass server-sent events.
if (accept.includes('text/event-stream')) {
return
}

// Bypass navigation requests.
if (request.mode === 'navigate') {
Expand All @@ -112,29 +111,8 @@ self.addEventListener('fetch', function (event) {
}

// Generate unique request ID.
const requestId = Math.random().toString(16).slice(2)

event.respondWith(
handleRequest(event, requestId).catch((error) => {
if (error.name === 'NetworkError') {
console.warn(
'[MSW] Successfully emulated a network error for the "%s %s" request.',
request.method,
request.url,
)
return
}

// At this point, any exception indicates an issue with the original request/response.
console.error(
`\
[MSW] Caught an exception from the "%s %s" request (%s). This is probably not a problem with Mock Service Worker. There is likely an additional logging output above.`,
request.method,
request.url,
`${error.name}: ${error.message}`,
)
}),
)
const requestId = crypto.randomUUID()
event.respondWith(handleRequest(event, requestId))
})

async function handleRequest(event, requestId) {
Expand All @@ -146,21 +124,24 @@ async function handleRequest(event, requestId) {
// this message will pend indefinitely.
if (client && activeClientIds.has(client.id)) {
;(async function () {
const clonedResponse = response.clone()
sendToClient(client, {
type: 'RESPONSE',
payload: {
requestId,
type: clonedResponse.type,
ok: clonedResponse.ok,
status: clonedResponse.status,
statusText: clonedResponse.statusText,
body:
clonedResponse.body === null ? null : await clonedResponse.text(),
headers: Object.fromEntries(clonedResponse.headers.entries()),
redirected: clonedResponse.redirected,
const responseClone = response.clone()

sendToClient(
client,
{
type: 'RESPONSE',
payload: {
requestId,
isMockedResponse: IS_MOCKED_RESPONSE in response,
type: responseClone.type,
status: responseClone.status,
statusText: responseClone.statusText,
body: responseClone.body,
headers: Object.fromEntries(responseClone.headers.entries()),
},
},
})
[responseClone.body],
)
})()
}

Expand Down Expand Up @@ -196,20 +177,20 @@ async function resolveMainClient(event) {

async function getResponse(event, client, requestId) {
const { request } = event
const clonedRequest = request.clone()

// Clone the request because it might've been already used
// (i.e. its body has been read and sent to the client).
const requestClone = request.clone()

function passthrough() {
// Clone the request because it might've been already used
// (i.e. its body has been read and sent to the client).
const headers = Object.fromEntries(clonedRequest.headers.entries())
const headers = Object.fromEntries(requestClone.headers.entries())

// Remove MSW-specific request headers so the bypassed requests
// comply with the server's CORS preflight check.
// Operate with the headers as an object because request "Headers"
// are immutable.
delete headers['x-msw-bypass']
// Remove internal MSW request header so the passthrough request
// complies with any potential CORS preflight checks on the server.
// Some servers forbid unknown request headers.
delete headers['x-msw-intention']

return fetch(clonedRequest, { headers })
return fetch(requestClone, { headers })
}

// Bypass mocking when the client is not active.
Expand All @@ -225,57 +206,46 @@ async function getResponse(event, client, requestId) {
return passthrough()
}

// Bypass requests with the explicit bypass header.
// Such requests can be issued by "ctx.fetch()".
if (request.headers.get('x-msw-bypass') === 'true') {
return passthrough()
}

// Notify the client that a request has been intercepted.
const clientMessage = await sendToClient(client, {
type: 'REQUEST',
payload: {
id: requestId,
url: request.url,
method: request.method,
headers: Object.fromEntries(request.headers.entries()),
cache: request.cache,
mode: request.mode,
credentials: request.credentials,
destination: request.destination,
integrity: request.integrity,
redirect: request.redirect,
referrer: request.referrer,
referrerPolicy: request.referrerPolicy,
body: await request.text(),
bodyUsed: request.bodyUsed,
keepalive: request.keepalive,
const requestBuffer = await request.arrayBuffer()
const clientMessage = await sendToClient(
client,
{
type: 'REQUEST',
payload: {
id: requestId,
url: request.url,
mode: request.mode,
method: request.method,
headers: Object.fromEntries(request.headers.entries()),
cache: request.cache,
credentials: request.credentials,
destination: request.destination,
integrity: request.integrity,
redirect: request.redirect,
referrer: request.referrer,
referrerPolicy: request.referrerPolicy,
body: requestBuffer,
keepalive: request.keepalive,
},
},
})
[requestBuffer],
)

switch (clientMessage.type) {
case 'MOCK_RESPONSE': {
return respondWithMock(clientMessage.data)
}

case 'MOCK_NOT_FOUND': {
case 'PASSTHROUGH': {
return passthrough()
}

case 'NETWORK_ERROR': {
const { name, message } = clientMessage.data
const networkError = new Error(message)
networkError.name = name

// Rejecting a "respondWith" promise emulates a network error.
throw networkError
}
}

return passthrough()
}

function sendToClient(client, message) {
function sendToClient(client, message, transferrables = []) {
return new Promise((resolve, reject) => {
const channel = new MessageChannel()

Expand All @@ -287,17 +257,28 @@ function sendToClient(client, message) {
resolve(event.data)
}

client.postMessage(message, [channel.port2])
client.postMessage(
message,
[channel.port2].concat(transferrables.filter(Boolean)),
)
})
}

function sleep(timeMs) {
return new Promise((resolve) => {
setTimeout(resolve, timeMs)
async function respondWithMock(response) {
// Setting response status code to 0 is a no-op.
// However, when responding with a "Response.error()", the produced Response
// instance will have status code set to 0. Since it's not possible to create
// a Response instance with status code 0, handle that use-case separately.
if (response.status === 0) {
return Response.error()
}

const mockedResponse = new Response(response.body, response)

Reflect.defineProperty(mockedResponse, IS_MOCKED_RESPONSE, {
value: true,
enumerable: true,
})
}

async function respondWithMock(response) {
await sleep(response.delay)
return new Response(response.body, response)
return mockedResponse
}
6 changes: 3 additions & 3 deletions src/api/channels.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
} from '../setupTests';
import { RootState } from '../state/store';
import { server } from '../mocks/server';
import { rest } from 'msw';
import { http } from 'msw';

describe('channels api functions', () => {
afterEach(() => {
Expand Down Expand Up @@ -77,7 +77,7 @@ describe('channels api functions', () => {

it('returns no columns if no data was present in the request response', async () => {
server.use(
rest.get('/channels', (req, res, ctx) => {
http.get('/channels', (req, res, ctx) => {
return res(ctx.status(200), ctx.json({ channels: {} }));
})
);
Expand Down Expand Up @@ -168,7 +168,7 @@ describe('channels api functions', () => {

it('returns no channels if no data was present in the request response', async () => {
server.use(
rest.get('/channels', (req, res, ctx) => {
http.get('/channels', (req, res, ctx) => {
return res(ctx.status(200), ctx.json({ channels: {} }));
})
);
Expand Down
10 changes: 5 additions & 5 deletions src/filtering/filterDialogue.component.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { RootState } from '../state/store';
import { operators, Token } from './filterParser';
import { QueryClient } from '@tanstack/react-query';
import { server } from '../mocks/server';
import { rest } from 'msw';
import { http } from 'msw';
import recordsJson from '../mocks/records.json';

describe('Filter dialogue component', () => {
Expand Down Expand Up @@ -249,7 +249,7 @@ describe('Filter dialogue component', () => {
it('displays a warning tooltip if record count is over record limit warning and only initiates search on second click', async () => {
// Mock the returned count query response
server.use(
rest.get('/records/count', (req, res, ctx) => {
http.get('/records/count', (req, res, ctx) => {
return res(ctx.status(200), ctx.json(31));
})
);
Expand Down Expand Up @@ -329,7 +329,7 @@ describe('Filter dialogue component', () => {

// Mock the returned count query response
server.use(
rest.get('/records/count', (req, res, ctx) => {
http.get('/records/count', (req, res, ctx) => {
return res(ctx.status(200), ctx.json(31));
})
);
Expand All @@ -352,7 +352,7 @@ describe('Filter dialogue component', () => {
it('does not show a warning tooltip if record count is over record limit warning but max shots is below record limit warning', async () => {
// Mock the returned count query response
server.use(
rest.get('/records/count', (req, res, ctx) => {
http.get('/records/count', (req, res, ctx) => {
return res(ctx.status(200), ctx.json(100));
})
);
Expand Down Expand Up @@ -389,7 +389,7 @@ describe('Filter dialogue component', () => {
it('does not show a warning tooltip for previous searches that already showed it', async () => {
// Mock the returned count query response
server.use(
rest.get('/records/count', (req, res, ctx) => {
http.get('/records/count', (req, res, ctx) => {
return res(ctx.status(200), ctx.json(31));
})
);
Expand Down
4 changes: 2 additions & 2 deletions src/images/imageWindow.component.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { screen, waitForElementToBeRemoved } from '@testing-library/react';
import ImageWindow from './imageWindow.component';
import userEvent from '@testing-library/user-event';
import { renderComponentWithProviders } from '../setupTests';
import { rest } from 'msw';
import { http } from 'msw';
import { server } from '../mocks/server';
import { TraceOrImageWindow } from '../state/slices/windowSlice';
import { DEFAULT_WINDOW_VARS } from '../app.types';
Expand Down Expand Up @@ -60,7 +60,7 @@ describe('Image Window component', () => {
// taken from https://github.com/mswjs/msw/issues/778 - a way of mocking pending promises without breaking jest
return new Promise(() => undefined);
};
server.use(rest.get('/images', loadingHandler));
server.use(http.get('/images', loadingHandler));

createView();
screen.getByLabelText('Image loading');
Expand Down
Loading

0 comments on commit acb5a81

Please sign in to comment.