2015-01-09 03:16:12 -05:00
|
|
|
import {describe, xit, it, expect, beforeEach, ddescribe, iit, el} from 'test_lib/test_lib';
|
2015-02-02 19:25:34 -05:00
|
|
|
import {DOM} from 'facade/src/dom';
|
2015-01-09 03:16:12 -05:00
|
|
|
import {Injector} from 'di/di';
|
2015-01-21 15:05:52 -05:00
|
|
|
import {Lexer, Parser, dynamicChangeDetection} from 'change_detection/change_detection';
|
2015-02-02 19:25:34 -05:00
|
|
|
import {Compiler, CompilerCache} from 'core/src/compiler/compiler';
|
|
|
|
import {DirectiveMetadataReader} from 'core/src/compiler/directive_metadata_reader';
|
|
|
|
import {Component} from 'core/src/annotations/annotations';
|
|
|
|
import {TemplateConfig} from 'core/src/annotations/template_config';
|
|
|
|
import {NgSwitch, NgSwitchWhen, NgSwitchDefault} from 'directives/src/ng_switch';
|
2015-01-09 03:16:12 -05:00
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('ng-switch', () => {
|
|
|
|
var view, cd, compiler, component;
|
|
|
|
beforeEach(() => {
|
2015-01-21 15:05:52 -05:00
|
|
|
compiler = new Compiler(dynamicChangeDetection, null, new DirectiveMetadataReader(),
|
|
|
|
new Parser(new Lexer()), new CompilerCache());
|
2015-01-09 03:16:12 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
function createView(pv) {
|
|
|
|
component = new TestComponent();
|
|
|
|
view = pv.instantiate(null);
|
|
|
|
view.hydrate(new Injector([]), null, component);
|
|
|
|
cd = view.changeDetector;
|
|
|
|
}
|
|
|
|
|
|
|
|
function compileWithTemplate(template) {
|
|
|
|
return compiler.compile(TestComponent, el(template));
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('switch value changes', () => {
|
|
|
|
it('should switch amongst when values', (done) => {
|
|
|
|
var template = '<div>' +
|
|
|
|
'<ul [ng-switch]="switchValue">' +
|
|
|
|
'<template [ng-switch-when]="\'a\'"><li>when a</li></template>' +
|
|
|
|
'<template [ng-switch-when]="\'b\'"><li>when b</li></template>' +
|
|
|
|
'</ul></div>';
|
|
|
|
compileWithTemplate(template).then((pv) => {
|
|
|
|
createView(pv);
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('');
|
|
|
|
|
|
|
|
component.switchValue = 'a';
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when a');
|
|
|
|
|
|
|
|
component.switchValue = 'b';
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when b');
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should switch amongst when values with fallback to default', (done) => {
|
|
|
|
var template = '<div>' +
|
|
|
|
'<ul [ng-switch]="switchValue">' +
|
|
|
|
'<li template="ng-switch-when \'a\'">when a</li>' +
|
|
|
|
'<li template="ng-switch-default">when default</li>' +
|
|
|
|
'</ul></div>';
|
|
|
|
compileWithTemplate(template).then((pv) => {
|
|
|
|
createView(pv);
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when default');
|
|
|
|
|
|
|
|
component.switchValue = 'a';
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when a');
|
|
|
|
|
|
|
|
component.switchValue = 'b';
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when default');
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should support multiple whens with the same value', (done) => {
|
|
|
|
var template = '<div>' +
|
|
|
|
'<ul [ng-switch]="switchValue">' +
|
|
|
|
'<template [ng-switch-when]="\'a\'"><li>when a1;</li></template>' +
|
|
|
|
'<template [ng-switch-when]="\'b\'"><li>when b1;</li></template>' +
|
|
|
|
'<template [ng-switch-when]="\'a\'"><li>when a2;</li></template>' +
|
|
|
|
'<template [ng-switch-when]="\'b\'"><li>when b2;</li></template>' +
|
|
|
|
'<template [ng-switch-default]><li>when default1;</li></template>' +
|
|
|
|
'<template [ng-switch-default]><li>when default2;</li></template>' +
|
|
|
|
'</ul></div>';
|
|
|
|
compileWithTemplate(template).then((pv) => {
|
|
|
|
createView(pv);
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when default1;when default2;');
|
|
|
|
|
|
|
|
component.switchValue = 'a';
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when a1;when a2;');
|
|
|
|
|
|
|
|
component.switchValue = 'b';
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when b1;when b2;');
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('when values changes', () => {
|
|
|
|
it('should switch amongst when values', (done) => {
|
|
|
|
var template = '<div>' +
|
|
|
|
'<ul [ng-switch]="switchValue">' +
|
|
|
|
'<template [ng-switch-when]="when1"><li>when 1;</li></template>' +
|
|
|
|
'<template [ng-switch-when]="when2"><li>when 2;</li></template>' +
|
|
|
|
'<template [ng-switch-default]><li>when default;</li></template>' +
|
|
|
|
'</ul></div>';
|
|
|
|
compileWithTemplate(template).then((pv) => {
|
|
|
|
createView(pv);
|
|
|
|
|
|
|
|
component.when1 = 'a';
|
|
|
|
component.when2 = 'b';
|
|
|
|
component.switchValue = 'a';
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when 1;');
|
|
|
|
|
|
|
|
component.switchValue = 'b';
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when 2;');
|
|
|
|
|
|
|
|
component.switchValue = 'c';
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when default;');
|
|
|
|
|
|
|
|
component.when1 = 'c';
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when 1;');
|
|
|
|
|
|
|
|
component.when1 = 'd';
|
|
|
|
cd.detectChanges();
|
|
|
|
expect(DOM.getText(view.nodes[0])).toEqual('when default;');
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'test-cmp',
|
|
|
|
template: new TemplateConfig({
|
|
|
|
inline: '', // each test swaps with a custom template.
|
|
|
|
directives: [NgSwitch, NgSwitchWhen, NgSwitchDefault]
|
|
|
|
})
|
|
|
|
})
|
|
|
|
class TestComponent {
|
|
|
|
switchValue: any;
|
|
|
|
when1: any;
|
|
|
|
when2: any;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
this.switchValue = null;
|
|
|
|
this.when1 = null;
|
|
|
|
this.when2 = null;
|
|
|
|
}
|
|
|
|
}
|