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/karma/tests/helpers/components/custom-field-helper-test.js

129 lines
4.5 KiB

//-- copyright
// OpenProject is a project management system.
// Copyright (C) 2012-2014 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.
//++
/*jshint expr: true*/
describe('Custom field helper', function() {
var CustomFieldHelper;
beforeEach(module('openproject.helpers'));
beforeEach(inject(function(_CustomFieldHelper_) {
CustomFieldHelper = _CustomFieldHelper_;
}));
describe('formatCustomFieldValue', function() {
var formatCustomFieldValue;
beforeEach(function() {
formatCustomFieldValue = CustomFieldHelper.formatCustomFieldValue;
});
describe('with a boolean type', function() {
var I18n, t;
beforeEach(inject(function(_I18n_){
I18n = _I18n_;
t = sinon.stub(I18n, 't');
t.withArgs('js.general_text_No').returns('No');
t.withArgs('js.general_text_Yes').returns('Yes');
}));
afterEach(inject(function() {
I18n.t.restore();
}));
it('should handle undefined and null values', function() {
expect(formatCustomFieldValue(null, 'bool')).to.not.be.ok;
expect(formatCustomFieldValue(undefined, 'bool')).to.not.be.ok;
});
it('should parse a false value', function() {
expect(formatCustomFieldValue('0', 'bool')).to.equal('No');
});
it('should parse a true value', function() {
expect(formatCustomFieldValue('1', 'bool')).to.equal('Yes');
});
});
describe('with an integer type', function() {
it('should handle undefined and null values', function() {
expect(formatCustomFieldValue(null, 'int')).to.equal('');
expect(formatCustomFieldValue(undefined, 'int')).to.equal('');
});
it('should parse a float, displaying as integer', function() {
expect(formatCustomFieldValue(200000.49, 'int')).to.equal(200000);
expect(formatCustomFieldValue(200000.51, 'int')).to.equal(200000);
});
it('should parse a string, displaying as integer', function() {
expect(formatCustomFieldValue('49', 'int')).to.equal(49);
expect(formatCustomFieldValue('49.99', 'int')).to.equal(49);
expect(formatCustomFieldValue('49.BLAH', 'int')).to.equal('');
});
it('should preserve an integer', function() {
expect(formatCustomFieldValue(49, 'int')).to.equal(49);
});
it('should handle a meaningless string', function() {
expect(formatCustomFieldValue('BLAHBLAH','int')).to.equal('');
});
});
describe('with a float type', function() {
it('should handle undefined and null values', function() {
expect(formatCustomFieldValue(null, 'int')).to.equal('');
expect(formatCustomFieldValue(undefined, 'int')).to.equal('');
});
xit('should parse an integer, displaying with decimal places', function() {
expect(formatCustomFieldValue(99, 'float')).to.equal(99);
});
it('should parse a string, displaying as float', function() {
expect(formatCustomFieldValue('49.99', 'float')).to.equal(49.99);
expect(formatCustomFieldValue('49.99BLAH','float')).to.equal('');
});
it('should preserve a float', function() {
expect(formatCustomFieldValue(11.11, 'float')).to.equal(11.11);
});
it('should handle a meaningless string', function() {
expect(formatCustomFieldValue('BLAHBLAH','int')).to.equal('');
});
});
xdescribe('with a user type', function() {
});
});
});