2016-10-24 14:11:31 -04: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 {createInlineArray} from '../../src/compiler_util/identifier_util';
|
2016-11-23 12:42:19 -05:00
|
|
|
import {Identifiers, createIdentifier} from '../../src/identifiers';
|
2016-10-24 14:11:31 -04:00
|
|
|
import * as o from '../../src/output/output_ast';
|
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('createInlineArray', () => {
|
|
|
|
|
|
|
|
function check(argCount: number, expectedIdentifier: any) {
|
|
|
|
const args = createArgs(argCount);
|
|
|
|
expect(createInlineArray(args))
|
2016-11-23 12:42:19 -05:00
|
|
|
.toEqual(o.importExpr(createIdentifier(expectedIdentifier)).instantiate([
|
2016-10-24 14:11:31 -04:00
|
|
|
<o.Expression>o.literal(argCount)
|
|
|
|
].concat(args)));
|
|
|
|
}
|
|
|
|
|
|
|
|
function createArgs(count: number): o.Expression[] {
|
|
|
|
const result: o.Expression[] = [];
|
2016-11-12 08:08:58 -05:00
|
|
|
for (let i = 0; i < count; i++) {
|
2016-10-24 14:11:31 -04:00
|
|
|
result.push(o.NULL_EXPR);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
it('should work for arrays of length 0', () => {
|
|
|
|
expect(createInlineArray([
|
2016-11-23 12:42:19 -05:00
|
|
|
])).toEqual(o.importExpr(createIdentifier(Identifiers.EMPTY_INLINE_ARRAY)));
|
2016-10-24 14:11:31 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for arrays of length 1 - 2', () => {
|
|
|
|
check(1, Identifiers.inlineArrays[0]);
|
|
|
|
check(2, Identifiers.inlineArrays[1]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for arrays of length 3 - 4', () => {
|
2016-11-12 08:08:58 -05:00
|
|
|
for (let i = 3; i <= 4; i++) {
|
2016-10-24 14:11:31 -04:00
|
|
|
check(i, Identifiers.inlineArrays[2]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for arrays of length 5 - 8', () => {
|
2016-11-12 08:08:58 -05:00
|
|
|
for (let i = 5; i <= 8; i++) {
|
2016-10-24 14:11:31 -04:00
|
|
|
check(i, Identifiers.inlineArrays[3]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for arrays of length 9 - 16', () => {
|
2016-11-12 08:08:58 -05:00
|
|
|
for (let i = 9; i <= 16; i++) {
|
2016-10-24 14:11:31 -04:00
|
|
|
check(i, Identifiers.inlineArrays[4]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work for arrays of length > 16',
|
|
|
|
() => { check(17, Identifiers.InlineArrayDynamic); });
|
|
|
|
});
|
|
|
|
}
|