|
| 1 | +/** |
| 2 | + * Teleport |
| 3 | + * Copyright (C) 2025 Gravitational, Inc. |
| 4 | + * |
| 5 | + * This program is free software: you can redistribute it and/or modify |
| 6 | + * it under the terms of the GNU Affero General Public License as published by |
| 7 | + * the Free Software Foundation, either version 3 of the License, or |
| 8 | + * (at your option) any later version. |
| 9 | + * |
| 10 | + * This program is distributed in the hope that it will be useful, |
| 11 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | + * GNU Affero General Public License for more details. |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU Affero General Public License |
| 16 | + * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 17 | + */ |
| 18 | + |
| 19 | +import { getAppProtocol, getAppUriScheme } from './apps'; |
| 20 | +import type { AppProtocol } from './types'; |
| 21 | + |
| 22 | +describe('getAppProtocol', () => { |
| 23 | + test.each<[string, AppProtocol]>([ |
| 24 | + // TCP |
| 25 | + ['tcp://localhost:8080', 'TCP'], |
| 26 | + |
| 27 | + // MCP |
| 28 | + ['mcp+stdio://', 'MCP'], |
| 29 | + ['mcp+http://example.com/mcp', 'MCP'], |
| 30 | + ['mcp+sse+https://example.com/sse', 'MCP'], |
| 31 | + |
| 32 | + // HTTP (fallback/default) |
| 33 | + ['http://localhost:8080', 'HTTP'], |
| 34 | + ['https://localhost:8080', 'HTTP'], |
| 35 | + ['cloud://AWS', 'HTTP'], |
| 36 | + ])('%s is %s', (uri, expected) => { |
| 37 | + expect(getAppProtocol(uri)).toBe(expected); |
| 38 | + }); |
| 39 | +}); |
| 40 | + |
| 41 | +describe('getAppUriScheme', () => { |
| 42 | + test.each<[string, string]>([ |
| 43 | + ['tcp://localhost:8080', 'tcp'], |
| 44 | + ['https://localhost:8080', 'https'], |
| 45 | + ['mcp+http://example.com/mcp', 'mcp+http'], |
| 46 | + ['', ''], |
| 47 | + ])('scheme from %s is %s', (uri, expected) => { |
| 48 | + expect(getAppUriScheme(uri)).toBe(expected); |
| 49 | + }); |
| 50 | +}); |
0 commit comments