mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b2ac528156
Differential Revision: D39536169 fbshipit-source-id: 6c8d6787328eefecd23f3498b14a6d9ff750a670
45 lines
1.7 KiB
JavaScript
45 lines
1.7 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @oncall react_native
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const URL = require('../URL').URL;
|
|
|
|
describe('URL', function () {
|
|
it('should pass Mozilla Dev Network examples', () => {
|
|
const a = new URL('/', 'https://developer.mozilla.org');
|
|
expect(a.href).toBe('https://developer.mozilla.org/');
|
|
const b = new URL('https://developer.mozilla.org');
|
|
expect(b.href).toBe('https://developer.mozilla.org/');
|
|
const c = new URL('en-US/docs', b);
|
|
expect(c.href).toBe('https://developer.mozilla.org/en-US/docs');
|
|
const d = new URL('/en-US/docs', b);
|
|
expect(d.href).toBe('https://developer.mozilla.org/en-US/docs');
|
|
const f = new URL('/en-US/docs', d);
|
|
expect(f.href).toBe('https://developer.mozilla.org/en-US/docs');
|
|
// from original test suite, but requires complex implementation
|
|
// const g = new URL(
|
|
// '/en-US/docs',
|
|
// 'https://developer.mozilla.org/fr-FR/toto',
|
|
// );
|
|
// expect(g.href).toBe('https://developer.mozilla.org/en-US/docs');
|
|
const h = new URL('/en-US/docs', a);
|
|
expect(h.href).toBe('https://developer.mozilla.org/en-US/docs');
|
|
const i = new URL('http://github.com', 'http://google.com');
|
|
expect(i.href).toBe('http://github.com/');
|
|
// Support Bare Hosts
|
|
const j = new URL('home', 'http://localhost');
|
|
expect(j.href).toBe('http://localhost/home');
|
|
// Insert / between Base and Path if missing
|
|
const k = new URL('en-US/docs', 'https://developer.mozilla.org');
|
|
expect(k.href).toBe('https://developer.mozilla.org/en-US/docs');
|
|
});
|
|
});
|