OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/frontend/app/components/wp-table/wp-td/wp-td.directive.test.js

204 lines
5.8 KiB

// -- copyright
// OpenProject is a project management system.
// Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License version 3.
//
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
// Copyright (C) 2006-2013 Jean-Philippe Lang
// Copyright (C) 2010-2013 the ChiliProject Team
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
// See doc/COPYRIGHT.rdoc for more details.
// ++
describe('wpTd Directive', function() {
var compile, element, rootScope, scope;
beforeEach(angular.mock.module('openproject.workPackages.directives'));
beforeEach(angular.mock.module('openproject.templates',
'openproject.api',
'openproject.services'));
beforeEach(angular.mock.module('openproject.templates', function($provide) {
var configurationService = {};
configurationService.isTimezoneSet = sinon.stub().returns(false);
$provide.constant('ConfigurationService', configurationService);
}));
beforeEach(inject(function($rootScope, $compile) {
var html;
html = '<wp-td object="workPackage" schema="schema" attribute="attribute"></wp-td>';
element = angular.element(html);
rootScope = $rootScope;
scope = $rootScope.$new();
compile = function() {
$compile(element)(scope);
scope.$digest();
};
}));
var getInnermostSpan = function(start) {
return start.find('span').last();
};
describe('element', function() {
beforeEach(function() {
scope.workPackage = {
subject: 'Subject1',
type: { id: 1, name: 'Bug'},
sheep: 10,
customField1: 'asdf1234',
};
scope.schema = {
"_type": "Schema",
"type": {
"type": "Type",
"name": "Type",
"required": true,
"writable": true,
"_links": {},
"_embedded": {}
},
"subject": {
"type": "String",
"name": "Subject",
"required": true,
"writable": true,
"minLength": 1,
"maxLength": 255
},
"sheep": {
"type": "Integer",
"name": "Sheep",
"required": true,
"writable": true
},
"sheep": {
"type": "Integer",
"name": "Sheep",
"required": true,
"writable": true
},
"customField1": {
"type": "String",
"name": "foobar",
"required": false,
"writable": true
}
};
});
describe('rendering an object field', function(){
beforeEach(function(){
scope.attribute = 'type';
compile();
});
it('should contain the object title', function() {
var content = getInnermostSpan(element);
expect(content.text().trim()).to.equal('Bug');
});
it('should have the object title as title attribute', function() {
var tag = getInnermostSpan(element);
expect(tag.attr('title')).to.equal('Bug');
});
});
describe('rendering a text field', function(){
beforeEach(function(){
scope.attribute = 'subject';
compile();
});
it('should contain the text', function() {
var content = getInnermostSpan(element);
expect(content.text().trim()).to.equal('Subject1');
});
it('should contain the text as the title', function() {
var tag = getInnermostSpan(element);
expect(tag.attr('title')).to.equal('Subject1');
});
});
describe('rendering a number field', function(){
beforeEach(function(){
scope.attribute = 'sheep';
compile();
});
it('should contain the text', function() {
var content = getInnermostSpan(element);
expect(content.text().trim()).to.equal('10');
});
it('should contain the text as the title', function() {
var tag = getInnermostSpan(element);
expect(tag.attr('title')).to.equal('10');
});
});
describe('rendering a custom string field', function(){
beforeEach(function(){
scope.attribute = 'customField1';
compile();
});
it('should contain the text', function() {
var content = getInnermostSpan(element);
expect(content.text().trim()).to.equal('asdf1234');
});
it('should contain the text as the title', function() {
var tag = getInnermostSpan(element);
expect(tag.attr('title')).to.equal('asdf1234');
});
});
describe('rendering missing field', function(){
beforeEach(function(){
scope.attribute = 'non-existant-field';
compile();
});
it('should contain the display empty text', function() {
var content = getInnermostSpan(element);
expect(content.text().trim()).to.equal('');
});
it('should contain the empty text as the title', function() {
var tag = getInnermostSpan(element);
expect(tag.attr('title')).to.equal('');
});
});
});
});