4767de6db974e47d2d450985c02fdef10d63db90
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / ei-coordinator / ei-coordinator.component.spec.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
21 import { BrowserAnimationsModule } from '@angular/platform-browser/animations'
22 import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
23 import { FormBuilder, ReactiveFormsModule } from '@angular/forms';
24 import { MatIconModule } from '@angular/material/icon';
25 import { MatTableModule } from '@angular/material/table';
26
27 import { EICoordinatorComponent } from './ei-coordinator.component';
28 import { EIJobDataSource } from './ei-job.datasource';
29 import { EIProducerDataSource } from './ei-producer.datasource';
30 import { UiService } from '../services/ui/ui.service';
31
32 describe('EICoordinatorComponent', () => {
33   let component: EICoordinatorComponent;
34   let fixture: ComponentFixture<EICoordinatorComponent>;
35
36   beforeEach(async(() => {
37     const jobDataSourceSpy = jasmine.createSpyObj('EIJobDataSource', [ 'loadJobs', 'eiJobs' ]);
38     const producerDataSourceSpy = jasmine.createSpyObj('EIProducerDataSource', [ 'loadProducers', 'eiProducers' ]);
39
40     jobDataSourceSpy.eiJobs.and.returnValue([]);
41
42     producerDataSourceSpy.eiProducers.and.returnValue([]);
43
44     TestBed.configureTestingModule({
45       imports: [
46         MatIconModule,
47         MatTableModule,
48         BrowserAnimationsModule,
49         ReactiveFormsModule
50       ],
51       schemas: [
52         CUSTOM_ELEMENTS_SCHEMA
53       ],
54       declarations: [
55         EICoordinatorComponent
56       ],
57       providers: [
58         { provide: EIJobDataSource, useValue: jobDataSourceSpy },
59         { provide: EIProducerDataSource, useValue: producerDataSourceSpy },
60         UiService,
61         FormBuilder,
62       ]
63     })
64     .compileComponents();
65   }));
66
67   beforeEach(() => {
68     fixture = TestBed.createComponent(EICoordinatorComponent);
69     component = fixture.componentInstance;
70     fixture.detectChanges();
71   });
72
73   it('should create', () => {
74     expect(component).toBeTruthy();
75   });
76 });