Add and fix notebook extension unit tests (#10156)

This commit is contained in:
Charles Gagnon
2020-04-24 22:05:36 -07:00
committed by GitHub
parent c26bd3f8f7
commit 586c28bf79
7 changed files with 220 additions and 55 deletions

View File

@@ -177,7 +177,7 @@ export function comparePackageVersions(first: string, second: string): number {
return 0; return 0;
} }
export function sortPackageVersions(versions: string[], ascending: boolean = true) { export function sortPackageVersions(versions: string[], ascending: boolean = true): string[] {
return versions.sort((first, second) => { return versions.sort((first, second) => {
let compareResult = comparePackageVersions(first, second); let compareResult = comparePackageVersions(first, second);
if (ascending) { if (ascending) {
@@ -188,14 +188,6 @@ export function sortPackageVersions(versions: string[], ascending: boolean = tru
}); });
} }
// PRIVATE HELPERS /////////////////////////////////////////////////////////
function outputDataChunk(data: string | Buffer, outputChannel: vscode.OutputChannel, header: string): void {
data.toString().split(/\r?\n/)
.forEach(line => {
outputChannel.appendLine(header + line);
});
}
export function isEditorTitleFree(title: string): boolean { export function isEditorTitleFree(title: string): boolean {
let hasTextDoc = vscode.workspace.textDocuments.findIndex(doc => doc.isUntitled && doc.fileName === title) > -1; let hasTextDoc = vscode.workspace.textDocuments.findIndex(doc => doc.isUntitled && doc.fileName === title) > -1;
let hasNotebookDoc = azdata.nb.notebookDocuments.findIndex(doc => doc.isUntitled && doc.fileName === title) > -1; let hasNotebookDoc = azdata.nb.notebookDocuments.findIndex(doc => doc.isUntitled && doc.fileName === title) > -1;
@@ -274,6 +266,14 @@ export function debounce(delay: number): Function {
}); });
} }
// PRIVATE HELPERS /////////////////////////////////////////////////////////
function outputDataChunk(data: string | Buffer, outputChannel: vscode.OutputChannel, header: string): void {
data.toString().split(/\r?\n/)
.forEach(line => {
outputChannel.appendLine(header + line);
});
}
function decorate(decorator: (fn: Function, key: string) => Function): Function { function decorate(decorator: (fn: Function, key: string) => Function): Function {
return (_target: any, key: string, descriptor: any) => { return (_target: any, key: string, descriptor: any) => {
let fnKey: string | null = null; let fnKey: string | null = null;

View File

@@ -132,8 +132,8 @@ export class ManagePackagesDialogModel {
/** /**
* Returns the default location * Returns the default location
*/ */
public get defaultLocation(): string { public get defaultLocation(): string | undefined {
return this.options.defaultLocation || this.targetLocationTypes[0]; return this.options.defaultLocation || this.targetLocationTypes.length > 0 ? this.targetLocationTypes[0] : undefined;
} }
/** /**
@@ -169,7 +169,10 @@ export class ManagePackagesDialogModel {
*/ */
public getPackageTypes(targetLocation?: string): ProviderPackageType[] { public getPackageTypes(targetLocation?: string): ProviderPackageType[] {
targetLocation = targetLocation || this.defaultLocation; targetLocation = targetLocation || this.defaultLocation;
let providers = this._packageTypes.get(targetLocation); if (!this._packageTypes.has(targetLocation)) {
return [];
}
const providers = this._packageTypes.get(targetLocation);
return providers.map(x => { return providers.map(x => {
return { return {
providerId: x.providerId, providerId: x.providerId,
@@ -181,7 +184,7 @@ export class ManagePackagesDialogModel {
/** /**
* Returns a map of providerId to package types for given location * Returns a map of providerId to package types for given location
*/ */
public getDefaultPackageType(): ProviderPackageType { public getDefaultPackageType(): ProviderPackageType | undefined {
let defaultProviderId = this.defaultProviderId; let defaultProviderId = this.defaultProviderId;
let packageTypes = this.getPackageTypes(); let packageTypes = this.getPackageTypes();
return packageTypes.find(x => x.providerId === defaultProviderId); return packageTypes.find(x => x.providerId === defaultProviderId);
@@ -191,12 +194,8 @@ export class ManagePackagesDialogModel {
* returns the list of packages for current provider * returns the list of packages for current provider
*/ */
public async listPackages(): Promise<IPackageDetails[]> { public async listPackages(): Promise<IPackageDetails[]> {
let provider = this.currentPackageManageProvider; const provider = this.currentPackageManageProvider;
if (provider) { return await provider?.listPackages(this._currentLocation) ?? [];
return await provider.listPackages(this._currentLocation);
} else {
throw new Error('Current Provider is not set');
}
} }
/** /**

View File

@@ -3,7 +3,6 @@
* Licensed under the Source EULA. See License.txt in the project root for license information. * Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/ *--------------------------------------------------------------------------------------------*/
import * as azdata from 'azdata';
import * as vscode from 'vscode'; import * as vscode from 'vscode';
import * as should from 'should'; import * as should from 'should';
import * as path from 'path'; import * as path from 'path';
@@ -199,11 +198,11 @@ describe('BookTreeViewProviderTests', function () {
it('should set notebooks trusted to true on trustBook', async () => { it('should set notebooks trusted to true on trustBook', async () => {
let notebook1Path = path.join(rootFolderPath, 'Book', 'content', 'notebook1.ipynb'); let notebook1Path = path.join(rootFolderPath, 'Book', 'content', 'notebook1.ipynb');
let bookTrustManager: BookTrustManager = new BookTrustManager(bookTreeViewProvider.books, appContext.apiWrapper); let bookTrustManager: BookTrustManager = new BookTrustManager(bookTreeViewProvider.books, appContext.apiWrapper);
let isTrusted = bookTrustManager.isNotebookTrustedByDefault(notebook1Path); let isTrusted = bookTrustManager.isNotebookTrustedByDefault(vscode.Uri.file(notebook1Path).fsPath);
should(isTrusted).equal(false, 'Notebook should not be trusted by default'); should(isTrusted).equal(false, 'Notebook should not be trusted by default');
bookTreeViewProvider.trustBook(bookTreeViewProvider.currentBook.bookItems[0]); bookTreeViewProvider.trustBook(bookTreeViewProvider.currentBook.bookItems[0]);
isTrusted = bookTrustManager.isNotebookTrustedByDefault(notebook1Path); isTrusted = bookTrustManager.isNotebookTrustedByDefault(vscode.Uri.file(notebook1Path).fsPath);
should(isTrusted).equal(true, 'Failed to set trust on trustBook'); should(isTrusted).equal(true, 'Failed to set trust on trustBook');
}); });
@@ -212,11 +211,10 @@ describe('BookTreeViewProviderTests', function () {
let notebook1Path = path.join(rootFolderPath, 'Book', 'content', 'notebook1.ipynb'); let notebook1Path = path.join(rootFolderPath, 'Book', 'content', 'notebook1.ipynb');
let notebook2Path = path.join(rootFolderPath, 'Book', 'content', 'notebook2.ipynb'); let notebook2Path = path.join(rootFolderPath, 'Book', 'content', 'notebook2.ipynb');
let notebook3Path = path.join(rootFolderPath, 'Book', 'content', 'notebook3.ipynb'); let notebook3Path = path.join(rootFolderPath, 'Book', 'content', 'notebook3.ipynb');
let result: azdata.nb.NavigationResult; const result = await bookTreeViewProvider.currentBook.getNavigation(vscode.Uri.file(notebook2Path));
await bookTreeViewProvider.currentBook.getNavigation(vscode.Uri.file(notebook2Path)).then(navigationResult => { result = navigationResult;});
should(result.hasNavigation).be.true('getNavigation failed to get previous and next urls'); should(result.hasNavigation).be.true('getNavigation failed to get previous and next urls');
should(result.next.fsPath).equal(notebook3Path, 'getNavigation failed to get the next url'); should(result.next.fsPath).equal(vscode.Uri.file(notebook3Path).fsPath, 'getNavigation failed to get the next url');
should(result.previous.fsPath).equal(notebook1Path, 'getNavigation failed to get the previous url'); should(result.previous.fsPath).equal(vscode.Uri.file(notebook1Path).fsPath, 'getNavigation failed to get the previous url');
}); });
@@ -264,7 +262,7 @@ describe('BookTreeViewProviderTests', function () {
it('should ignore toc.yml files not in _data folder', async () => { it('should ignore toc.yml files not in _data folder', async () => {
await bookTreeViewProvider.currentBook.loadTableOfContentFiles(rootFolderPath); await bookTreeViewProvider.currentBook.loadTableOfContentFiles(rootFolderPath);
let path = bookTreeViewProvider.currentBook.tableOfContentsPath; let path = bookTreeViewProvider.currentBook.tableOfContentsPath;
should(path.toLocaleLowerCase()).equal(tableOfContentsFile.replace(/\\/g, '/').toLocaleLowerCase()); should(vscode.Uri.file(path).fsPath).equal(vscode.Uri.file(tableOfContentsFile).fsPath);
}); });
this.afterAll(async function (): Promise<void> { this.afterAll(async function (): Promise<void> {

View File

@@ -130,8 +130,8 @@ describe('BookTrustManagerTests', function () {
let isNotebook1Trusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri1); let isNotebook1Trusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri1);
let isNotebook2Trusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri2); let isNotebook2Trusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri2);
should(isNotebook1Trusted).be.true("Notebook 1 should be trusted"); should(isNotebook1Trusted).be.true('Notebook 1 should be trusted');
should(isNotebook2Trusted).be.true("Notebook 2 should be trusted"); should(isNotebook2Trusted).be.true('Notebook 2 should be trusted');
}); });
@@ -139,42 +139,42 @@ describe('BookTrustManagerTests', function () {
let notebookUri = path.join(path.sep,'temp','SubFolder2','content', 'sample', 'notebook.ipynb'); let notebookUri = path.join(path.sep,'temp','SubFolder2','content', 'sample', 'notebook.ipynb');
let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrusted).be.false("Notebook should be trusted"); should(isNotebookTrusted).be.false('Notebook should be trusted');
}); });
it('should trust notebook after book has been trusted within a workspace', async () => { it('should trust notebook after book has been trusted within a workspace', async () => {
let notebookUri = path.join(path.sep,'temp','SubFolder2','content', 'sample', 'notebook.ipynb'); let notebookUri = path.join(path.sep,'temp','SubFolder2','content', 'sample', 'notebook.ipynb');
let isNotebookTrustedBeforeChange = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrustedBeforeChange = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrustedBeforeChange).be.false("Notebook should NOT be trusted"); should(isNotebookTrustedBeforeChange).be.false('Notebook should NOT be trusted');
// add another book subfolder // add another book subfolder
bookTrustManager.setBookAsTrusted('/SubFolder2/'); bookTrustManager.setBookAsTrusted('/SubFolder2/');
let isNotebookTrustedAfterChange = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrustedAfterChange = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrustedAfterChange).be.true("Notebook should be trusted"); should(isNotebookTrustedAfterChange).be.true('Notebook should be trusted');
}); });
it('should NOT trust a notebook when untrusting a book within a workspace', async () => { it('should NOT trust a notebook when untrusting a book within a workspace', async () => {
let notebookUri = path.join(path.sep,'temp','SubFolder','content', 'sample', 'notebook.ipynb'); let notebookUri = path.join(path.sep,'temp','SubFolder','content', 'sample', 'notebook.ipynb');
let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrusted).be.true("Notebook should be trusted"); should(isNotebookTrusted).be.true('Notebook should be trusted');
// remove trusted subfolders // remove trusted subfolders
trustedSubFolders = []; trustedSubFolders = [];
let isNotebookTrustedAfterChange = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrustedAfterChange = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrustedAfterChange).be.false("Notebook should not be trusted after book removal"); should(isNotebookTrustedAfterChange).be.false('Notebook should not be trusted after book removal');
}); });
it('should NOT trust an unknown book within a workspace', async () => { it('should NOT trust an unknown book within a workspace', async () => {
let notebookUri = path.join(path.sep, 'randomfolder', 'randomsubfolder', 'content', 'randomnotebook.ipynb'); let notebookUri = path.join(path.sep, 'randomfolder', 'randomsubfolder', 'content', 'randomnotebook.ipynb');
let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrusted).be.false("Random notebooks should not be trusted"); should(isNotebookTrusted).be.false('Random notebooks should not be trusted');
}); });
it('should NOT trust notebook inside trusted subfolder when absent in table of contents ', async () => { it('should NOT trust notebook inside trusted subfolder when absent in table of contents ', async () => {
@@ -183,7 +183,7 @@ describe('BookTrustManagerTests', function () {
let notebookUri = path.join(path.sep, 'temp', 'SubFolder', 'content', 'sample', 'notInToc.ipynb'); let notebookUri = path.join(path.sep, 'temp', 'SubFolder', 'content', 'sample', 'notInToc.ipynb');
let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrusted).be.false("Notebook should NOT be trusted"); should(isNotebookTrusted).be.false('Notebook should NOT be trusted');
}); });
}); });
@@ -274,8 +274,8 @@ describe('BookTrustManagerTests', function () {
let isNotebook1Trusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri1); let isNotebook1Trusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri1);
let isNotebook2Trusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri2); let isNotebook2Trusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri2);
should(isNotebook1Trusted).be.true("Notebook 1 should be trusted"); should(isNotebook1Trusted).be.true('Notebook 1 should be trusted');
should(isNotebook2Trusted).be.true("Notebook 2 should be trusted"); should(isNotebook2Trusted).be.true('Notebook 2 should be trusted');
}); });
@@ -283,20 +283,20 @@ describe('BookTrustManagerTests', function () {
let notebookUri = path.join(path.sep,'temp','SubFolder2','content', 'sample', 'notebook.ipynb'); let notebookUri = path.join(path.sep,'temp','SubFolder2','content', 'sample', 'notebook.ipynb');
let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrusted).be.false("Notebook should be trusted"); should(isNotebookTrusted).be.false('Notebook should be trusted');
}); });
it('should trust notebook after book has been added to a folder', async () => { it('should trust notebook after book has been added to a folder', async () => {
let notebookUri = path.join(path.sep,'temp','SubFolder2','content', 'sample','notebook.ipynb'); let notebookUri = path.join(path.sep,'temp','SubFolder2','content', 'sample','notebook.ipynb');
let isNotebookTrustedBeforeChange = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrustedBeforeChange = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrustedBeforeChange).be.false("Notebook should NOT be trusted"); should(isNotebookTrustedBeforeChange).be.false('Notebook should NOT be trusted');
bookTrustManager.setBookAsTrusted('/temp/SubFolder2/'); bookTrustManager.setBookAsTrusted('/temp/SubFolder2/');
let isNotebookTrustedAfterChange = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrustedAfterChange = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrustedAfterChange).be.true("Notebook should be trusted"); should(isNotebookTrustedAfterChange).be.true('Notebook should be trusted');
}); });
it('should NOT trust a notebook when untrusting a book in folder', async () => { it('should NOT trust a notebook when untrusting a book in folder', async () => {
@@ -304,20 +304,20 @@ describe('BookTrustManagerTests', function () {
let notebookUri = path.join(path.sep,'temp','SubFolder','content', 'sample', 'notebook.ipynb'); let notebookUri = path.join(path.sep,'temp','SubFolder','content', 'sample', 'notebook.ipynb');
let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrusted).be.true("Notebook should be trusted"); should(isNotebookTrusted).be.true('Notebook should be trusted');
trustedFolders = []; trustedFolders = [];
let isNotebookTrustedAfterChange = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrustedAfterChange = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrustedAfterChange).be.false("Notebook should not be trusted after book removal"); should(isNotebookTrustedAfterChange).be.false('Notebook should not be trusted after book removal');
}); });
it('should NOT trust an unknown book', async () => { it('should NOT trust an unknown book', async () => {
let notebookUri = path.join(path.sep, 'randomfolder', 'randomsubfolder', 'content', 'randomnotebook.ipynb'); let notebookUri = path.join(path.sep, 'randomfolder', 'randomsubfolder', 'content', 'randomnotebook.ipynb');
let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrusted).be.false("Random notebooks should not be trusted"); should(isNotebookTrusted).be.false('Random notebooks should not be trusted');
}); });
it('should NOT trust notebook inside trusted subfolder when absent in table of contents ', async () => { it('should NOT trust notebook inside trusted subfolder when absent in table of contents ', async () => {
@@ -326,7 +326,7 @@ describe('BookTrustManagerTests', function () {
let notebookUri = path.join(path.sep, 'temp', 'SubFolder', 'content', 'sample', 'notInToc.ipynb'); let notebookUri = path.join(path.sep, 'temp', 'SubFolder', 'content', 'sample', 'notInToc.ipynb');
let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri); let isNotebookTrusted = bookTrustManager.isNotebookTrustedByDefault(notebookUri);
should(isNotebookTrusted).be.false("Notebook should NOT be trusted"); should(isNotebookTrusted).be.false('Notebook should NOT be trusted');
}); });
}); });

View File

@@ -28,23 +28,23 @@ export class MockOutputChannel implements vscode.OutputChannel {
name: string; name: string;
append(value: string): void { append(value: string): void {
throw new Error('Method not implemented.');
} }
appendLine(value: string): void { appendLine(value: string): void {
throw new Error('Method not implemented.');
} }
clear(): void { clear(): void {
throw new Error('Method not implemented.');
} }
show(preserveFocus?: boolean): void; show(preserveFocus?: boolean): void;
show(column?: vscode.ViewColumn, preserveFocus?: boolean): void; show(column?: vscode.ViewColumn, preserveFocus?: boolean): void;
show(column?: any, preserveFocus?: any): void { show(column?: any, preserveFocus?: any): void {
throw new Error('Method not implemented.');
} }
hide(): void { hide(): void {
throw new Error('Method not implemented.');
} }
dispose(): void { dispose(): void {
throw new Error('Method not implemented.');
} }
} }

View File

@@ -0,0 +1,140 @@
/*---------------------------------------------------------------------------------------------
* 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 { promises as fs } from 'fs';
import * as uuid from 'uuid';
import * as os from 'os';
import * as path from 'path';
import * as utils from '../../common/utils';
import { MockOutputChannel } from './stubs';
describe('Utils Tests', function () {
it('getKnoxUrl', () => {
const host = '127.0.0.1';
const port = '8080';
should(utils.getKnoxUrl(host, port)).endWith('/gateway');
});
it('getLivyUrl', () => {
const host = '127.0.0.1';
const port = '8080';
should(utils.getLivyUrl(host, port)).endWith('/gateway/default/livy/v1/');
});
it('mkDir', async () => {
const dirPath = path.join(os.tmpdir(), uuid.v4());
await should(fs.stat(dirPath)).be.rejected();
await utils.mkDir(dirPath, new MockOutputChannel());
should.exist(await fs.stat(dirPath), `Folder ${dirPath} did not exist after creation`);
});
it('getErrorMessage Error', () => {
const errMsg = 'Test Error';
should(utils.getErrorMessage(new Error(errMsg))).equal(errMsg);
});
it('getErrorMessage string', () => {
const errMsg = 'Test Error';
should(utils.getErrorMessage(errMsg)).equal(errMsg);
});
it('getOSPlatform', async () => {
should(utils.getOSPlatform()).not.throw();
});
it('getOSPlatformId', async () => {
should(utils.getOSPlatformId()).not.throw();
});
describe('comparePackageVersions', () => {
const version1 = '1.0.0.0';
const version1Revision = '1.0.0.1';
const version2 = '2.0.0.0';
const shortVersion1 = '1';
it('same id', () => {
should(utils.comparePackageVersions(version1, version1)).equal(0);
});
it('first version lower', () => {
should(utils.comparePackageVersions(version1, version2)).equal(-1);
});
it('second version lower', () => {
should(utils.comparePackageVersions(version2, version1)).equal(1);
});
it('short first version is padded correctly', () => {
should(utils.comparePackageVersions(shortVersion1, version1)).equal(0);
});
it('short second version is padded correctly when', () => {
should(utils.comparePackageVersions(version1, shortVersion1)).equal(0);
});
it('correctly compares version with only minor version difference', () => {
should(utils.comparePackageVersions(version1Revision, version1)).equal(1);
});
});
describe('sortPackageVersions', () => {
it('empty', () => {
should(utils.sortPackageVersions([])).deepEqual([]);
});
it('single', () => {
const single = ['1'];
should(utils.sortPackageVersions(single)).deepEqual(single);
});
it('inorder', () => {
const inorder = ['1', '2', '3'];
should(utils.sortPackageVersions(inorder)).deepEqual(inorder);
});
it('inorder descending', () => {
const inorder = ['1', '2', '3'];
const inorderSortedDescending = ['3', '2', '1'];
should(utils.sortPackageVersions(inorder, false)).deepEqual(inorderSortedDescending);
});
it('reverse order', () => {
const reverseOrder = ['3', '2', '1'];
const reverseOrderSorted = ['1', '2', '3'];
should(utils.sortPackageVersions(reverseOrder)).deepEqual(reverseOrderSorted);
});
it('reverse order descending', () => {
const reverseOrder = ['3', '2', '1'];
const reverseOrderSortedDescending = ['3', '2', '1'];
should(utils.sortPackageVersions(reverseOrder, false)).deepEqual(reverseOrderSortedDescending);
});
it('random', () => {
const random = ['1', '42', '100', '0'];
const randomSorted = ['0', '1', '42', '100'];
should(utils.sortPackageVersions(random)).deepEqual(randomSorted);
});
it('random descending', () => {
const random = ['1', '42', '100', '0'];
const randomSortedDescending = ['100', '42', '1', '0'];
should(utils.sortPackageVersions(random, false)).deepEqual(randomSortedDescending);
});
it('different lengths', () => {
const random = ['1.0.0', '42', '100.0', '0.1', '1.0.1'];
const randomSorted = ['0.1', '1.0.0', '1.0.1', '42', '100.0']
should(utils.sortPackageVersions(random)).deepEqual(randomSorted);
});
});
describe('getClusterEndpoints', () => {
});
});

View File

@@ -31,7 +31,7 @@ describe('Manage Packages', () => {
should.throws(() => { new ManagePackagesDialogModel(jupyterServerInstallation, providers); }, 'Invalid list of package manager providers'); should.throws(() => { new ManagePackagesDialogModel(jupyterServerInstallation, providers); }, 'Invalid list of package manager providers');
}); });
it('Should not throw exception given undefined options', async function (): Promise<void> { it('Should have expected behavior given undefined options', async function (): Promise<void> {
let testContext = createContext(); let testContext = createContext();
testContext.provider.listPackages = () => { testContext.provider.listPackages = () => {
return Promise.resolve(undefined); return Promise.resolve(undefined);
@@ -39,8 +39,33 @@ describe('Manage Packages', () => {
let provider = createProvider(testContext); let provider = createProvider(testContext);
let providers = new Map<string, IPackageManageProvider>(); let providers = new Map<string, IPackageManageProvider>();
providers.set(provider.providerId, provider); providers.set(provider.providerId, provider);
const model = new ManagePackagesDialogModel(jupyterServerInstallation, providers, undefined);
should.equal(model.currentPackageType, undefined, 'Current Package Type expected to be undefined');
should.deepEqual(model.options, { defaultLocation: undefined, defaultProviderId: undefined }, 'Options should be default options');
should.deepEqual(model.packageManageProviders, providers, 'Package Manage Providers should exist');
should.equal(model.currentPackageManageProvider, undefined, 'Current Package Manage Provider should be undefined');
should.equal(model.currentPackageType, undefined, 'Current Package Type should be undefined');
should.deepEqual(model.targetLocationTypes, [], 'Target Location Types should be an empty array');
should.equal(model.defaultLocation, undefined, 'Default Location should be undefined');
should.equal(model.defaultProviderId, provider.providerId, 'Default Provider ID should be correct');
should.deepEqual(model.getPackageTypes(), [], 'Undefined location should return empty array when calling getPackageTypes');
should.deepEqual(model.getPackageTypes('location1'), [],'Valid location should return empty array when calling getPackageTypes');
should.equal(model.getDefaultPackageType(), undefined, 'Default Package Type should be undefined');
should.deepEqual(await model.listPackages(), [], 'Packages list should be empty');
await should(model.installPackages([])).rejected();
await should(model.uninstallPackages([])).rejected();
should.equal(await model.getLocations(), undefined, 'Get Locations should be undefined before provider is set');
should(model.getPackageOverview('package')).rejected();
// Change provider and then retest functions which throw without valid provider
model.changeProvider(provider.providerId);
await should(model.installPackages([])).resolved();
await should(model.uninstallPackages([])).resolved();
should.deepEqual(await model.getLocations(), await provider.getLocations(), 'Get Locations should be valid after provider is set');
should(model.getPackageOverview('p1')).resolved();
model.changeLocation('location1');
should.doesNotThrow(() => { new ManagePackagesDialogModel(jupyterServerInstallation, providers, undefined); });
}); });
it('Init should throw exception given invalid default location', async function (): Promise<void> { it('Init should throw exception given invalid default location', async function (): Promise<void> {
@@ -82,7 +107,7 @@ describe('Manage Packages', () => {
should.equal(model.defaultProviderId, provider.providerId); should.equal(model.defaultProviderId, provider.providerId);
}); });
it('Init should set default provider Id given valid options', async function (): Promise<void> { it('Init should have expected defaults given valid options', async function (): Promise<void> {
let testContext1 = createContext(); let testContext1 = createContext();
testContext1.provider.providerId = 'providerId1'; testContext1.provider.providerId = 'providerId1';
testContext1.provider.packageTarget = { testContext1.provider.packageTarget = {
@@ -108,6 +133,9 @@ describe('Manage Packages', () => {
await model.init(); await model.init();
should.equal(model.defaultLocation, testContext2.provider.packageTarget.location); should.equal(model.defaultLocation, testContext2.provider.packageTarget.location);
should.equal(model.defaultProviderId, testContext2.provider.providerId); should.equal(model.defaultProviderId, testContext2.provider.providerId);
should.equal(model.getDefaultPackageType().packageType, testContext2.provider.packageTarget.packageType);
should.equal(model.currentPackageType, testContext2.provider.packageTarget.packageType);
should.equal(model.jupyterInstallation, jupyterServerInstallation);
}); });
it('Should create a cache for multiple providers successfully', async function (): Promise<void> { it('Should create a cache for multiple providers successfully', async function (): Promise<void> {
@@ -247,7 +275,7 @@ describe('Manage Packages', () => {
let model = new ManagePackagesDialogModel(jupyterServerInstallation, providers, undefined); let model = new ManagePackagesDialogModel(jupyterServerInstallation, providers, undefined);
should.equal(model.currentPackageManageProvider, undefined); should.equal(model.currentPackageManageProvider, undefined);
await should(model.listPackages()).rejected(); await should(model.listPackages()).resolvedWith([]);
await should(model.installPackages(TypeMoq.It.isAny())).rejected(); await should(model.installPackages(TypeMoq.It.isAny())).rejected();
await should(model.uninstallPackages(TypeMoq.It.isAny())).rejected(); await should(model.uninstallPackages(TypeMoq.It.isAny())).rejected();
}); });