/* eslint-env jest */ import { matchRemotePattern as m } from 'next/dist/shared/lib/match-remote-pattern' describe('matchRemotePattern with URL', () => { it('should match literal protocol, hostname, no port, no search', () => { const p = new URL('https://example.com/**') expect(m(p, new URL('https://example.com'))).toBe(true) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://com'))).toBe(false) expect(m(p, new URL('https://example.com/path/to/file'))).toBe(true) expect(m(p, new URL('https://example.com/path/to/file?q=1'))).toBe(false) expect(m(p, new URL('http://example.com/path/to/file'))).toBe(false) expect(m(p, new URL('ftp://example.com/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com:81/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com:81/path/to/file?q=1'))).toBe(false) expect(m(p, new URL('http://example.com:81/path/to/file'))).toBe(false) }) it('should match literal protocol, hostname, port 42', () => { const p = new URL('https://example.com:42/**') expect(m(p, new URL('https://example.com:42'))).toBe(true) expect(m(p, new URL('https://example.com.uk:42'))).toBe(false) expect(m(p, new URL('https://sub.example.com:42'))).toBe(false) expect(m(p, new URL('https://com:42'))).toBe(false) expect(m(p, new URL('https://example.com:42/path/to/file'))).toBe(true) expect(m(p, new URL('https://example.com:42/path/to/file?q=1'))).toBe(false) expect(m(p, new URL('http://example.com:42/path/to/file'))).toBe(false) expect(m(p, new URL('ftp://example.com:42/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://com'))).toBe(false) expect(m(p, new URL('https://example.com/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com/path/to/file?q=1'))).toBe(false) expect(m(p, new URL('http://example.com/path/to/file'))).toBe(false) expect(m(p, new URL('ftp://example.com/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com:81'))).toBe(false) expect(m(p, new URL('https://example.com:81/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com:81/path/to/file?q=1'))).toBe(false) }) it('should match literal protocol, hostname, port, pathname', () => { const p = new URL('https://example.com:42/path/to/file') expect(m(p, new URL('https://example.com:42'))).toBe(false) expect(m(p, new URL('https://example.com.uk:42'))).toBe(false) expect(m(p, new URL('https://sub.example.com:42'))).toBe(false) expect(m(p, new URL('https://example.com:42/path'))).toBe(false) expect(m(p, new URL('https://example.com:42/path/to'))).toBe(false) expect(m(p, new URL('https://example.com:42/file'))).toBe(false) expect(m(p, new URL('https://example.com:42/path/to/file'))).toBe(true) expect(m(p, new URL('https://example.com:42/path/to/file?q=1'))).toBe(false) expect(m(p, new URL('http://example.com:42/path/to/file'))).toBe(false) expect(m(p, new URL('ftp://example.com:42/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://example.com/path'))).toBe(false) expect(m(p, new URL('https://example.com/path/to'))).toBe(false) expect(m(p, new URL('https://example.com/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com/path/to/file?q=1'))).toBe(false) expect(m(p, new URL('http://example.com/path/to/file'))).toBe(false) expect(m(p, new URL('ftp://example.com/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com:81/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com:81/path/to/file?q=1'))).toBe(false) }) it('should match literal protocol, hostname, port, pathname, search', () => { const p = new URL( 'https://example.com:42/path/to/file?q=1&a=two&s=!@$^&-_+/()[]{};:~' ) expect(m(p, new URL('https://example.com:42'))).toBe(false) expect(m(p, new URL('https://example.com.uk:42'))).toBe(false) expect(m(p, new URL('https://sub.example.com:42'))).toBe(false) expect(m(p, new URL('https://example.com:42/path'))).toBe(false) expect(m(p, new URL('https://example.com:42/path/to'))).toBe(false) expect(m(p, new URL('https://example.com:42/file'))).toBe(false) expect(m(p, new URL('https://example.com:42/path/to/file'))).toBe(false) expect(m(p, new URL('http://example.com:42/path/to/file'))).toBe(false) expect(m(p, new URL('ftp://example.com:42/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://example.com/path'))).toBe(false) expect(m(p, new URL('https://example.com/path/to'))).toBe(false) expect(m(p, new URL('https://example.com/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com/path/to/file?q=1'))).toBe(false) expect(m(p, new URL('http://example.com/path/to/file'))).toBe(false) expect(m(p, new URL('ftp://example.com/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com:81/path/to/file'))).toBe(false) expect(m(p, new URL('https://example.com:81/path/to/file?q=1'))).toBe(false) expect(m(p, new URL('https://example.com:42/path/to/file?q=1'))).toBe(false) expect(m(p, new URL('https://example.com:42/path/to/file?q=1&a=two'))).toBe( false ) expect( m(p, new URL('https://example.com:42/path/to/file?q=1&a=two&s')) ).toBe(false) expect( m(p, new URL('https://example.com:42/path/to/file?q=1&a=two&s=')) ).toBe(false) expect( m(p, new URL('https://example.com:42/path/to/file?q=1&a=two&s=!@')) ).toBe(false) expect( m( p, new URL( 'https://example.com:42/path/to/file?q=1&a=two&s=!@$^&-_+/()[]{};:~' ) ) ).toBe(true) expect( m( p, new URL( 'https://example.com:42/path/to/file?q=1&s=!@$^&-_+/()[]{};:~&a=two' ) ) ).toBe(false) expect( m( p, new URL( 'https://example.com:42/path/to/file?a=two&q=1&s=!@$^&-_+/()[]{};:~' ) ) ).toBe(false) }) it('should match hostname pattern with single asterisk by itself', () => { const p = new URL('https://avatars.*.example.com') expect(m(p, new URL('https://com'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://sub.example.com.uk'))).toBe(false) expect(m(p, new URL('https://avatars.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.sfo1.example.com'))).toBe(true) expect(m(p, new URL('https://avatars.iad1.example.com'))).toBe(true) expect(m(p, new URL('https://more.avatars.iad1.example.com'))).toBe(false) }) it('should match hostname pattern with single asterisk at beginning', () => { const p = new URL('https://avatars.*1.example.com') expect(m(p, new URL('https://com'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://sub.example.com.uk'))).toBe(false) expect(m(p, new URL('https://avatars.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.sfo1.example.com'))).toBe(true) expect(m(p, new URL('https://avatars.iad1.example.com'))).toBe(true) expect(m(p, new URL('https://more.avatars.iad1.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.sfo2.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.iad2.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.1.example.com'))).toBe(true) }) it('should match hostname pattern with single asterisk in middle', () => { const p = new URL('https://avatars.*a*.example.com') expect(m(p, new URL('https://com'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://sub.example.com.uk'))).toBe(false) expect(m(p, new URL('https://avatars.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.sfo1.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.iad1.example.com'))).toBe(true) expect(m(p, new URL('https://more.avatars.iad1.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.sfo2.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.iad2.example.com'))).toBe(true) expect(m(p, new URL('https://avatars.a.example.com'))).toBe(true) }) it('should match hostname pattern with single asterisk at end', () => { const p = new URL('https://avatars.ia*.example.com') expect(m(p, new URL('https://com'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://sub.example.com.uk'))).toBe(false) expect(m(p, new URL('https://avatars.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.sfo1.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.iad1.example.com'))).toBe(true) expect(m(p, new URL('https://more.avatars.iad1.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.sfo2.example.com'))).toBe(false) expect(m(p, new URL('https://avatars.iad2.example.com'))).toBe(true) expect(m(p, new URL('https://avatars.ia.example.com'))).toBe(true) }) it('should match hostname pattern with double asterisk', () => { const p = new URL('https://**.example.com') expect(m(p, new URL('https://com'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(true) expect(m(p, new URL('https://deep.sub.example.com'))).toBe(true) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://sub.example.com.uk'))).toBe(false) expect(m(p, new URL('https://avatars.example.com'))).toBe(true) expect(m(p, new URL('https://avatars.sfo1.example.com'))).toBe(true) expect(m(p, new URL('https://avatars.iad1.example.com'))).toBe(true) expect(m(p, new URL('https://more.avatars.iad1.example.com'))).toBe(true) }) it('should match pathname pattern with single asterisk by itself', () => { const p = new URL('https://example.com/act123/*/pic.jpg') expect(m(p, new URL('https://com'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://example.com/act123'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4/pic'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4/picsjpg'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/usr5/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/usr6/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/team/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act456/team/pic.jpg'))).toBe(false) expect(m(p, new URL('https://example.com/act123/.a/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/team/usr4/pic.jpg'))).toBe( false ) expect(m(p, new URL('https://example.com/team/pic.jpg'))).toBe(false) }) it('should match pathname pattern with single asterisk at the beginning', () => { const p = new URL('https://example.com/act123/*4/pic.jpg') expect(m(p, new URL('https://com'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://example.com/act123'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4/pic'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4/picsjpg'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/usr5/pic.jpg'))).toBe(false) expect(m(p, new URL('https://example.com/act123/team4/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act456/team5/pic.jpg'))).toBe( false ) expect(m(p, new URL('https://example.com/team/pic.jpg'))).toBe(false) expect(m(p, new URL('https://example.com/act123/4/pic.jpg'))).toBe(true) }) it('should match pathname pattern with single asterisk in the middle', () => { const p = new URL('https://example.com/act123/*sr*/pic.jpg') expect(m(p, new URL('https://com'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://example.com/act123'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4/pic'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4/picsjpg'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/usr5/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/.sr6/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/team4/pic.jpg'))).toBe( false ) expect(m(p, new URL('https://example.com/act123/team5/pic.jpg'))).toBe( false ) expect(m(p, new URL('https://example.com/team/pic.jpg'))).toBe(false) expect(m(p, new URL('https://example.com/act123/sr/pic.jpg'))).toBe(true) }) it('should match pathname pattern with single asterisk at the end', () => { const p = new URL('https://example.com/act123/usr*/pic.jpg') expect(m(p, new URL('https://com'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://example.com/act123'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4/pic'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4/picsjpg'))).toBe(false) expect(m(p, new URL('https://example.com/act123/usr4/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/usr5/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/usr/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/team4/pic.jpg'))).toBe( false ) expect(m(p, new URL('https://example.com/act456/team5/pic.jpg'))).toBe( false ) expect(m(p, new URL('https://example.com/team/pic.jpg'))).toBe(false) expect(m(p, new URL('https://sub.example.com/act123/usr6/pic.jpg'))).toBe( false ) }) it('should match pathname pattern with double asterisk', () => { const p = new URL('https://example.com/act123/**') expect(m(p, new URL('https://com'))).toBe(false) expect(m(p, new URL('https://example.com'))).toBe(false) expect(m(p, new URL('https://sub.example.com'))).toBe(false) expect(m(p, new URL('https://example.com.uk'))).toBe(false) expect(m(p, new URL('https://example.com/act123'))).toBe(true) expect(m(p, new URL('https://example.com/act123/usr4'))).toBe(true) expect(m(p, new URL('https://example.com/act123/usr4/pic'))).toBe(true) expect(m(p, new URL('https://example.com/act123/usr4/picsjpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/usr4/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/usr5/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/usr6/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/team/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/.a/pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act123/team/.pic.jpg'))).toBe(true) expect(m(p, new URL('https://example.com/act456/team/pic.jpg'))).toBe(false) expect(m(p, new URL('https://example.com/team/pic.jpg'))).toBe(false) expect(m(p, new URL('https://sub.example.com/act123/team/pic.jpg'))).toBe( false ) }) })