Epic-231:versioning, and backup the configuration
[sdnc/oam.git] / configbackuprestore / vnfconfigbackupservice / src / main / webapp / js / sdnc-services / sdnc-validationTest-service.js
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : SDNC-FEATURES
4 * ================================================================================
5 * Copyright 2018 TechMahindra
6 *=================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 *     http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20 myApp.service('validationTestService', ['$http','CERTIFICATION_API_BASE', function($http,CERTIFICATION_API_BASE) {
21    
22     this.runPretest = function(vnfList, validationTestType) {
23
24
25         var data = {};
26         data.vnfList = vnfList;
27         data.validationTestType = validationTestType;
28
29         var config = {
30             params: data,
31             headers: {
32                 'Accept': 'application/json'
33             }
34         };
35         
36         console.log("validationTestService::runPretest::config", JSON.stringify(config));
37         
38         var baseUrl = CERTIFICATION_API_BASE;
39         var baseApi='runtest';
40         var apiUrl= baseUrl + baseApi;
41
42         // Call the pre validation service
43         var request = {
44             method: 'POST',
45             url: apiUrl,
46             data: data,
47             headers: {
48                 'Content-Type': undefined
49             }
50         };
51
52         // // SEND VNF FOR VALIDATION
53         return $http(request)
54             .then(function(response) {
55                     console.log("---validationTestService::runPretest::Response---" + JSON.stringify(response));
56                     return response.data;
57                 },
58                 function(response) {
59                     console.log("--validationTestService::Status Code--", response.status);
60                     return response;
61                 });
62
63
64     }
65
66 }]);