2017-01-26 15:42:48 -05:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2017-01-26 15:42:48 -05:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as ts from 'typescript';
|
|
|
|
|
|
|
|
import {createLanguageService} from '../src/language_service';
|
|
|
|
import {TypeScriptServiceHost} from '../src/typescript_host';
|
|
|
|
|
|
|
|
import {MockTypescriptHost} from './test_utils';
|
|
|
|
|
|
|
|
describe('service without angular', () => {
|
2019-11-13 16:13:59 -05:00
|
|
|
const mockHost = new MockTypescriptHost(['/app/main.ts']);
|
2019-10-14 18:24:04 -04:00
|
|
|
const service = ts.createLanguageService(mockHost);
|
|
|
|
const ngHost = new TypeScriptServiceHost(mockHost, service);
|
|
|
|
const ngService = createLanguageService(ngHost);
|
2020-06-06 01:42:35 -04:00
|
|
|
const TEST_TEMPLATE = '/app/test.ng';
|
|
|
|
mockHost.override(TEST_TEMPLATE, '<h1> ~{cursor} </h1>');
|
|
|
|
const position = mockHost.getLocationMarkerFor(TEST_TEMPLATE, 'cursor').start;
|
2017-01-26 15:42:48 -05:00
|
|
|
|
2020-04-03 23:57:39 -04:00
|
|
|
beforeEach(() => {
|
|
|
|
mockHost.reset();
|
|
|
|
});
|
2019-10-14 18:24:04 -04:00
|
|
|
|
2020-04-03 23:57:39 -04:00
|
|
|
it('should not crash a get diagnostics', () => {
|
2020-06-06 01:42:35 -04:00
|
|
|
expect(() => ngService.getSemanticDiagnostics(TEST_TEMPLATE)).not.toThrow();
|
2020-04-03 23:57:39 -04:00
|
|
|
});
|
2019-10-14 18:24:04 -04:00
|
|
|
|
2020-04-03 23:57:39 -04:00
|
|
|
it('should not crash a completion', () => {
|
2020-06-06 01:42:35 -04:00
|
|
|
expect(() => ngService.getCompletionsAtPosition(TEST_TEMPLATE, position)).not.toThrow();
|
2020-04-03 23:57:39 -04:00
|
|
|
});
|
2019-10-14 18:24:04 -04:00
|
|
|
|
2020-01-21 17:51:43 -05:00
|
|
|
it('should not crash a get definition', () => {
|
2020-06-06 01:42:35 -04:00
|
|
|
expect(() => ngService.getDefinitionAndBoundSpan(TEST_TEMPLATE, position)).not.toThrow();
|
2020-01-21 17:51:43 -05:00
|
|
|
});
|
2019-10-14 18:24:04 -04:00
|
|
|
|
2020-04-03 23:57:39 -04:00
|
|
|
it('should not crash a hover', () => {
|
2020-06-06 01:42:35 -04:00
|
|
|
expect(() => ngService.getQuickInfoAtPosition(TEST_TEMPLATE, position)).not.toThrow();
|
2020-04-03 23:57:39 -04:00
|
|
|
});
|
2019-10-14 18:24:04 -04:00
|
|
|
|
|
|
|
it('should not crash with an incomplete class', () => {
|
|
|
|
mockHost.addCode('\nexport class');
|
|
|
|
expect(() => ngHost.getAnalyzedModules()).not.toThrow();
|
|
|
|
});
|
2019-09-17 17:33:41 -04:00
|
|
|
});
|