blob: b4368790c627195cb2c05ec809369eaa01d5be52 [file] [log] [blame]
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
import * as Helpers from "../helpers";
describe('CORS helper functions', () => {
it('allows valid domains', () => {
const urls = [
'http://something.com',
'https://a.ca',
'https://something.com:8000',
'https://www.some-valid-domain.com:80',
'http://localhost',
'https://localhost',
'http://192.168.1.113',
'http://192.168.1.113:1337'
];
urls.forEach((url) => {
expect(Helpers.validateCORSDomain(url)).toBe(true);
});
});
it('fails on non http/https domains', () => {
const urls = [
'whoahnellythisaintright',
'ftp://site.com',
'https://',
'http://'
];
_.each(urls, (url) => {
expect(Helpers.validateCORSDomain(url)).toBe(false);
});
});
it('normalizes common cases, like accidentally added subfolders', () => {
expect('https://foo.com').toBe(Helpers.normalizeUrls('https://foo.com/blerg'));
expect('https://192.168.1.113').toBe(Helpers.normalizeUrls('https://192.168.1.113/blerg'));
expect('https://foo.com:1337').toBe(Helpers.normalizeUrls('https://foo.com:1337/blerg'));
expect('https://foo.com').toBe(Helpers.normalizeUrls('https://foo.com'));
});
});