我正在开发一个github repository(带角度7和角度cli),我在Karma和Jasmine的主分支中进行了一些测试。
现在我正在尝试添加延迟加载功能,事情是,之前通过的测试,现在他们没有。这很有趣,因为只有延迟加载模块的测试失败...
以下是代码和错误:
import {async, TestBed} from '@angular/core/testing';
import {APP_BASE_HREF} from '@angular/common';
import {AppModule} from '../../app.module';
import {HeroDetailComponent} from './hero-detail.component';
describe('HeroDetailComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [AppModule
],
providers: [
{provide: APP_BASE_HREF, useValue: '/'}
],
}).compileComponents();
}));
it('should create hero detail component', (() => {
const fixture = TestBed.createComponent(HeroDetailComponent);
const component = fixture.debugElement.componentInstance;
expect(component).toBeTruthy();
}));
});
错误是这样的:
Chrome 58.0.3029 (Mac OS X 10.12.6) HeroDetailComponent should create hero detail component FAILED
Error: Illegal state: Could not load the summary for directive HeroDetailComponent.
at syntaxError Users/ismael.ramos.silvan/WebstormProjects/angular4-example-app/~/@angular/compiler/@angular/compiler.es5.js:1690:22)
at CompileMetadataResolver.getDirectiveSummary Users/ismael.ramos.silvan/WebstormProjects/angular4-example-app/~/@angular/compiler/@angular/compiler.es5.js:15272:1)
at JitCompiler.getComponentFactory Users/ismael.ramos.silvan/WebstormProjects/angular4-example-app/~/@angular/compiler/@angular/compiler.es5.js:26733:26)
at TestingCompilerImpl.getComponentFactory Users/ismael.ramos.silvan/WebstormProjects/angular4-example-app/~/@angular/compiler/@angular/compiler/testing.es5.js:484:1)
at TestBed.createComponent Users/ismael.ramos.silvan/WebstormProjects/angular4-example-app/~/@angular/core/@angular/core/testing.es5.js:874:1)
at Function.TestBed.createComponent Users/ismael.ramos.silvan/WebstormProjects/angular4-example-app/~/@angular/core/@angular/core/testing.es5.js:652:1)
at UserContext.it Users/ismael.ramos.silvan/WebstormProjects/angular4-example-app/src/app/heroes/hero-detail/hero-detail.component.spec.ts:18:29)
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invoke Users/ismael.ramos.silvan/WebstormProjects/angular4-example-app/~/zone.js/dist/zone.js:391:1)
at ProxyZoneSpec.onInvoke Users/ismael.ramos.silvan/WebstormProjects/angular4-example-app/~/zone.js/dist/proxy.js:79:1)
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invoke Users/ismael.ramos.silvan/WebstormProjects/angular4-example-app/~/zone.js/dist/zone.js:390:1)
如果需要,您可以查看整个项目,了解更多详情。
更新:添加如下声明:
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
AppModule
],
declarations: [HeroDetailComponent],
providers: [
{provide: APP_BASE_HREF, useValue: '/'}
],
}).compileComponents();
}));
现在,出现新错误:
The pipe 'translate' could not be found ("<h1 class="section-title">{{[ERROR ->]'heroDetail' | translate}}</h1>
<md-progress-spinner *ngIf="!hero"
class="progre"): ng:///DynamicTestModule/HeroDetailComponent.html@0:28
Can't bind to 'color' since it isn't a known property of 'md-progress-spinner'.
更多......就像角度材料中的所有指令和组件一样,并且ngx-translate / core的管道转换似乎不包括在内......
更新:最终解决方案
问题是HeroesModule没有被导入任何地方。 这样可行,因为HeroesModule声明了HeroDetailComponent,这是最初的问题:
import {async, TestBed} from '@angular/core/testing';
import {APP_BASE_HREF} from '@angular/common';
import {AppModule} from '../../app.module';
import {HeroDetailComponent} from './hero-detail.component';
import {HeroesModule} from '../heroes.module';
describe('HeroDetailComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [
AppModule,
HeroesModule
],
providers: [
{provide: APP_BASE_HREF, useValue: '/'}
],
}).compileComponents();
}));
it('should create hero detail component', (() => {
const fixture = TestBed.createComponent(HeroDetailComponent);
const component = fixture.debugElement.componentInstance;
expect(component).toBeTruthy();
}));
});
答案 0 :(得分:109)
您已将HeroDetailComponent
传递给TestBed.createComponent()
而未先声明该组件:
TestBed.configureTestingModule({
imports: [AppModule,
CommonModule,
FormsModule,
SharedModule,
HeroRoutingModule,
ReactiveFormsModule
],
providers: [
{provide: APP_BASE_HREF, useValue: '/'}
],
declarations: [HeroDetailComponent]
}).compileComponents();
希望它有所帮助。
更新您的测试中的以下错误:添加了一些更多的导入(只需将您的HeroModule作为蓝图,因为它基本上是您要导入和提供的内容)。
答案 1 :(得分:5)
您缺少声明,您需要将正在测试的类添加到声明中。
declarations: [component]
答案 2 :(得分:2)
由于缺少TestBed配置提供程序中的声明和服务中的添加组件而引发的此类错误。
beforeEach(() => {
TestBed.configureTestingModule({
imports: [RouterTestingModule.withRoutes([
{ path: 'home', component: DummyComponent },
{ path: 'patients/find', component: DummyComponent }
])],
declarations: [RoutingComponent, DummyComponent,BreadcrumbComponent],
providers : [BreadCrumbService]
});
答案 3 :(得分:2)
我和我的同事都遇到了这个问题,但解决方法与互联网上的其他工具完全不同。
我们正在使用Visual Studio Code,并且文件夹名称不区分大小写。因此,我们要求每个人都使用小写字母命名约定,但最终在源代码管理中使用了大写字母。我们以一种环岛的方式将其重命名,一切都很好。
一个月后,我的同事开始进行特定的单元测试,以打破此错误消息。只有他的计算机在该测试上坏了。我们从字面上注释掉了所有可能影响测试的代码,但仍然出现错误。最后,我全局搜索了该类,我们意识到文件夹名称已还原为大写名称。我们将其重命名为小写名称,没有可能识别出的未决更改可以添加...,并且测试有效。
让我们成为遵循样式指南的一课。 :)
为清楚起见,此修复类似于将文件夹名称FOO
更改为foo
。
答案 4 :(得分:1)
您必须以正确的方式导入组件 HeroDetailComponent 。 注意即使是字母也是路径中的问题。即('@ angular / forms'是正确的,但是'@ angular / Forms'不是。
答案 5 :(得分:1)
对于那些仍然对此有疑问的人-我读了一个单独的github问题,讨论了Angular团队对beforeEach回调函数所做的更改。
这是我所做的:
beforeAll(async(() => {
TestBed.configureTestingModule({
declarations: [BannerNotificationComponent]
}).compileComponents()
fixture = TestBed.createComponent(BannerNotificationComponent);
component = fixture.componentInstance;
fixture.detectChanges();
}));
使用beforeAll可以解决此问题。希望这对其他人有所帮助,因为我花了一天的时间才能解决这个晦涩的错误。
答案 6 :(得分:0)
如果要在不编译的情况下测试组件,则可以将其声明为提供程序:
beforeEach(() => {
TestBed.configureTestingModule({
// provide the component-under-test and dependent service
providers: [
WelcomeComponent,
{ provide: UserService, useClass: MockUserService }
]
});
// inject both the component and the dependent service.
comp = TestBed.get(WelcomeComponent);
userService = TestBed.get(UserService);
});
答案 7 :(得分:0)
我在测试套件中导入了错误的模块!更正导入的模块修复了此错误。
答案 8 :(得分:0)
答案复制出问题
问题是 HeroesModule 没有被导入到任何地方。 这是可行的,因为 HeroesModule 声明了 HeroDetailComponent,这是最初的问题:
jsonPath.getMap("$")