@theia/variable-resolver
Version:
Theia - Variable Resolver Extension
99 lines (78 loc) • 3.76 kB
text/typescript
// *****************************************************************************
// Copyright (C) 2018 Red Hat, Inc. and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0.
//
// This Source Code may also be made available under the following Secondary
// Licenses when the conditions for such availability set forth in the Eclipse
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
// with the GNU Classpath Exception which is available at
// https://www.gnu.org/software/classpath/license.html.
//
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
// *****************************************************************************
import { enableJSDOM } from '@theia/core/lib/browser/test/jsdom';
let disableJSDOM = enableJSDOM();
import { FrontendApplicationConfigProvider } from '@theia/core/lib/browser/frontend-application-config-provider';
FrontendApplicationConfigProvider.set({});
import * as chai from 'chai';
import { Container, ContainerModule } from '@theia/core/shared/inversify';
import { ILogger, bindContributionProvider } from '@theia/core/lib/common';
import { MockLogger } from '@theia/core/lib/common/test/mock-logger';
import { VariableContribution, VariableRegistry } from './variable';
import { VariableQuickOpenService } from './variable-quick-open-service';
import { VariableResolverFrontendContribution } from './variable-resolver-frontend-contribution';
disableJSDOM();
const expect = chai.expect;
before(() => {
chai.config.showDiff = true;
chai.config.includeStack = true;
});
describe('variable-resolver-frontend-contribution', () => {
let testContainer: Container;
let variableRegistry: VariableRegistry;
before(() => {
disableJSDOM = enableJSDOM();
testContainer = new Container();
const module = new ContainerModule((bind, unbind, isBound, rebind) => {
bindContributionProvider(bind, VariableContribution);
bind(VariableContribution).toConstantValue(new TestVariableContribution());
bind(ILogger).to(MockLogger);
bind(VariableRegistry).toSelf().inSingletonScope();
// eslint-disable-next-line @typescript-eslint/no-explicit-any
bind(VariableQuickOpenService).toConstantValue({} as any); // mock VariableQuickOpenService
bind(VariableResolverFrontendContribution).toSelf();
});
testContainer.load(module);
});
after(() => {
disableJSDOM();
});
beforeEach(() => {
variableRegistry = testContainer.get<VariableRegistry>(VariableRegistry);
const variableRegistrar = testContainer.get(VariableResolverFrontendContribution);
variableRegistrar.onStart();
});
it('should register all variables from the contribution points', () => {
const variables = variableRegistry.getVariables();
expect(variables.length).to.be.equal(2);
expect(variables[0].name).to.be.equal('file');
expect(variables[1].name).to.be.equal('lineNumber');
});
});
export class TestVariableContribution implements VariableContribution {
registerVariables(variables: VariableRegistry): void {
variables.registerVariable({
name: 'file',
description: 'Resolves to file name opened in the current editor',
resolve: () => Promise.resolve('package.json')
});
variables.registerVariable({
name: 'lineNumber',
description: 'Resolves to current line number',
resolve: () => Promise.resolve('5')
});
}
}