NonRT-RIC A1 Northbound API
[nonrtric.git] / sdnc-a1-controller / oam / SdncReports / SdncReportsApi / 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', function($http) {
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         // Call the pre validation service
39         var request = {
40             method: 'POST',
41             url: '/runtest',
42             data: data,
43             headers: {
44                 'Content-Type': "application/json"
45             }
46         };
47
48         // // SEND VNF FOR VALIDATION
49         return $http(request)
50             .then(function(response) {
51                     console.log("---validationTestService::runPretest::Response---" + JSON.stringify(response));
52                     return response;
53                 },
54                 function(response) {
55                     console.log("--validationTestService::Status Code--", response.status);
56                     return response;
57                 });
58
59
60     }
61
62 }]);