diff --git a/package.json b/package.json
index d2e9bb28..90f0e7c7 100644
--- a/package.json
+++ b/package.json
@@ -16,7 +16,7 @@
"karma-firefox-launcher": "^0.1.3",
"karma-jasmine": "^0.2.2",
"karma-phantomjs-launcher": "0.2.0",
- "phantomjs": "1.9.17",
+ "phantomjs": "2.1.1",
"protractor": "~1.0.0"
},
"scripts": {
diff --git a/refstack-ui/app/assets/css/style.css b/refstack-ui/app/assets/css/style.css
index a9d41230..51bbfdcd 100644
--- a/refstack-ui/app/assets/css/style.css
+++ b/refstack-ui/app/assets/css/style.css
@@ -192,3 +192,11 @@ h1, h2, h3, h4, h5, h6 {
a.glyphicon {
text-decoration: none;
}
+
+.test-list-dl {
+ word-spacing: normal;
+}
+
+.test-list-dl:hover {
+ text-decoration: none;
+}
diff --git a/refstack-ui/app/components/capabilities/capabilities.html b/refstack-ui/app/components/capabilities/capabilities.html
index a9375843..aff6a8ef 100644
--- a/refstack-ui/app/components/capabilities/capabilities.html
+++ b/refstack-ui/app/components/capabilities/capabilities.html
@@ -53,6 +53,12 @@
Removed
+
+
+ Test List
+
diff --git a/refstack-ui/app/components/capabilities/capabilitiesController.js b/refstack-ui/app/components/capabilities/capabilitiesController.js
index ff0d9143..1c978f3e 100644
--- a/refstack-ui/app/components/capabilities/capabilitiesController.js
+++ b/refstack-ui/app/components/capabilities/capabilitiesController.js
@@ -19,14 +19,14 @@
.module('refstackApp')
.controller('CapabilitiesController', CapabilitiesController);
- CapabilitiesController.$inject = ['$http', 'refstackApiUrl'];
+ CapabilitiesController.$inject = ['$http', '$uibModal', 'refstackApiUrl'];
/**
* RefStack Capabilities Controller
* This controller is for the '/capabilities' page where a user can browse
* through tests belonging to DefCore-defined capabilities.
*/
- function CapabilitiesController($http, refstackApiUrl) {
+ function CapabilitiesController($http, $uibModal, refstackApiUrl) {
var ctrl = this;
ctrl.getVersionList = getVersionList;
@@ -34,6 +34,8 @@
ctrl.updateTargetCapabilities = updateTargetCapabilities;
ctrl.filterStatus = filterStatus;
ctrl.getObjectLength = getObjectLength;
+ ctrl.getTestList = getTestList;
+ ctrl.openTestListModal = openTestListModal;
/** The target OpenStack marketing program to show capabilities for. */
ctrl.target = 'platform';
@@ -182,6 +184,118 @@
return Object.keys(object).length;
}
+ /**
+ * This will give a list of tests belonging to capabilities with
+ * the selected status(es).
+ */
+ function getTestList() {
+ var caps = ctrl.capabilities.capabilities;
+ var tests = [];
+ angular.forEach(ctrl.targetCapabilities,
+ function (status, cap) {
+ if (ctrl.status[status]) {
+ if (ctrl.capabilities.schema === '1.2') {
+ tests.push.apply(tests, caps[cap].tests);
+ }
+ else {
+ angular.forEach(caps[cap].tests,
+ function(info, test) {
+ tests.push(test);
+ });
+ }
+ }
+ });
+ return tests;
+ }
+
+ /**
+ * This will open the modal that will show a list of all tests
+ * belonging to capabilities with the selected status(es).
+ */
+ function openTestListModal() {
+ $uibModal.open({
+ templateUrl: '/components/capabilities/partials' +
+ '/testListModal.html',
+ backdrop: true,
+ windowClass: 'modal',
+ animation: true,
+ controller: 'TestListModalController as modal',
+ size: 'lg',
+ resolve: {
+ tests: function () {
+ return ctrl.getTestList();
+ },
+ version: function () {
+ return ctrl.version.slice(0, -5);
+ },
+ status: function () {
+ return ctrl.status;
+ }
+ }
+ });
+ }
+
ctrl.getVersionList();
}
+
+ angular
+ .module('refstackApp')
+ .controller('TestListModalController', TestListModalController);
+
+ TestListModalController.$inject = [
+ '$uibModalInstance', '$window', 'tests', 'version', 'status'
+ ];
+
+ /**
+ * Test List Modal Controller
+ * This controller is for the modal that appears if a user wants to see the
+ * ftest list corresponding to DefCore capabilities with the selected
+ * statuses.
+ */
+ function TestListModalController($uibModalInstance, $window, tests,
+ version, status) {
+
+ var ctrl = this;
+
+ ctrl.tests = tests;
+ ctrl.version = version;
+ ctrl.status = status;
+ ctrl.close = close;
+ ctrl.getTestListString = getTestListString;
+ ctrl.downloadTestList = downloadTestList;
+
+ /**
+ * This function will close/dismiss the modal.
+ */
+ function close() {
+ $uibModalInstance.dismiss('exit');
+ }
+
+ /**
+ * This function will return a string representing the sorted
+ * tests list separated by newlines.
+ */
+ function getTestListString() {
+ return ctrl.tests.sort().join('\n');
+ }
+
+ /**
+ * Serve the test list as a downloadable file.
+ */
+ function downloadTestList() {
+ var blob = new Blob([ctrl.getTestListString()], {type: 'text/csv'});
+ var filename = ctrl.version + '-test-list.txt';
+ if ($window.navigator.msSaveOrOpenBlob) {
+ $window.navigator.msSaveBlob(blob, filename);
+ }
+ else {
+ var a = $window.document.createElement('a');
+ a.href = $window.URL.createObjectURL(blob);
+ a.download = filename;
+ $window.document.body.appendChild(a);
+ a.click();
+ $window.document.body.removeChild(a);
+ }
+ }
+ }
})();
diff --git a/refstack-ui/app/components/capabilities/partials/capabilityDetails.html b/refstack-ui/app/components/capabilities/partials/capabilityDetails.html
index ef38c4e7..9cf49ae0 100644
--- a/refstack-ui/app/components/capabilities/partials/capabilityDetails.html
+++ b/refstack-ui/app/components/capabilities/partials/capabilityDetails.html
@@ -10,7 +10,7 @@ variable 'capabilities'.
{{capability.description}}
Status: {{ctrl.targetCapabilities[capability.id]}}
Project: {{capability.project | capitalize}}
- Achievements ({{capability.achievements.length}})
+ Achievements ({{capability.achievements.length}})