/**
 * @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 {CommonModule} from '@angular/common';
import {Component} from '@angular/core';
import {TestBed, async} from '@angular/core/testing';
import {expect} from '@angular/platform-browser/testing/matchers';
export function main() {
  describe('switch', () => {
    beforeEach(() => {
      TestBed.configureTestingModule({declarations: [TestComponent], imports: [CommonModule]});
    });
    describe('switch value changes', () => {
      it('should switch amongst when values', async(() => {
           var template = '
' +
               '
' +
               '- when a
 ' +
               '- when b
 ' +
               '
 ';
           TestBed.overrideComponent(TestComponent, {set: {template: template}});
           let fixture = TestBed.createComponent(TestComponent);
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('');
           fixture.debugElement.componentInstance.switchValue = 'a';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when a');
           fixture.debugElement.componentInstance.switchValue = 'b';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when b');
         }));
      // TODO(robwormald): deprecate and remove
      it('should switch amongst when values using switchCase', async(() => {
           var template = '' +
               '
' +
               '- when a
 ' +
               '- when b
 ' +
               '
 ';
           TestBed.overrideComponent(TestComponent, {set: {template: template}});
           let fixture = TestBed.createComponent(TestComponent);
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('');
           fixture.debugElement.componentInstance.switchValue = 'a';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when a');
           fixture.debugElement.componentInstance.switchValue = 'b';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when b');
         }));
      it('should switch amongst when values with fallback to default', async(() => {
           var template = '' +
               '
' +
               '- when a
 ' +
               '- when default
 ' +
               '
 ';
           TestBed.overrideComponent(TestComponent, {set: {template: template}});
           let fixture = TestBed.createComponent(TestComponent);
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when default');
           fixture.debugElement.componentInstance.switchValue = 'a';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when a');
           fixture.debugElement.componentInstance.switchValue = 'b';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when default');
         }));
      it('should support multiple whens with the same value', async(() => {
           var template = '' +
               '
' +
               '- when a1;
 ' +
               '- when b1;
 ' +
               '- when a2;
 ' +
               '- when b2;
 ' +
               '- when default1;
 ' +
               '- when default2;
 ' +
               '
 ';
           TestBed.overrideComponent(TestComponent, {set: {template: template}});
           let fixture = TestBed.createComponent(TestComponent);
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when default1;when default2;');
           fixture.debugElement.componentInstance.switchValue = 'a';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when a1;when a2;');
           fixture.debugElement.componentInstance.switchValue = 'b';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when b1;when b2;');
         }));
    });
    describe('when values changes', () => {
      it('should switch amongst when values', async(() => {
           var template = '' +
               '
' +
               '- when 1;
 ' +
               '- when 2;
 ' +
               '- when default;
 ' +
               '
 ';
           TestBed.overrideComponent(TestComponent, {set: {template: template}});
           let fixture = TestBed.createComponent(TestComponent);
           fixture.debugElement.componentInstance.when1 = 'a';
           fixture.debugElement.componentInstance.when2 = 'b';
           fixture.debugElement.componentInstance.switchValue = 'a';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when 1;');
           fixture.debugElement.componentInstance.switchValue = 'b';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when 2;');
           fixture.debugElement.componentInstance.switchValue = 'c';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when default;');
           fixture.debugElement.componentInstance.when1 = 'c';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when 1;');
           fixture.debugElement.componentInstance.when1 = 'd';
           fixture.detectChanges();
           expect(fixture.debugElement.nativeElement).toHaveText('when default;');
         }));
    });
  });
}
@Component({selector: 'test-cmp', template: ''})
class TestComponent {
  switchValue: any;
  when1: any;
  when2: any;
  constructor() {
    this.switchValue = null;
    this.when1 = null;
    this.when2 = null;
  }
}