aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/src/sdc-app/onboarding/softwareProduct/validationResults/SoftwareProductValidationResultsView.jsx
blob: b6cc1d5bdc4c84a5f79529dc752412a61b66744c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/**
 * Copyright (c) 2019 Vodafone Group
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
import React from 'react';
import PropTypes from 'prop-types';
import Accordion from 'sdc-ui/lib/react/Accordion.js';
import SVGIcon from 'sdc-ui/lib/react/SVGIcon.js';
import GridSection from 'nfvo-components/grid/GridSection.jsx';
import GridItem from 'nfvo-components/grid/GridItem.jsx';
import i18n from 'nfvo-utils/i18n/i18n.js';
import unCamelCasedString from 'nfvo-utils/unCamelCaseString.js';

const TestResultComponent = ({ tests }) => {
    return (
        <div>
            {tests.map((test, index) => {
                let name = 'errorCircle';
                let color = 'warning';
                if (
                    test.testResult &&
                    test.testResult.toLowerCase() === 'pass'
                ) {
                    color = 'positive';
                    name = 'checkCircle';
                } else if (
                    test.testResult &&
                    test.testResult.toLowerCase() === 'fail'
                ) {
                    name = 'exclamationTriangleFull';
                }
                return (
                    <li type="none" key={index}>
                        <SVGIcon
                            color={color}
                            name={name}
                            labelPosition="right"
                        />
                        <span className="validation-results-test-result-label">
                            {test.testName +
                                ' | ' +
                                test.testResult +
                                ' | ' +
                                test.notes}
                        </span>
                    </li>
                );
            })}
        </div>
    );
};

class SoftwareProductValidationResultsView extends React.Component {
    static propTypes = {
        softwareProductValidation: PropTypes.object
    };

    constructor(props) {
        super(props);
        this.state = {
            vspId: this.props.softwareProductId,
            versionNumber: this.props.version.name
        };
    }

    buildSubAccordions(result) {
        if (result.status && result.status.toLowerCase() === 'completed') {
            if (!result.results.testResults) {
                return (
                    <div
                        title={i18n('Scenario: {scenario} | Status: {status}', {
                            scenario: result.scenario,
                            status: result.status
                        })}>
                        <SVGIcon
                            color="negative"
                            name="errorCircle"
                            labelPosition="right"
                        />
                        <span className="validation-results-test-result-label">
                            {i18n('{title} results are not available', {
                                title: result.scenario
                            })}
                        </span>
                    </div>
                );
            }
            return (
                <Accordion
                    dataTestId="vsp-validation-test-result-success"
                    title={i18n('Scenario: {scenario} | Status: {status}', {
                        scenario: result.scenario,
                        status: result.status
                    })}>
                    {Object.keys(result.results.testResults).map(
                        (key, index) => {
                            let title = unCamelCasedString(key);
                            if (result.results.testResults[key].length > 0) {
                                return (
                                    <Accordion
                                        dataTestId={title}
                                        title={title}
                                        key={index}>
                                        <TestResultComponent
                                            tests={
                                                result.results.testResults[key]
                                            }
                                        />
                                    </Accordion>
                                );
                            } else {
                                return (
                                    <div>
                                        {i18n(
                                            '{title} results are not available',
                                            {
                                                title: title
                                            }
                                        )}
                                    </div>
                                );
                            }
                        }
                    )}
                </Accordion>
            );
        } else if (
            result.status &&
            result.status.toLowerCase() === 'failed' &&
            result.results.errors
        ) {
            return (
                <Accordion
                    dataTestId="vsp-validation-test-result-success"
                    title={i18n('Scenario: {scenario} | Status: {status}', {
                        scenario: result.scenario,
                        status: result.status
                    })}>
                    {result.results.errors.map((element, index) => {
                        return (
                            <li type="none" key={index}>
                                <SVGIcon
                                    color="negative"
                                    name="errorCircle"
                                    labelPosition="right"
                                />
                                <span className="validation-results-test-result-label">
                                    {element.reason + ' | ' + element.advice}
                                </span>
                            </li>
                        );
                    })}
                </Accordion>
            );
        } else if (result.message || result.httpStatus) {
            return (
                <div>
                    <SVGIcon
                        color="negative"
                        name="errorCircle"
                        labelPosition="right"
                    />
                    <span className="validation-results-test-result-label">
                        {result.message + ' | ' + result.httpStatus}
                    </span>
                </div>
            );
        }
    }

    render() {
        let results = this.props.softwareProductValidation.vspTestResults || [];
        if (results.length > 0) {
            return (
                <GridSection title={i18n('Validation Results')}>
                    <GridItem colSpan={10}>
                        <Accordion
                            defaultExpanded
                            dataTestId="vsp-validation-test-result"
                            title={i18n('Test Results')}>
                            {results.map(row => this.buildSubAccordions(row))}
                        </Accordion>
                    </GridItem>
                </GridSection>
            );
        } else {
            return (
                <GridSection title={i18n('Validation Results')}>
                    <h4>{i18n('No Validation Checks Performed')}</h4>
                </GridSection>
            );
        }
    }
}

export default SoftwareProductValidationResultsView;