UI support for default custom function names
[sdc.git] / catalog-ui / src / app / ng2 / pages / properties-assignment / tosca-function / tosca-custom-function / tosca-custom-function.component.spec.ts
1 /*
2  * -
3  *  ============LICENSE_START=======================================================
4  *  Copyright (C) 2023 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 {ToscaConcatFunctionComponent} from '../tosca-concat-function/tosca-concat-function.component';
25 import {ToscaCustomFunctionComponent} from './tosca-custom-function.component';
26 import {FormsModule, ReactiveFormsModule} from "@angular/forms";
27 import {ToscaFunctionComponent} from "../tosca-function.component";
28 import {TranslateModule} from "../../../../shared/translator/translate.module";
29 import {ToscaGetFunctionComponent} from "../tosca-get-function/tosca-get-function.component";
30 import {UiElementsModule} from "../../../../components/ui/ui-elements.module";
31 import {YamlFunctionComponent} from "../yaml-function/yaml-function.component";
32 import {TopologyTemplateService} from "../../../../services/component-services/topology-template.service";
33 import {Observable} from "rxjs/Observable";
34 import {defaultCustomFunctionsMock} from "../../../../../../jest/mocks/default-custom-tosca-function.mock";
35
36 describe('ToscaCustomFunctionComponent', () => {
37     let component: ToscaCustomFunctionComponent;
38     let fixture: ComponentFixture<ToscaCustomFunctionComponent>;
39     let topologyTemplateServiceMock: Partial<TopologyTemplateService>;
40
41     beforeEach(async(() => {
42         topologyTemplateServiceMock = {
43             getDefaultCustomFunction: jest.fn().mockImplementation(() => Observable.of(defaultCustomFunctionsMock))
44         };
45         TestBed.configureTestingModule({
46             declarations: [
47                 ToscaCustomFunctionComponent,
48                 ToscaConcatFunctionComponent,
49                 ToscaFunctionComponent,
50                 ToscaGetFunctionComponent,
51                 YamlFunctionComponent],
52             imports: [
53                 FormsModule,
54                 ReactiveFormsModule,
55                 TranslateModule,
56                 UiElementsModule
57             ],
58             providers: [
59                 {provide: TopologyTemplateService, useValue: topologyTemplateServiceMock}
60             ]
61         })
62         .compileComponents();
63     }));
64
65     beforeEach(() => {
66         fixture = TestBed.createComponent(ToscaCustomFunctionComponent);
67         component = fixture.componentInstance;
68         fixture.detectChanges();
69     });
70
71     it('should create', () => {
72         expect(component).toBeTruthy();
73     });
74 });