X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=ui%2Fsrc%2Fmain%2Fwebapp%2Fapp%2FBluvalUI%2FValidationResults%2FValidationResultsController.js;fp=ui%2Fsrc%2Fmain%2Fwebapp%2Fapp%2FBluvalUI%2FValidationResults%2FValidationResultsController.js;h=c4e9e726d4307c0c23e56b32ee479aaa924cc7f0;hb=2eba847ebb6acb2686be08eb1cdafc1b12071e7d;hp=0000000000000000000000000000000000000000;hpb=f86b9715d156238532fcb0bf464bd72e9cf7ce96;p=validation.git diff --git a/ui/src/main/webapp/app/BluvalUI/ValidationResults/ValidationResultsController.js b/ui/src/main/webapp/app/BluvalUI/ValidationResults/ValidationResultsController.js new file mode 100644 index 0000000..c4e9e72 --- /dev/null +++ b/ui/src/main/webapp/app/BluvalUI/ValidationResults/ValidationResultsController.js @@ -0,0 +1,136 @@ +/* + * Copyright (c) 2019 AT&T Intellectual Property. All rights reserved. + * + * 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. + */ + +var app = angular.module('ValidationResults'); +app + .controller( + 'ValidationResultsController', + function($scope, restAPISvc, generalValidationResultsSvc, + $window, appContext, $location, $modal, $rootScope) { + + $scope.getBlueprintLayers = generalValidationResultsSvc.getBlueprintLayers; + $scope.mapResult = generalValidationResultsSvc.mapResult; + $scope.filterWithLayer = generalValidationResultsSvc.filterWithLayer; + $scope.filterWithResult = generalValidationResultsSvc.filterWithResult; + $scope.getLab = generalValidationResultsSvc.getLab; + + initialize(); + + function initialize() { + $scope.loadingResults = true; + $scope.validationNexusTestResults = []; + $scope.silos = []; + var searchObject = $location.search(); + var submissionId = searchObject.submissionId; + var blueprintName = searchObject.blueprintName; + var version = searchObject.version; + var lab = searchObject.lab; + var allLayers = searchObject.allLayers; + var layer = searchObject.layer; + var optional = searchObject.optional; + var outcome = searchObject.outcome; + var timestamp = searchObject.timestamp; + var date = searchObject.date; + var reqUrl = ""; + if (submissionId) { + reqUrl = "/api/v1/results/getbysubmissionid/" + + submissionId; + } else if (outcome !== undefined && !layer) { + reqUrl = "/api/v1/results/getlastrun/" + lab + "/" + + blueprintName + "/" + version + "/" + + allLayers + "/" + optional + "/" + + outcome; + } else if (outcome !== undefined) { + var layers = []; + layers.push(layer); + reqUrl = "/api/v1/results/getlastrunoflayers/" + + lab + "/" + blueprintName + "/" + version + + "/" + layers + "/" + optional + "/" + + outcome; + } else if (timestamp) { + reqUrl = "/api/v1/results/getbytimestamp/" + lab + + "/" + blueprintName + "/" + version + "/" + + timestamp; + } else if (date) { + reqUrl = "/api/v1/results/getbasedondate/" + lab + + "/" + blueprintName + "/" + version + "/" + + date; + } else { + reqUrl = "/api/v1/results/getmostrecent/" + + blueprintName + "/" + version + "/" + lab; + } + restAPISvc + .getRestAPI( + reqUrl, + function(resultData) { + if (resultData) { + restAPISvc + .getRestAPI( + "/api/v1/silo/", + function( + siloData) { + $scope.silos = siloData; + $scope.loadingResults = false; + if (!Array + .isArray(resultData)) { + $scope.validationNexusTestResults + .push(resultData); + } else { + $scope.validationNexusTestResults = resultData; + } + }); + } else { + confirm("No data was found"); + $scope.loadingResults = false; + } + }); + $scope.descending = true; + } + + $scope.dateTimeSort = function(validationNexusTestResult) { + return new Date(validationNexusTestResult.dateOfStorage) + .getTime(); + } + + $scope.descendingOrder = function() { + $scope.descending = true; + } + + $scope.ascendingOrder = function() { + $scope.descending = false; + } + + $scope.refreshValidationResults = function() { + initialize(); + } + + $scope.getTestSuiteResults = function( + validationNexusTestResult) { + if (!generalValidationResultsSvc + .mapResult(validationNexusTestResult)) { + return; + } + var scope = $rootScope.$new(); + scope.params = validationNexusTestResult; + $modal + .open({ + scope : scope, + templateUrl : 'app/BluvalUI/ValidationResults/TestSuiteResults/TestSuiteResultsModal.html', + controller : 'TestSuiteResultsController' + }); + } + + });