mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Add real MIAA connection string values (#10838)
* Add real MIAA connection string values * Add MiaaModel and fix some strings * Remove unused var * Test to print env vars * Add tests * fixes
This commit is contained in:
45
extensions/arc/src/test/common/utils.test.ts
Normal file
45
extensions/arc/src/test/common/utils.test.ts
Normal file
@@ -0,0 +1,45 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import * as should from 'should';
|
||||
import 'mocha';
|
||||
import { resourceTypeToDisplayName, ResourceType, parseEndpoint } from '../../common/utils';
|
||||
|
||||
import * as loc from '../../localizedConstants';
|
||||
|
||||
describe('resourceTypeToDisplayName Method Tests', () => {
|
||||
it('Display Name should be correct for valid ResourceType', function (): void {
|
||||
should(resourceTypeToDisplayName(ResourceType.dataControllers)).equal(loc.dataControllersType);
|
||||
should(resourceTypeToDisplayName(ResourceType.postgresInstances)).equal(loc.pgSqlType);
|
||||
should(resourceTypeToDisplayName(ResourceType.sqlManagedInstances)).equal(loc.miaaType);
|
||||
});
|
||||
|
||||
it('Display Name should be correct for unknown value', function (): void {
|
||||
should(resourceTypeToDisplayName('Unknown Type')).equal('Unknown Type');
|
||||
});
|
||||
|
||||
it('Display Name should be correct for empty value', function (): void {
|
||||
should(resourceTypeToDisplayName('')).equal('undefined');
|
||||
});
|
||||
|
||||
it('Display Name should be correct for undefined value', function (): void {
|
||||
should(resourceTypeToDisplayName(undefined)).equal('undefined');
|
||||
});
|
||||
});
|
||||
|
||||
describe('parseEndpoint Method Tests', () => {
|
||||
it('Should parse valid endpoint correctly', function (): void {
|
||||
should(parseEndpoint('127.0.0.1:1337')).deepEqual({ ip: '127.0.0.1', port: '1337'});
|
||||
});
|
||||
|
||||
it('Should parse empty endpoint correctly', function (): void {
|
||||
should(parseEndpoint('')).deepEqual({ ip: '', port: ''});
|
||||
});
|
||||
|
||||
it('Should parse undefined endpoint correctly', function (): void {
|
||||
should(parseEndpoint('')).deepEqual({ ip: '', port: ''});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user