blob: 1445e8863cc2d2edc6f93a92357a466f169bf8ad [file] [log] [blame]
drveerendra684057e2019-11-11 19:37:39 -05001/*-
2 * ============LICENSE_START=======================================================
3 * ONAP CLAMP
4 * ================================================================================
5 * Copyright (C) 2019 AT&T Intellectual Property. All rights
6 * reserved.
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
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
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 * ===================================================================
21 *
22 */
23import React from 'react';
24import { shallow } from 'enzyme';
25import ViewToscaPolicyModal from './ViewToscaPolicyModal';
26import { mount } from 'enzyme';
27
28
29describe('Verify ViewToscaPolicyModal', () => {
30 beforeEach(() => {
31 fetch.resetMocks();
32 });
33
34 it('Test API Successful', () => {
35 fetch.mockImplementationOnce(() => {
36 return Promise.resolve({
37 ok: true,
38 status: 200,
39 json: () => {
40 return Promise.resolve({
41 "index": "1",
42 "toscaModelYaml":"MTCA",
43 "toscaModelName":"DCAE_MTCAConfig",
44 "version":"16",
45 "userId":"aj928f",
46 "policyType":"mtca",
47 "lastUpdatedDate":"05-07-2019 19:09:42"
48 });
49 }
50 });
51 });
52 const component = shallow(<ViewToscaPolicyModal/>);
53 });
54
55 it('Test API Exception', () => {
56 fetch.mockImplementationOnce(() => {
57 return Promise.resolve({
58 ok: false,
59 status: 500,
60 json: () => {
61 return Promise.resolve({
62 "index": "1",
63 "toscaModelName":"DCAE_MTCAConfig",
64 "version":"16",
65 "userId":"aj928f",
66 "policyType":"mtca",
67 "lastUpdatedDate":"05-07-2019 19:09:42"
68 });
69 }
70 });
71 });
72 const component = shallow(<ViewToscaPolicyModal/>);
73 });
74
75 it('Test API Rejection', () => {
76 const myMockFunc = fetch.mockImplementationOnce(() => Promise.reject('error'));
77 setTimeout(
78 () =>
79 myMockFunc().catch(e => {
80 console.log(e);
81 }),
82 100
83 );
84 new Promise(resolve => setTimeout(resolve, 200));
85 const component = shallow(<ViewToscaPolicyModal/>);
86 expect(myMockFunc.mock.calls.length).toBe(1);
87 });
88
89
90 it('Test the tosca model view render method', () => {
91 fetch.mockImplementationOnce(() => {
92 return Promise.resolve({
93 ok: true,
94 status: 200,
95 json: () => {
96 return Promise.resolve({
97 "index": "1",
98 "toscaModelYaml":"MTCA",
99 "toscaModelName":"DCAE_MTCAConfig",
100 "version":"16",
101 "userId":"aj928f",
102 "policyType":"mtca",
103 "lastUpdatedDate":"05-07-2019 19:09:42"
104 });
105 }
106 });
107 });
108 const component = shallow(<ViewToscaPolicyModal/>);
109 component.setState({ toscaNames: {
110 "index": "1",
111 "toscaModelYaml": "MTCA",
112 "toscaModelName": "DCAE_MTCAConfig",
113 "version" : "16",
114 "userId" : "aj928f",
115 "policyType" : "mtca",
116 "lastUpdatedDate" : "05-07-2019 19:09:42"
117 }
118 });
119 expect(component).toMatchSnapshot();
120 });
121
122 it('Test Table icons', () => {
123 fetch.mockImplementationOnce(() => {
124 return Promise.resolve({
125 ok: true,
126 status: 200,
127 json: () => {
128 return Promise.resolve({
129 "index": "1",
130 "toscaModelYaml":"MTCA",
131 "toscaModelName":"DCAE_MTCAConfig",
132 "version":"16",
133 "userId":"aj928f",
134 "policyType":"mtca",
135 "lastUpdatedDate":"05-07-2019 19:09:42"
136 });
137 }
138 });
139 });
140 const component = mount(<ViewToscaPolicyModal/>);
141 expect(component.find('[className="MuiSelect-icon MuiTablePagination-selectIcon"]')).toBeTruthy();
142 });
143
144 it('Test handleYamlContent', () => {
145 fetch.mockImplementationOnce(() => {
146 return Promise.resolve({
147 ok: true,
148 status: 200,
149 json: () => {
150 return Promise.resolve({
151 "index": "1",
152 "toscaModelYaml":"MTCA",
153 "toscaModelName":"DCAE_MTCAConfig",
154 "version":"16",
155 "userId":"aj928f",
156 "policyType":"mtca",
157 "lastUpdatedDate":"05-07-2019 19:09:42"
158 });
159 }
160 });
161 });
162 const yamlContent = 'MTCA Tosca model details';
163 const component = shallow(<ViewToscaPolicyModal/>);
164 component.find('[value="Please select Tosca model to view the details"]').prop('onChange')({ target: { value: yamlContent }});
165 expect(component.state('content')).toEqual(yamlContent);
166 });
167
168 it('Test handleClose', () => {
169 fetch.mockImplementationOnce(() => {
170 return Promise.resolve({
171 ok: true,
172 status: 200,
173 json: () => {
174 return Promise.resolve({
175 "index": "1",
176 "toscaModelYaml":"MTCA",
177 "toscaModelName":"DCAE_MTCAConfig",
178 "version":"16",
179 "userId":"aj928f",
180 "policyType":"mtca",
181 "lastUpdatedDate":"05-07-2019 19:09:42"
182 });
183 }
184 });
185 });
186 const historyMock = { push: jest.fn() };
187 const handleClose = jest.spyOn(ViewToscaPolicyModal.prototype,'handleClose');
188 const component = shallow(<ViewToscaPolicyModal history={historyMock} />)
189 component.find('[variant="secondary"]').prop('onClick')();
190 expect(handleClose).toHaveBeenCalledTimes(1);
191 expect(component.state('show')).toEqual(false);
192 expect(historyMock.push.mock.calls[0]).toEqual([ '/']);
193 handleClose.mockClear();
194 });
195});