Support complex types in interface operation inputs
[sdc.git] / catalog-ui / src / app / ng2 / pages / composition / interface-operatons / operation-creator / input-list / input-list.component.spec.ts
1 /*
2  * -
3  *  ============LICENSE_START=======================================================
4  *  Copyright (C) 2022 Nordix Foundation.
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *       http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 import {async, ComponentFixture, TestBed} from '@angular/core/testing';
23
24 import {InputListComponent} from './input-list.component';
25 import {TranslateModule} from '../../../../../shared/translator/translate.module';
26 import {Component, Input} from '@angular/core';
27 import {DataTypeModel} from '../../../../../../models/data-types';
28 import {TranslateService} from '../../../../../shared/translator/translate.service';
29
30 @Component({selector: 'app-input-list-item', template: ''})
31 class InputListItemStubComponent {
32   @Input() name: string;
33   @Input() type: DataTypeModel;
34   @Input() dataTypeMap: any;
35   @Input() valueObjRef: any;
36   @Input() schema: any;
37   @Input() isViewOnly: boolean;
38 }
39
40 const translateServiceMock: Partial<TranslateService> = {
41   translate: jest.fn((str: string) => {
42   })
43 };
44
45 describe('InputListComponent', () => {
46   let component: InputListComponent;
47   let fixture: ComponentFixture<InputListComponent>;
48
49   beforeEach(async(() => {
50     TestBed.configureTestingModule({
51       declarations: [ InputListComponent, InputListItemStubComponent ],
52       imports: [ TranslateModule ],
53       providers: [
54         { provide: TranslateService, useValue: translateServiceMock }
55       ]
56     })
57     .compileComponents();
58   }));
59
60   beforeEach(() => {
61     fixture = TestBed.createComponent(InputListComponent);
62     component = fixture.componentInstance;
63     fixture.detectChanges();
64   });
65
66   it('should create', () => {
67     expect(component).toBeDefined();
68   });
69 });