From 60b07c9cb49db8dd7db883058f2d25fc1b93efc6 Mon Sep 17 00:00:00 2001 From: chenjiankun Date: Tue, 21 Mar 2017 14:48:54 +0000 Subject: Create Catalogue page JIRA: RELENG-193 1.create a page to list all project. 2.This page can get test case list of certain project. 3.This page can show information of certain test case. Change-Id: I79e0d3aafa99c054865a0d2948b99918802f32a7 Signed-off-by: chenjiankun --- .../app/scripts/controllers/admin.controller.js | 26 +++++ .../app/scripts/controllers/case.controller.js | 70 +++++++++++++ .../scripts/controllers/testvisual.controller.js | 111 +++++++++++++++++++++ 3 files changed, 207 insertions(+) create mode 100644 reporting/pages/app/scripts/controllers/admin.controller.js create mode 100644 reporting/pages/app/scripts/controllers/case.controller.js create mode 100644 reporting/pages/app/scripts/controllers/testvisual.controller.js (limited to 'reporting/pages/app/scripts/controllers') diff --git a/reporting/pages/app/scripts/controllers/admin.controller.js b/reporting/pages/app/scripts/controllers/admin.controller.js new file mode 100644 index 0000000..e6ecad0 --- /dev/null +++ b/reporting/pages/app/scripts/controllers/admin.controller.js @@ -0,0 +1,26 @@ +'use strict'; + +/** + * @ngdoc function + * @name opnfvdashBoardAngularApp.controller:AdminController + * @description + * # TableController + * Controller of the opnfvdashBoardAngularApp + */ +angular.module('opnfvApp') + .controller('AdminController', ['$scope', '$state', '$stateParams', 'TableFactory', function($scope, $state, $stateParams, TableFactory) { + + init(); + $scope.showSelectValue = 0; + $scope.scenarioList = ["os_nosdn_kvm_noha", "os_nosdn_kvm_no", "os_nosdn_kvm_"]; + + function init() {} + + + + + + + + + }]); \ No newline at end of file diff --git a/reporting/pages/app/scripts/controllers/case.controller.js b/reporting/pages/app/scripts/controllers/case.controller.js new file mode 100644 index 0000000..a4f1651 --- /dev/null +++ b/reporting/pages/app/scripts/controllers/case.controller.js @@ -0,0 +1,70 @@ +'use strict'; + +/** + * @ngdoc function + * @name opnfvdashBoardAngularApp.controller:CaseController + * @description + * # TableController + * Controller of the opnfvdashBoardAngularApp + */ +angular.module('opnfvApp') + .controller('CaseController', ['$scope', '$state', '$stateParams', 'TableFactory', function($scope, $state, $stateParams, TableFactory) { + + init(); + $scope.projectSelect = ""; + $scope.funcTestCase = ['test1func', 'test2func', 'test3func', 'test4func']; + $scope.yardStickCase = ['test1yard', 'test2yard', 'test3yard', 'test4yard']; + $scope.bottleNeckCase = ['test1bottle', 'test2bottle', 'test3bottle', 'test4bottle', + 'test5bottle', 'test6bottle', 'test7bottle', 'test8bottle', + 'test9bottle', 'test10bottle', 'test11bottle', 'test12bottle', + 'test13bottle', 'test14bottle', 'test15bottle', 'test16bottle', + 'test17bottle', 'test18bottle', 'test19bottle', 'test20bottle' + ]; + $scope.selectedFunc = ["test1func"]; + $scope.selectBottle = ["test8bottle"]; + $scope.versionlist = ["Colorado", "Master"]; + $scope.VersionOption = [ + { title: 'Colorado' }, + { title: 'Master' } + ]; + $scope.VersionConfig = { + create: true, + valueField: 'title', + labelField: 'title', + delimiter: '|', + maxItems: 1, + placeholder: 'Version', + onChange: function(value) { + checkElementArrayValue($scope.selection, $scope.VersionOption); + $scope.selection.push(value); + // console.log($scope.selection); + + } + }; + + + function init() { + $scope.toggleSelection = toggleSelection; + $scope.toggleSelectionMulti = toggleSelectionMulti; + + } + + function toggleSelection(status) { + // var idx = $scope.weekselection.indexOf(status); + $scope.projectSelect = status; + + } + + function toggleSelectionMulti(status) { + var idx = $scope.selection.indexOf(status); + + if (idx > -1) { + $scope.selection.splice(idx, 1); + } else { + $scope.selection.push(status); + } + console.log($scope.selection); + } + + + }]); \ No newline at end of file diff --git a/reporting/pages/app/scripts/controllers/testvisual.controller.js b/reporting/pages/app/scripts/controllers/testvisual.controller.js new file mode 100644 index 0000000..7082aed --- /dev/null +++ b/reporting/pages/app/scripts/controllers/testvisual.controller.js @@ -0,0 +1,111 @@ +'use strict'; + +/** + * @ngdoc function + * @name opnfvdashBoardAngularApp.controller:testVisualController + * @description + * # TableController + * Controller of the opnfvdashBoardAngularApp + */ +angular.module('opnfvApp') + .controller('testVisualController', ['$scope', '$state', '$stateParams', 'TableFactory', 'ngDialog', '$http', '$loading', + function($scope, $state, $stateParams, TableFactory, ngDialog, $http, $loading) { + $scope.dovet = "59,222,156,317"; + $scope.functest = "203,163,334,365"; + $scope.yardstick = "398,161,513,384"; + $scope.vsperf = "567,163,673,350"; + $scope.stor = "686,165,789,341"; + $scope.qtip = "802,164,905,341"; + $scope.bootleneck = "917,161,1022,338"; + $scope.noPopArea1 = "30,11,1243,146"; + $scope.noPopArea2 = "1041,157,1250,561"; + $scope.noPopArea3 = "15,392,1027,561"; + + init(); + $scope.showSelectValue = 0; + $scope.scenarioList = ["os_nosdn_kvm_noha", "os_nosdn_kvm_no", "os_nosdn_kvm_"]; + + function init() { + $scope.myTrigger = myTrigger; + $scope.openTestDetail = openTestDetail; + $scope.pop = pop; + $scope.getDetail = getDetail; + getUrl(); + + + + } + + function myTrigger(name) { + $loading.start('Key'); + $scope.tableData = null; + $scope.modalName = name; + + var url = PROJECT_URL + '/projects/' + name + '/cases'; + + var config = { + headers: { + 'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8;' + } + } + $http.get(url, config).then(function(response) { + if (response.status == 200) { + $scope.tableData = response.data; + $loading.finish('Key'); + + + } + }) + } + + function getDetail(casename) { + TableFactory.getProjectTestCaseDetail().get({ + 'project': $scope.modalName, + 'testcase': casename + }).$promise.then(function(response) { + if (response != null) { + $scope.project_name_modal = response.project_name; + $scope.description_modal = response.description; + openTestDetail(); + } + }) + + } + + + function openTestDetail() { + ngDialog.open({ + template: 'views/modal/testcasedetail.html', + className: 'ngdialog-theme-default', + scope: $scope, + showClose: false + }) + } + + function getUrl() { + TableFactory.getProjectUrl().get({ + + }).$promise.then(function(response) { + if (response != null) { + $scope.functesturl = response.functest; + $scope.yardstickurl = response.yardstick; + $scope.vsperfurl = response.vsperf; + $scope.storperfurl = response.storperf; + $scope.qtipurl = response.qtip; + $scope.bottlenecksurl = response.bottlenecks; + $scope.doveturl = null; + } + }) + } + + + + + + + + + + + } + ]); \ No newline at end of file -- cgit 1.2.3-korg