gitpod/components/server/src/express-util.spec.ts
2021-01-26 18:03:25 +01:00

31 lines
1.2 KiB
TypeScript

/**
* Copyright (c) 2020 Gitpod GmbH. All rights reserved.
* Licensed under the GNU Affero General Public License (AGPL).
* See License-AGPL.txt in the project root for license information.
*/
import * as chai from "chai"
import { isAllowedWebsocketDomain } from "./express-util";
const expect = chai.expect
const HOSTURL_HOSTNAME = "gpl-2732-ws-csrf.staging.gitpod.io";
describe('express-util', function() {
describe('isAllowedWebsocketDomain', function() {
it('should return false for workspace-port locations', function() {
const result = isAllowedWebsocketDomain("http://3000-moccasin-ferret-155799b3.ws-eu.gpl-2732-ws-csrf.staging.gitpod.io", HOSTURL_HOSTNAME);
expect(result).to.be.false;
});
it('should return true for workspace locations', function() {
const result = isAllowedWebsocketDomain("http://moccasin-ferret-155799b3.ws-eu.gpl-2732-ws-csrf.staging.gitpod.io", HOSTURL_HOSTNAME);
expect(result).to.be.true;
});
it('should return true for workspaces locations', function() {
const result = isAllowedWebsocketDomain("http://gpl-2732-ws-csrf.staging.gitpod.io", HOSTURL_HOSTNAME);
expect(result).to.be.true;
});
});
});