File size: 1,856 Bytes
1e92f2d |
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 |
import { parseDestination } from './prepare-destination'
describe('parseDestination', () => {
it('should parse the destination', () => {
const destination = '/hello/:name'
const params = { name: 'world' }
const query = { foo: 'bar' }
const result = parseDestination({
destination,
params,
query,
})
expect(result).toMatchInlineSnapshot(`
{
"hash": "",
"hostname": undefined,
"href": "/hello/:name",
"pathname": "/hello/:name",
"query": {},
"search": "",
"slashes": undefined,
}
`)
})
it('should parse the destination with a hash', () => {
const destination = 'https://o:foo.com/hello/:name#bar'
const params = { name: 'world' }
const query = { foo: 'bar' }
const result = parseDestination({
destination,
params,
query,
})
expect(result).toMatchInlineSnapshot(`
{
"hash": "#bar",
"hostname": "o:foo.com",
"href": "https://o:foo.com/hello/:name#bar",
"pathname": "/hello/:name",
"port": "",
"protocol": "https:",
"query": {},
"search": "",
"slashes": true,
}
`)
})
it('should parse the destination with a host', () => {
const destination = 'https://o:foo.com/hello/:name?foo=:bar'
const params = { name: 'world' }
const query = { foo: 'bar' }
const result = parseDestination({
destination,
params,
query,
})
expect(result).toMatchInlineSnapshot(`
{
"hash": "",
"hostname": "o:foo.com",
"href": "https://o:foo.com/hello/:name?foo=:bar",
"pathname": "/hello/:name",
"port": "",
"protocol": "https:",
"query": {
"foo": ":bar",
},
"search": "?foo=:bar",
"slashes": true,
}
`)
})
})
|