Fix mod ui build issues
[dcaegen2/platform.git] / mod2 / ui / src / app / comp-spec-add / comp-spec-add.component.spec.ts
1 /* 
2  *  # ============LICENSE_START=======================================================
3  *  # Copyright (c) 2020 AT&T Intellectual Property. All rights reserved.
4  *  # ================================================================================
5  *  # Licensed under the Apache License, Version 2.0 (the "License");
6  *  # you may not use this file except in compliance with the License.
7  *  # You may obtain a copy of the License at
8  *  #
9  *  #      http://www.apache.org/licenses/LICENSE-2.0
10  *  #
11  *  # Unless required by applicable law or agreed to in writing, software
12  *  # distributed under the License is distributed on an "AS IS" BASIS,
13  *  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  # See the License for the specific language governing permissions and
15  *  # limitations under the License.
16  *  # ============LICENSE_END=========================================================
17  */
18
19 import { HttpClientTestingModule } from '@angular/common/http/testing';
20 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
21 import { FormControl, FormGroup, FormsModule, ReactiveFormsModule } from '@angular/forms';
22 import { RouterTestingModule } from '@angular/router/testing';
23 import { JwtHelperService, JWT_OPTIONS } from '@auth0/angular-jwt';
24 import { MessageService } from 'primeng/api';
25 import { ButtonModule } from 'primeng/button';
26 import { DialogModule } from 'primeng/dialog';
27 import { DropdownModule } from 'primeng/dropdown';
28 import { ToastModule } from 'primeng/toast';
29
30
31 import { CompSpecAddComponent } from './comp-spec-add.component';
32
33 describe('CompSpecAddComponent', () => {
34   let component: CompSpecAddComponent;
35   let fixture: ComponentFixture<CompSpecAddComponent>;
36
37   beforeEach(async(() => {
38     TestBed.configureTestingModule({
39       declarations: [CompSpecAddComponent],
40       imports: [
41         DialogModule,
42         DropdownModule,
43         ToastModule,
44         FormsModule,
45         ReactiveFormsModule,
46         ButtonModule,
47         HttpClientTestingModule,
48         RouterTestingModule
49       ],
50       providers: [
51         MessageService,
52         { provide: JWT_OPTIONS, useValue: JWT_OPTIONS },
53         JwtHelperService
54       ]
55     })
56       .compileComponents();
57   }));
58
59   beforeEach(() => {
60     fixture = TestBed.createComponent(CompSpecAddComponent);
61     component = fixture.componentInstance;
62     fixture.detectChanges();
63   });
64
65   it('should create', () => {
66     expect(component).toBeTruthy();
67   });
68
69   it(`should invalidate spec JSON structure`, async(() => {
70     const fixture = TestBed.createComponent(CompSpecAddComponent);
71     const app = fixture.debugElement.componentInstance;
72     let mockErrorJson = "test: 'test}"
73     app.compSpecContent = mockErrorJson
74     expect(() => app.validateJsonStructure()).toThrowError('JSON Structure error, quit!')
75   }));
76
77 });