130 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			130 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * @license
 | 
						|
 * Copyright Google LLC 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 {animate, style, transition, trigger} from '@angular/animations';
 | 
						|
import {ɵAnimationEngine} from '@angular/animations/browser';
 | 
						|
import {Component} from '@angular/core';
 | 
						|
import {TestBed} from '@angular/core/testing';
 | 
						|
import {BrowserAnimationsModule, NoopAnimationsModule} from '@angular/platform-browser/animations';
 | 
						|
 | 
						|
describe('NoopAnimationsModule', () => {
 | 
						|
  beforeEach(() => {
 | 
						|
    TestBed.configureTestingModule({imports: [NoopAnimationsModule]});
 | 
						|
  });
 | 
						|
 | 
						|
  noopAnimationTests();
 | 
						|
});
 | 
						|
 | 
						|
describe('BrowserAnimationsModule with disableAnimations = true', () => {
 | 
						|
  beforeEach(() => {
 | 
						|
    TestBed.configureTestingModule(
 | 
						|
        {imports: [BrowserAnimationsModule.withConfig({disableAnimations: true})]});
 | 
						|
  });
 | 
						|
 | 
						|
  noopAnimationTests();
 | 
						|
});
 | 
						|
 | 
						|
 | 
						|
function noopAnimationTests() {
 | 
						|
  it('should flush and fire callbacks when the zone becomes stable', (async) => {
 | 
						|
    // This test is only meant to be run inside the browser.
 | 
						|
    if (isNode) {
 | 
						|
      async();
 | 
						|
      return;
 | 
						|
    }
 | 
						|
 | 
						|
    @Component({
 | 
						|
      selector: 'my-cmp',
 | 
						|
      template:
 | 
						|
          '<div [@myAnimation]="exp" (@myAnimation.start)="onStart($event)" (@myAnimation.done)="onDone($event)"></div>',
 | 
						|
      animations: [trigger(
 | 
						|
          'myAnimation',
 | 
						|
          [transition(
 | 
						|
              '* => state', [style({'opacity': '0'}), animate(500, style({'opacity': '1'}))])])],
 | 
						|
    })
 | 
						|
    class Cmp {
 | 
						|
      exp: any;
 | 
						|
      startEvent: any;
 | 
						|
      doneEvent: any;
 | 
						|
      onStart(event: any) {
 | 
						|
        this.startEvent = event;
 | 
						|
      }
 | 
						|
      onDone(event: any) {
 | 
						|
        this.doneEvent = event;
 | 
						|
      }
 | 
						|
    }
 | 
						|
 | 
						|
    TestBed.configureTestingModule({declarations: [Cmp]});
 | 
						|
 | 
						|
    const fixture = TestBed.createComponent(Cmp);
 | 
						|
    const cmp = fixture.componentInstance;
 | 
						|
    cmp.exp = 'state';
 | 
						|
    fixture.detectChanges();
 | 
						|
    fixture.whenStable().then(() => {
 | 
						|
      expect(cmp.startEvent.triggerName).toEqual('myAnimation');
 | 
						|
      expect(cmp.startEvent.phaseName).toEqual('start');
 | 
						|
      expect(cmp.doneEvent.triggerName).toEqual('myAnimation');
 | 
						|
      expect(cmp.doneEvent.phaseName).toEqual('done');
 | 
						|
      async();
 | 
						|
    });
 | 
						|
  });
 | 
						|
 | 
						|
  it('should handle leave animation callbacks even if the element is destroyed in the process',
 | 
						|
     (async) => {
 | 
						|
       // This test is only meant to be run inside the browser.
 | 
						|
       if (isNode) {
 | 
						|
         async();
 | 
						|
         return;
 | 
						|
       }
 | 
						|
 | 
						|
       @Component({
 | 
						|
         selector: 'my-cmp',
 | 
						|
         template:
 | 
						|
             '<div *ngIf="exp" @myAnimation (@myAnimation.start)="onStart($event)" (@myAnimation.done)="onDone($event)"></div>',
 | 
						|
         animations: [trigger(
 | 
						|
             'myAnimation',
 | 
						|
             [transition(
 | 
						|
                 ':leave', [style({'opacity': '0'}), animate(500, style({'opacity': '1'}))])])],
 | 
						|
       })
 | 
						|
       class Cmp {
 | 
						|
         exp: any;
 | 
						|
         startEvent: any;
 | 
						|
         doneEvent: any;
 | 
						|
         onStart(event: any) {
 | 
						|
           this.startEvent = event;
 | 
						|
         }
 | 
						|
         onDone(event: any) {
 | 
						|
           this.doneEvent = event;
 | 
						|
         }
 | 
						|
       }
 | 
						|
 | 
						|
       TestBed.configureTestingModule({declarations: [Cmp]});
 | 
						|
       const engine = TestBed.inject(ɵAnimationEngine);
 | 
						|
       const fixture = TestBed.createComponent(Cmp);
 | 
						|
       const cmp = fixture.componentInstance;
 | 
						|
 | 
						|
       cmp.exp = true;
 | 
						|
       fixture.detectChanges();
 | 
						|
       fixture.whenStable().then(() => {
 | 
						|
         cmp.startEvent = null;
 | 
						|
         cmp.doneEvent = null;
 | 
						|
 | 
						|
         cmp.exp = false;
 | 
						|
         fixture.detectChanges();
 | 
						|
         fixture.whenStable().then(() => {
 | 
						|
           expect(cmp.startEvent.triggerName).toEqual('myAnimation');
 | 
						|
           expect(cmp.startEvent.phaseName).toEqual('start');
 | 
						|
           expect(cmp.startEvent.toState).toEqual('void');
 | 
						|
           expect(cmp.doneEvent.triggerName).toEqual('myAnimation');
 | 
						|
           expect(cmp.doneEvent.phaseName).toEqual('done');
 | 
						|
           expect(cmp.doneEvent.toState).toEqual('void');
 | 
						|
           async();
 | 
						|
         });
 | 
						|
       });
 | 
						|
     });
 | 
						|
}
 |