2016-11-22 12:10:23 -05:00
/ * *
* @license
* Copyright Google Inc . All Rights Reserved .
*
* 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 { toh } from './test_data' ;
2017-01-03 20:21:45 -05:00
import { MockTypescriptHost } from './test_utils' ;
2016-11-22 12:10:23 -05:00
describe ( 'completions' , ( ) = > {
let mockHost = new MockTypescriptHost ( [ '/app/main.ts' , '/app/parsing-cases.ts' ] , toh ) ;
2019-08-28 13:18:18 -04:00
let service = ts . createLanguageService ( mockHost ) ;
2016-12-06 19:19:39 -05:00
let ngHost = new TypeScriptServiceHost ( mockHost , service ) ;
2016-11-22 12:10:23 -05:00
let ngService = createLanguageService ( ngHost ) ;
it ( 'should be able to get entity completions' ,
2019-09-12 22:34:05 -04:00
( ) = > { expectContains ( '/app/test.ng' , 'entity-amp' , '&' , '>' , '<' , 'ι' ) ; } ) ;
2016-11-22 12:10:23 -05:00
it ( 'should be able to return html elements' , ( ) = > {
let htmlTags = [ 'h1' , 'h2' , 'div' , 'span' ] ;
let locations = [ 'empty' , 'start-tag-h1' , 'h1-content' , 'start-tag' , 'start-tag-after-h' ] ;
for ( let location of locations ) {
2019-09-12 22:34:05 -04:00
expectContains ( '/app/test.ng' , location , . . . htmlTags ) ;
2016-11-22 12:10:23 -05:00
}
} ) ;
it ( 'should be able to return element diretives' ,
2019-09-12 22:34:05 -04:00
( ) = > { expectContains ( '/app/test.ng' , 'empty' , 'my-app' ) ; } ) ;
2016-11-22 12:10:23 -05:00
it ( 'should be able to return h1 attributes' ,
2019-09-12 22:34:05 -04:00
( ) = > { expectContains ( '/app/test.ng' , 'h1-after-space' , 'id' , 'dir' , 'lang' , 'onclick' ) ; } ) ;
2016-11-22 12:10:23 -05:00
it ( 'should be able to find common angular attributes' ,
2019-09-12 22:34:05 -04:00
( ) = > { expectContains ( '/app/test.ng' , 'div-attributes' , '(click)' , '[ngClass]' ) ; } ) ;
2016-11-22 12:10:23 -05:00
it ( 'should be able to get completions in some random garbage' , ( ) = > {
const fileName = '/app/test.ng' ;
mockHost . override ( fileName , ' > {{tle<\n {{retl ><bel/beled}}di>\n la</b </d &a ' ) ;
expect ( ( ) = > ngService . getCompletionsAt ( fileName , 31 ) ) . not . toThrow ( ) ;
2017-03-24 12:57:32 -04:00
mockHost . override ( fileName , undefined ! ) ;
2016-11-22 12:10:23 -05:00
} ) ;
it ( 'should be able to infer the type of a ngForOf' , ( ) = > {
2019-09-12 22:34:05 -04:00
const fileName = mockHost . addCode ( `
2016-11-22 12:10:23 -05:00
interface Person {
name : string ,
street : string
}
@Component ( { template : '<div *ngFor="let person of people">{{person.~{name}name}}</div' } )
export class MyComponent {
people : Person [ ]
2019-09-12 22:34:05 -04:00
} ` );
expectContains ( fileName , 'name' , 'name' , 'street' ) ;
2016-11-22 12:10:23 -05:00
} ) ;
it ( 'should be able to infer the type of a ngForOf with an async pipe' , ( ) = > {
2019-09-12 22:34:05 -04:00
const fileName = mockHost . addCode ( `
2016-11-22 12:10:23 -05:00
interface Person {
name : string ,
street : string
}
@Component ( { template : '<div *ngFor="let person of people | async">{{person.~{name}name}}</div' } )
export class MyComponent {
people : Promise < Person [ ] > ;
2019-09-12 22:34:05 -04:00
} ` );
expectContains ( fileName , 'name' , 'name' , 'street' ) ;
2016-11-22 12:10:23 -05:00
} ) ;
it ( 'should be able to complete every character in the file' , ( ) = > {
const fileName = '/app/test.ng' ;
expect ( ( ) = > {
let chance = 0.05 ;
function tryCompletionsAt ( position : number ) {
try {
if ( Math . random ( ) < chance ) {
ngService . getCompletionsAt ( fileName , position ) ;
}
} catch ( e ) {
// Emit enough diagnostic information to reproduce the error.
2016-11-23 19:21:06 -05:00
console . error (
2016-11-22 12:10:23 -05:00
` Position: ${ position } \ nContent: " ${ mockHost . getFileContent ( fileName ) } " \ nStack: \ n ${ e . stack } ` ) ;
throw e ;
}
}
try {
2017-03-24 12:57:32 -04:00
const originalContent = mockHost . getFileContent ( fileName ) ! ;
2016-11-22 12:10:23 -05:00
// For each character in the file, add it to the file and request a completion after it.
for ( let index = 0 , len = originalContent . length ; index < len ; index ++ ) {
const content = originalContent . substr ( 0 , index ) ;
mockHost . override ( fileName , content ) ;
tryCompletionsAt ( index ) ;
}
// For the complete file, try to get a completion at every character.
mockHost . override ( fileName , originalContent ) ;
for ( let index = 0 , len = originalContent . length ; index < len ; index ++ ) {
tryCompletionsAt ( index ) ;
}
// Delete random characters in the file until we get an empty file.
let content = originalContent ;
while ( content . length > 0 ) {
const deleteIndex = Math . floor ( Math . random ( ) * content . length ) ;
content = content . slice ( 0 , deleteIndex - 1 ) + content . slice ( deleteIndex + 1 ) ;
mockHost . override ( fileName , content ) ;
const requestIndex = Math . floor ( Math . random ( ) * content . length ) ;
tryCompletionsAt ( requestIndex ) ;
}
// Build up the string from zero asking for a completion after every char
buildUp ( originalContent , ( text , position ) = > {
mockHost . override ( fileName , text ) ;
tryCompletionsAt ( position ) ;
} ) ;
} finally {
2017-03-24 12:57:32 -04:00
mockHost . override ( fileName , undefined ! ) ;
2016-11-22 12:10:23 -05:00
}
} ) . not . toThrow ( ) ;
} ) ;
describe ( 'with regression tests' , ( ) = > {
it ( 'should not crash with an incomplete component' , ( ) = > {
expect ( ( ) = > {
2019-09-12 22:34:05 -04:00
const fileName = mockHost . addCode ( `
@Component ( {
template : '~{inside-template}'
} )
export class MyComponent {
} ` );
expectContains ( fileName , 'inside-template' , 'h1' ) ;
2016-11-22 12:10:23 -05:00
} ) . not . toThrow ( ) ;
} ) ;
it ( 'should hot crash with an incomplete class' , ( ) = > {
expect ( ( ) = > {
2019-09-12 22:34:05 -04:00
mockHost . addCode ( '\nexport class' ) ;
ngHost . getAnalyzedModules ( ) ;
2016-11-22 12:10:23 -05:00
} ) . not . toThrow ( ) ;
} ) ;
} ) ;
2017-11-06 13:30:29 -05:00
it ( 'should respect paths configuration' , ( ) = > {
mockHost . overrideOptions ( options = > {
options . baseUrl = '/app' ;
options . paths = { 'bar/*' : [ 'foo/bar/*' ] } ;
return options ;
} ) ;
mockHost . addScript ( '/app/foo/bar/shared.ts' , `
export interface Node {
children : Node [ ] ;
}
` );
mockHost . addScript ( '/app/my.component.ts' , `
import { Component } from '@angular/core' ;
import { Node } from 'bar/shared' ;
@Component ( {
selector : 'my-component' ,
template : '{{tree.~{tree} }}'
} )
export class MyComponent {
tree : Node ;
}
` );
2019-08-05 22:37:30 -04:00
ngHost . getAnalyzedModules ( ) ;
2019-09-12 22:34:05 -04:00
expectContains ( '/app/my.component.ts' , 'tree' , 'children' ) ;
2017-11-06 13:30:29 -05:00
} ) ;
2019-01-30 13:34:36 -05:00
it ( 'should work with input and output' , ( ) = > {
2019-09-12 22:34:05 -04:00
const fileName = mockHost . addCode ( `
2019-01-30 13:34:36 -05:00
@Component ( {
selector : 'foo-component' ,
template : \ `
< div string - model ~ { stringMarker } = " text " > < / div >
< div number - model ~ { numberMarker } = " value " > < / div >
\ ` ,
} )
export class FooComponent {
text : string ;
value : number ;
}
2019-09-12 22:34:05 -04:00
` );
expectContains ( fileName , 'stringMarker' , '[model]' , '(model)' ) ;
expectContains ( fileName , 'numberMarker' , '[inputAlias]' , '(outputAlias)' ) ;
2019-01-30 13:34:36 -05:00
} ) ;
2019-09-12 22:34:05 -04:00
function expectContains ( fileName : string , locationMarker : string , . . . names : string [ ] ) {
2017-03-24 12:57:32 -04:00
let location = mockHost . getMarkerLocations ( fileName ) ! [ locationMarker ] ;
2016-11-22 12:10:23 -05:00
if ( location == null ) {
throw new Error ( ` No marker ${ locationMarker } found. ` ) ;
}
expectEntries ( locationMarker , ngService . getCompletionsAt ( fileName , location ) , . . . names ) ;
}
} ) ;
2019-07-31 13:55:45 -04:00
function expectEntries (
2019-08-12 19:54:36 -04:00
locationMarker : string , completion : ts.CompletionInfo | undefined , . . . names : string [ ] ) {
2016-11-22 12:10:23 -05:00
let entries : { [ name : string ] : boolean } = { } ;
2019-08-12 19:54:36 -04:00
if ( ! completion ) {
2016-11-22 12:10:23 -05:00
throw new Error (
` Expected result from ${ locationMarker } to include ${ names . join ( ', ' ) } but no result provided ` ) ;
}
2019-08-12 19:54:36 -04:00
if ( ! completion . entries . length ) {
2016-11-22 12:10:23 -05:00
throw new Error (
` Expected result from ${ locationMarker } to include ${ names . join ( ', ' ) } an empty result provided ` ) ;
2019-08-12 19:54:36 -04:00
}
for ( const entry of completion . entries ) {
entries [ entry . name ] = true ;
}
let missing = names . filter ( name = > ! entries [ name ] ) ;
if ( missing . length ) {
throw new Error (
` Expected result from ${ locationMarker } to include at least one of the following, ${ missing . join ( ', ' ) } , in the list of entries ${ completion . entries . map ( entry = > entry . name ) . join ( ', ' ) } ` ) ;
2016-11-22 12:10:23 -05:00
}
}
function buildUp ( originalText : string , cb : ( text : string , position : number ) = > void ) {
let count = originalText . length ;
let inString : boolean [ ] = ( new Array ( count ) ) . fill ( false ) ;
let unused : number [ ] = ( new Array ( count ) ) . fill ( 1 ) . map ( ( v , i ) = > i ) ;
function getText() {
return new Array ( count )
. fill ( 1 )
. map ( ( v , i ) = > i )
. filter ( i = > inString [ i ] )
. map ( i = > originalText [ i ] )
. join ( '' ) ;
}
function randomUnusedIndex() { return Math . floor ( Math . random ( ) * unused . length ) ; }
while ( unused . length > 0 ) {
let unusedIndex = randomUnusedIndex ( ) ;
let index = unused [ unusedIndex ] ;
if ( index == null ) throw new Error ( 'Internal test buildup error' ) ;
if ( inString [ index ] ) throw new Error ( 'Internal test buildup error' ) ;
inString [ index ] = true ;
unused . splice ( unusedIndex , 1 ) ;
let text = getText ( ) ;
2019-06-14 06:19:09 -04:00
let position = inString . filter ( ( _ , i ) = > i <= index )
. map ( v = > v ? 1 : 0 )
. reduce ( ( p : number , v ) = > p + v , 0 ) ;
2016-11-22 12:10:23 -05:00
cb ( text , position ) ;
}
}