Inital platform relayering (#6385)

* moving test files and inital refactoring

* relayer extension host code

* fix imports

* make insights work

* relayer dashboard

* relayer notebooks

* moveing more code around

* formatting

* accept angular as browser

* fix serializer

* add missing files

* remove declarations from extensions

* fix build errors

* more relayering

* change urls to relative to help code relayering

* remove layering to prep for merge

* fix hygiene errors

* fix hygiene errors

* fix tests
This commit is contained in:
Anthony Dresser
2019-07-18 17:29:17 -07:00
committed by GitHub
parent 45c13116de
commit c23738f935
576 changed files with 2090 additions and 2788 deletions

View File

@@ -0,0 +1,74 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as assert from 'assert';
import TableComponent from 'sql/workbench/browser/modelComponents/table.component';
suite('TableComponent Tests', () => {
setup(() => {
});
test('Table transformData should convert data and columns successfully given valid inputs', () => {
let data = [
['1', '2', '2'],
['4', '5', '6']
];
let columns = ['c1', 'c2', 'c3'];
let actual: { [key: string]: string }[] = TableComponent.transformData(data, columns);
let expected: { [key: string]: string }[] = [
{
'c1': '1',
'c2': '2',
'c3': '2'
},
{
'c1': '4',
'c2': '5',
'c3': '6'
}
];
assert.deepEqual(actual, expected);
});
test('Table transformData should return empty array given undefined rows', () => {
let data = undefined;
let columns = ['c1', 'c2', 'c3'];
let actual: { [key: string]: string }[] = TableComponent.transformData(data, columns);
let expected: { [key: string]: string }[] = [];
assert.deepEqual(actual, expected);
});
test('Table transformData should return empty array given undefined columns', () => {
let data = [
['1', '2', '2'],
['4', '5', '6']
];
let columns;
let actual: { [key: string]: string }[] = TableComponent.transformData(data, columns);
let expected: { [key: string]: string }[] = [];
assert.deepEqual(actual, expected);
});
test('Table transformData should return array matched with columns given rows with missing column', () => {
let data = [
['1', '2'],
['4', '5']
];
let columns = ['c1', 'c2', 'c3'];
let actual: { [key: string]: string }[] = TableComponent.transformData(data, columns);
let expected: { [key: string]: string }[] = [
{
'c1': '1',
'c2': '2'
},
{
'c1': '4',
'c2': '5'
}
];
assert.deepEqual(actual, expected);
});
});