2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2019 AT&T Intellectual Property. All rights
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END============================================
20 * ===================================================================
23 import React from 'react';
24 import { shallow } from 'enzyme';
25 import ViewLoopTemplatesModal from './ViewLoopTemplatesModal';
26 import { mount } from 'enzyme';
28 describe('Verify ViewLoopTemplatesModal', () => {
34 it('Test API Successful', () => {
35 fetch.mockImplementationOnce(() => {
36 return Promise.resolve({
40 return Promise.resolve({
42 "name": "MTCA version 1",
43 "modelService.serviceDetails.name": "MTCA",
44 "allowedLoopType" : "CLOSED",
45 "maximumInstancesAllowed":1,
46 "updatedDate":"2019-09-06 19:09:42"
51 const component = shallow(<ViewLoopTemplatesModal/>);
54 it('Test API Exception', () => {
55 fetch.mockImplementationOnce(() => {
56 return Promise.resolve({
60 return Promise.resolve({
62 "name": "MTCA version 1",
63 "modelService.serviceDetails.name": "MTCA",
64 "allowedLoopType" : "CLOSED",
65 "maximumInstancesAllowed":1,
66 "updatedDate":"2019-09-06 19:09:42"
71 const component = shallow(<ViewLoopTemplatesModal/>);
74 it('Test API Rejection', () => {
75 const myMockFunc = fetch.mockImplementationOnce(() => Promise.reject('error'));
76 setTimeout( () => myMockFunc().catch(e => {
81 new Promise(resolve => setTimeout(resolve, 200));
82 const component = shallow(<ViewLoopTemplatesModal/>);
83 expect(myMockFunc.mock.calls.length).toBe(1);
86 it('Test the tosca model view render method', () => {
87 fetch.mockImplementationOnce(() => {
88 return Promise.resolve({
92 return Promise.resolve({
94 "name": "MTCA version 1",
95 "modelService.serviceDetails.name": "MTCA",
96 "allowedLoopType" : "CLOSED",
97 "maximumInstancesAllowed":1,
98 "updatedDate":"2019-09-06 19:09:42"
103 const component = shallow(<ViewLoopTemplatesModal/>);
104 component.setState({ loopTemplateData: {
106 "name": "MTCA version 1",
107 "modelService.serviceDetails.name": "MTCA",
108 "allowedLoopType" : "CLOSED",
109 "maximumInstancesAllowed":1,
110 "updatedDate":"2019-09-06 19:09:42"
113 expect(component).toMatchSnapshot();
116 it('Test Table icons', () => {
117 fetch.mockImplementationOnce(() => {
118 return Promise.resolve({
122 return Promise.resolve({
124 "name": "MTCA version 1",
125 "modelService.serviceDetails.name": "MTCA",
126 "allowedLoopType" : "CLOSED",
127 "maximumInstancesAllowed":1,
128 "updatedDate":"2019-09-06 19:09:42"
133 const component = mount(<ViewLoopTemplatesModal/>);
134 expect(component.find('[className="MuiSelect-icon MuiTablePagination-selectIcon"]')).toBeTruthy();
137 it('Test handleYamlContent', () => {
138 fetch.mockImplementationOnce(() => {
139 return Promise.resolve({
143 return Promise.resolve({
145 "name": "MTCA version 1",
146 "modelService.serviceDetails.name": "MTCA",
147 "allowedLoopType" : "CLOSED",
148 "maximumInstancesAllowed":1,
149 "updatedDate":"2019-09-06 19:09:42"
154 const yamlContent = 'MTCA version 1';
155 const component = shallow(<ViewLoopTemplatesModal/>);
156 component.find('[value="Please select a loop template to display it"]').prop('onChange')({ target: { value: yamlContent }});
157 expect(component.state('content')).toEqual(yamlContent);
160 it('Test handleClose', () => {
161 fetch.mockImplementationOnce(() => {
162 return Promise.resolve({
166 return Promise.resolve({
168 "name": "MTCA version 1",
169 "modelService.serviceDetails.name": "MTCA",
170 "allowedLoopType" : "CLOSED",
171 "maximumInstancesAllowed":1,
172 "updatedDate":"2019-09-06 19:09:42"
177 const historyMock = { push: jest.fn() };
178 const handleClose = jest.spyOn(ViewLoopTemplatesModal.prototype,'handleClose');
179 const component = shallow(<ViewLoopTemplatesModal history={historyMock} />)
180 component.find('[variant="secondary"]').prop('onClick')();
181 expect(handleClose).toHaveBeenCalledTimes(1);
182 expect(component.state('show')).toEqual(false);
183 expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
184 handleClose.mockClear();