summaryrefslogtreecommitdiffstats
path: root/csarvalidation/src/main/java/org/onap/validation/csar/VTPValidateCSAR.java
blob: 1624e46cbb235c58f20f991444c8ba295c4b0d91 (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
/*
 * Copyright 2017 Huawei Technologies Co., Ltd.
 *
 * 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.
 */

package org.onap.validation.csar;

import java.io.IOException;

import org.onap.cli.fw.cmd.OnapCommand;
import org.onap.cli.fw.error.OnapCommandException;
import org.onap.cli.fw.error.OnapCommandExecutionFailed;
import org.onap.cli.fw.schema.OnapCommandSchema;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Validates CSAR
 */
@OnapCommandSchema(schema = "vtp-validate-csar-casablanca.yaml")
public class VTPValidateCSAR extends OnapCommand {
    private static final Logger LOG = LoggerFactory.getLogger(VTPValidateCSAR.class); //NOSONAR

    @Override
    protected void run() throws OnapCommandException {
        //Read the input arguments
        String csar = (String) getParametersMap().get("csar").getValue();

        //run the test cases
        String error = this.test(csar);

        //set the result
        this.getResult().getRecordsMap().get("errors").getValues().add(error);
   }

   public String test(String csar) throws OnapCommandException {
       try {
           CsarValidator cv = new CsarValidator(csar, csar);
           return cv.validateCsar();
       } catch(IOException e) {
           throw new OnapCommandExecutionFailed(e.getMessage());
       }
   }
}