Support Tosca Function For Operation Implmentation Properties
[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 import {ToscaFunction} from '../../../../../../models/tosca-function';
30 import {InstanceFeDetails} from "../../../../../../models/instance-fe-details";
31
32 @Component({selector: 'app-input-list-item', template: ''})
33 class InputListItemStubComponent {
34   @Input() name: string;
35   @Input() type: DataTypeModel;
36   @Input() dataTypeMap: any;
37   @Input() valueObjRef: any;
38   @Input() schema: any;
39   @Input() allowDeletion: any;
40   @Input() isViewOnly: boolean;
41   @Input() toscaFunction: ToscaFunction;
42   @Input() showToscaFunctionOption: boolean;
43   @Input() componentInstanceMap: Map<string, InstanceFeDetails> = null;
44 }
45
46 const translateServiceMock: Partial<TranslateService> = {
47   translate: jest.fn((str: string) => {
48   })
49 };
50
51 describe('InputListComponent', () => {
52   let component: InputListComponent;
53   let fixture: ComponentFixture<InputListComponent>;
54
55   beforeEach(async(() => {
56     TestBed.configureTestingModule({
57       declarations: [ InputListComponent, InputListItemStubComponent ],
58       imports: [
59         TranslateModule
60       ],
61       providers: [
62         { provide: TranslateService, useValue: translateServiceMock }
63       ]
64     })
65     .compileComponents();
66   }));
67
68   beforeEach(() => {
69     fixture = TestBed.createComponent(InputListComponent);
70     component = fixture.componentInstance;
71     fixture.detectChanges();
72   });
73
74   it('should create', () => {
75     expect(component).toBeDefined();
76   });
77 });