/**
 * @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, NgLocalization} from '@angular/common';
import {Component, Injectable} 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],
        providers: [{provide: NgLocalization, useClass: TestLocalization}],
        imports: [CommonModule]
      });
    });
    it('should display the template according to the exact value', async(() => {
         var template = '
' +
             '
' +
             '- you have no messages.
 ' +
             '- you have one message.
 ' +
             '
 ';
         TestBed.overrideComponent(TestComponent, {set: {template: template}});
         let fixture = TestBed.createComponent(TestComponent);
         fixture.debugElement.componentInstance.switchValue = 0;
         fixture.detectChanges();
         expect(fixture.debugElement.nativeElement).toHaveText('you have no messages.');
         fixture.debugElement.componentInstance.switchValue = 1;
         fixture.detectChanges();
         expect(fixture.debugElement.nativeElement).toHaveText('you have one message.');
       }));
    // https://github.com/angular/angular/issues/9868
    // https://github.com/angular/angular/issues/9882
    it('should not throw when ngPluralCase contains expressions', async(() => {
         var template = '' +
             '
' +
             '- {{ switchValue }}
 ' +
             '
 ';
         TestBed.overrideComponent(TestComponent, {set: {template: template}});
         let fixture = TestBed.createComponent(TestComponent);
         fixture.debugElement.componentInstance.switchValue = 0;
         expect(() => fixture.detectChanges()).not.toThrow();
       }));
    it('should be applicable to  elements', async(() => {
         var template = '' +
             '' +
             'you have no messages.' +
             'you have one message.' +
             '
';
         TestBed.overrideComponent(TestComponent, {set: {template: template}});
         let fixture = TestBed.createComponent(TestComponent);
         fixture.debugElement.componentInstance.switchValue = 0;
         fixture.detectChanges();
         expect(fixture.debugElement.nativeElement).toHaveText('you have no messages.');
         fixture.debugElement.componentInstance.switchValue = 1;
         fixture.detectChanges();
         expect(fixture.debugElement.nativeElement).toHaveText('you have one message.');
       }));
    it('should display the template according to the category', async(() => {
         var template = '' +
             '
' +
             '- you have a few messages.
 ' +
             '- you have many messages.
 ' +
             '
 ';
         TestBed.overrideComponent(TestComponent, {set: {template: template}});
         let fixture = TestBed.createComponent(TestComponent);
         fixture.debugElement.componentInstance.switchValue = 2;
         fixture.detectChanges();
         expect(fixture.debugElement.nativeElement).toHaveText('you have a few messages.');
         fixture.debugElement.componentInstance.switchValue = 8;
         fixture.detectChanges();
         expect(fixture.debugElement.nativeElement).toHaveText('you have many messages.');
       }));
    it('should default to other when no matches are found', async(() => {
         var template = '' +
             '
' +
             '- you have a few messages.
 ' +
             '- default message.
 ' +
             '
 ';
         TestBed.overrideComponent(TestComponent, {set: {template: template}});
         let fixture = TestBed.createComponent(TestComponent);
         fixture.debugElement.componentInstance.switchValue = 100;
         fixture.detectChanges();
         expect(fixture.debugElement.nativeElement).toHaveText('default message.');
       }));
    it('should prioritize value matches over category matches', async(() => {
         var template = '' +
             '
' +
             '- you have a few messages.
 ' +
             'you have two messages.' +
             '
 ';
         TestBed.overrideComponent(TestComponent, {set: {template: template}});
         let fixture = TestBed.createComponent(TestComponent);
         fixture.debugElement.componentInstance.switchValue = 2;
         fixture.detectChanges();
         expect(fixture.debugElement.nativeElement).toHaveText('you have two messages.');
         fixture.debugElement.componentInstance.switchValue = 3;
         fixture.detectChanges();
         expect(fixture.debugElement.nativeElement).toHaveText('you have a few messages.');
       }));
  });
}
@Injectable()
class TestLocalization extends NgLocalization {
  getPluralCategory(value: number): string {
    if (value > 1 && value < 4) {
      return 'few';
    }
    if (value >= 4 && value < 10) {
      return 'many';
    }
    return 'other';
  }
}
@Component({selector: 'test-cmp', template: ''})
class TestComponent {
  switchValue: number = null;
}