diff --git a/refstack-ui/app/components/results/results.html b/refstack-ui/app/components/results/results.html
index 1f0c3b9c..2a43cd1e 100644
--- a/refstack-ui/app/components/results/results.html
+++ b/refstack-ui/app/components/results/results.html
@@ -49,6 +49,11 @@
|
Upload Date |
Test Run ID |
+ Vendor |
+ Product (version) |
+ Target Program |
+ Guideline |
+ Verified |
Shared |
@@ -66,7 +71,25 @@
{{result.created_at}} |
- {{result.id}} |
+
+ {{result.id.slice(0, 8)}}...{{result.id.slice(-8)}}
+
+ |
+
+ {{ctrl.vendors[result.product_version.product_info.organization_id].name || '-'}}
+ |
+ {{result.product_version.product_info.name || '-'}}
+
+ ({{result.product_version.version}})
+
+ |
+ {{ctrl.targetMappings[result.meta.target] || '-'}} |
+ {{result.meta.guideline.slice(0, -5) || '-'}} |
+
+
+ -
+
+ |
|
diff --git a/refstack-ui/app/components/results/resultsController.js b/refstack-ui/app/components/results/resultsController.js
index 747e59de..7b4aed11 100644
--- a/refstack-ui/app/components/results/resultsController.js
+++ b/refstack-ui/app/components/results/resultsController.js
@@ -38,6 +38,7 @@
ctrl.associateMeta = associateMeta;
ctrl.getVersionList = getVersionList;
ctrl.getUserProducts = getUserProducts;
+ ctrl.getVendors = getVendors;
ctrl.associateProductVersion = associateProductVersion;
ctrl.getProductVersions = getProductVersions;
ctrl.prepVersionEdit = prepVersionEdit;
@@ -99,6 +100,8 @@
ctrl.update();
}
+ ctrl.getVendors();
+
/**
* This will contact the Refstack API to get a listing of test run
* results.
@@ -244,6 +247,27 @@
});
}
+ /**
+ * This will contact the Refstack API to get a listing of
+ * vendors.
+ */
+ function getVendors() {
+ var contentUrl = refstackApiUrl + '/vendors';
+ ctrl.vendorsRequest =
+ $http.get(contentUrl).success(function (data) {
+ ctrl.vendors = {};
+ data.vendors.forEach(function(vendor) {
+ ctrl.vendors[vendor.id] = vendor;
+ });
+ }).error(function (error) {
+ ctrl.vendors = null;
+ ctrl.showError = true;
+ ctrl.error =
+ 'Error retrieving vendor listing from server: ' +
+ angular.toJson(error);
+ });
+ }
+
/**
* Send a PUT request to the API server to associate a product with
* a test result.
diff --git a/refstack-ui/app/shared/header/header.html b/refstack-ui/app/shared/header/header.html
index aa6984fd..797ab859 100644
--- a/refstack-ui/app/shared/header/header.html
+++ b/refstack-ui/app/shared/header/header.html
@@ -19,6 +19,7 @@ RefStack
About
DefCore Guidelines
Community Results
+
- My Results
diff --git a/refstack-ui/tests/unit/ControllerSpec.js b/refstack-ui/tests/unit/ControllerSpec.js
index 0ef3a3dc..76c7657a 100644
--- a/refstack-ui/tests/unit/ControllerSpec.js
+++ b/refstack-ui/tests/unit/ControllerSpec.js
@@ -201,7 +201,7 @@ describe('Refstack controllers', function () {
});
});
- describe('resultsController', function () {
+ describe('ResultsController', function () {
var scope, ctrl;
var fakeResponse = {
'pagination': {'current_page': 1, 'total_pages': 2},
@@ -211,12 +211,17 @@ describe('Refstack controllers', function () {
'cpid': 'some-cpid'
}]
};
+ var fakeVendorResp = {
+ 'vendors': [{'id': 'fakeid', 'name': 'Foo Vendor'}]
+ };
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('ResultsController', {$scope: scope});
$httpBackend.when('GET', fakeApiUrl +
'/results?page=1').respond(fakeResponse);
+ $httpBackend.when('GET', fakeApiUrl +
+ '/vendors').respond(fakeVendorResp);
}));
it('should fetch the first page of results with proper URL args',
@@ -319,6 +324,16 @@ describe('Refstack controllers', function () {
expect(ctrl.products).toEqual(expected);
});
+ it('should have a function to get a listing of vendors',
+ function () {
+ $httpBackend.expectGET(fakeApiUrl + '/vendors')
+ .respond(fakeVendorResp);
+ ctrl.getVendors();
+ $httpBackend.flush();
+ var expected = fakeVendorResp.vendors[0];
+ expect(ctrl.vendors.fakeid).toEqual(expected);
+ });
+
it('should have a function to associate a product version to a test',
function () {
var result = {'id': 'bar',