typescript 角度测试
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 角度测试相关的知识,希望对你有一定的参考价值。
/* tslint:disable:no-unused-variable */
import { TestBed, async } from '@angular/core/testing';
import { AppComponent } from './app.component';
describe('App: CompleteGuideFinalWebpack', () => {
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [
AppComponent
],
});
});
it('should create the app', async(() => {
let fixture = TestBed.createComponent(AppComponent);
let app = fixture.debugElement.componentInstance;
expect(app).toBeTruthy();
}));
it(`should have as title 'app works!'`, async(() => {
let fixture = TestBed.createComponent(AppComponent);
let app = fixture.debugElement.componentInstance;
expect(app.title).toEqual('app works!');
}));
it('should render title in a h1 tag', async(() => {
let fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
let compiled = fixture.debugElement.nativeElement;
expect(compiled.querySelector('h1').textContent).toContain('app works!');
}));
});
/* tslint:disable:no-unused-variable */
import { TestBed, async, fakeAsync, tick } from '@angular/core/testing';
import { UserComponent } from './user.component';
import { UserService } from "./user.service";
import { DataService } from "../shared/data.service";
describe('Component: User', () => {
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [UserComponent]
});
});
it('should create the app', () => {
let fixture = TestBed.createComponent(UserComponent);
let app = fixture.debugElement.componentInstance;
expect(app).toBeTruthy();
});
it('should use the user name from the service', () => {
let fixture = TestBed.createComponent(UserComponent);
let app = fixture.debugElement.componentInstance;
let userService = fixture.debugElement.injector.get(UserService);
fixture.detectChanges();
expect(userService.user.name).toEqual(app.user.name);
});
it('should display the user name if user is logged in', () => {
let fixture = TestBed.createComponent(UserComponent);
let app = fixture.debugElement.componentInstance;
app.isLoggedIn = true;
fixture.detectChanges();
let compiled = fixture.debugElement.nativeElement;
expect(compiled.querySelector('p').textContent).toContain(app.user.name);
});
it('shouldn\'t display the user name if user is not logged in', () => {
let fixture = TestBed.createComponent(UserComponent);
let app = fixture.debugElement.componentInstance;
fixture.detectChanges();
let compiled = fixture.debugElement.nativeElement;
expect(compiled.querySelector('p').textContent).not.toContain(app.user.name);
});
it('shouldn\'t fetch data successfully if not called asynchronously', () => {
let fixture = TestBed.createComponent(UserComponent);
let app = fixture.debugElement.componentInstance;
let dataService = fixture.debugElement.injector.get(DataService);
let spy = spyOn(dataService, 'getDetails')
.and.returnValue(Promise.resolve('Data'));
fixture.detectChanges();
expect(app.data).toBe(undefined);
});
it('should fetch data successfully if called asynchronously', async(() => {
let fixture = TestBed.createComponent(UserComponent);
let app = fixture.debugElement.componentInstance;
let dataService = fixture.debugElement.injector.get(DataService);
let spy = spyOn(dataService, 'getDetails')
.and.returnValue(Promise.resolve('Data'));
fixture.detectChanges();
fixture.whenStable().then(() => {
expect(app.data).toBe('Data');
});
}));
it('should fetch data successfully if called asynchronously', fakeAsync(() => {
let fixture = TestBed.createComponent(UserComponent);
let app = fixture.debugElement.componentInstance;
let dataService = fixture.debugElement.injector.get(DataService);
let spy = spyOn(dataService, 'getDetails')
.and.returnValue(Promise.resolve('Data'));
fixture.detectChanges();
tick();
expect(app.data).toBe('Data');
}));
});
/* tslint:disable:no-unused-variable */
import { ReversePipe } from "./reverse.pipe";
describe('Pipe: ReversePipe', () => {
it('should reverse the inputs', () => {
let reversePipe = new ReversePipe();
expect(reversePipe.transform('hello')).toEqual('olleh');
});
});
以上是关于typescript 角度测试的主要内容,如果未能解决你的问题,请参考以下文章