chromium/third_party/blink/web_tests/external/wpt/service-workers/service-worker/resources/fetch-event-within-sw-worker.js

skipWaiting();

addEventListener('fetch', event => {
  const url = new URL(event.request.url);

  if (url.origin != location.origin) return;

  if (url.pathname.endsWith('/sample.txt')) {
    event.respondWith(new Response('intercepted'));
    return;
  }

  if (url.pathname.endsWith('/sample.txt-inner-fetch')) {
    event.respondWith(fetch('sample.txt'));
    return;
  }

  if (url.pathname.endsWith('/sample.txt-inner-cache')) {
    event.respondWith(
      caches.open('test-inner-cache').then(cache =>
        cache.add('sample.txt').then(() => cache.match('sample.txt'))
      )
    );
    return;
  }

  if (url.pathname.endsWith('/show-notification')) {
    // Copy the currect search string onto the icon url
    const iconURL = new URL('notification_icon.py', location);
    iconURL.search = url.search;

    event.respondWith(
      registration.showNotification('test', {
        icon: iconURL
      }).then(() => registration.getNotifications()).then(notifications => {
        for (const n of notifications) n.close();
        return new Response('done');
      })
    );
    return;
  }

  if (url.pathname.endsWith('/notification_icon.py')) {
    new BroadcastChannel('icon-request').postMessage('yay');
    event.respondWith(new Response('done'));
    return;
  }
});