Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to test angular 2 component with nested components inside with their own dependencies ? (TestBed.configureTestingModule)

I have a component A that use a component B,c,D in its template:

###template-compA.html      <comp-b></comp-b>     <comp-c [myinput]="obj.myinput"></comp-c>     <comp-d ></comp-d> 

...etc

To simplify, let's say their is only one directive in component A:

 ###template-compA.html      <comp-b></comp-b> 

My comp-b has its own dependencies (services or other comp).

If I want to test comp-a this way:

TestBed.configureTestingModule({     declarations: [comp-A],     imports: [ReactiveFormsModule], }).overrideComponent(FAQListComponent, {     set: {     providers: [         { provide: comp-AService, useValue: comp-AListSVC }     ]     } })     .compileComponents(); 

it would not work properly. So I do:

TestBed.configureTestingModule({     declarations: [comp-A, comp-B],     imports: [ReactiveFormsModule], }).overrideComponent(FAQListComponent, {     set: {     providers: [         { provide: comp-AService, useValue: comp-AListSVC }     ]     } })     .compileComponents(); 

It doesn't work also because comp-b doesn't have its own dependencies. And here I am confused, how can I do unit test if I have to import and remock all others components every single time ? It looks like a very big amount of work. Is there another way? What would be the best practice to test component with nested componentS that have their own dependencies ?

Thanks a lot,

Stéphane.

like image 627
Stefdelec Avatar asked Mar 22 '17 11:03

Stefdelec


People also ask

Which method tests the component we are providing and ignores any child components that may be present in the component tree?

There are two fundamental ways to test Components with children: A unit test using shallow rendering. The child Components are not rendered. An integration test using deep rendering.


1 Answers

If you don't need to reference comp-b in any way in your tests you can add schemas: [NO_ERRORS_SCHEMA] or [CUSTOM_ELEMENTS_SCHEMA] to your TestBed configuration or override the comp-A's template and remove the tag for comp-b

If you do need to reference comp-b you may not need to provide it's dependencies specifically in an override.

Setting providers in overrideComponent is only necessary if the dependency is provided in the component itself. (If you have a providers list in comp-A.ts)

let's say comp-b needs a comp-AService and comp-AService is being provided in your comp-A override, since comp-b is a child of comp-A it will have comp-AService provided for it.

If you are providing these dependencies in your app.module or somewhere higher than the component itself you don't need to override. For example if comp-b needs comp-AService & someOtherService which are both being provided in your app.module your TestBed configuration could look like this:

TestBed.configureTestingModule({   declarations: [comp-A, comp-B],   imports: [ReactiveFormsModule],   providers: [     { provide: comp-AService, useValue: comp-AListSVC },     { provide: someOtherService, useValue: someOtherServiceSVC }   ] }) 

Edit:

You can read more about nested component testing here:

https://angular.io/guide/testing-components-scenarios#nested-component-tests

like image 86
Borquaye Avatar answered Oct 13 '22 19:10

Borquaye