require.def(['require', 'exports', 'module', 'rangeutils/tests/plugindev', 'rangeutils/tests/utils/range' ], function(require, exports, module, t, Range ) { /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is Skywriter. * * The Initial Developer of the Original Code is * Mozilla. * Portions created by the Initial Developer are Copyright (C) 2009 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Skywriter Team (skywriter@mozilla.com) * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ exports.testAddPositions = function() { t.deepEqual(Range.addPositions({ row: 0, col: 0 }, { row: 0, col: 0 }), { row: 0, col: 0 }, '0,0 + 0,0 and 0,0'); t.deepEqual(Range.addPositions({ row: 1, col: 0 }, { row: 2, col: 0 }), { row: 3, col: 0 }, '1,0 + 2,0 and 3,0'); t.deepEqual(Range.addPositions({ row: 0, col: 1 }, { row: 0, col: 1 }), { row: 0, col: 2 }, '0,1 + 0,1 and 0,2'); t.deepEqual(Range.addPositions({ row: 1, col: 2 }, { row: -1, col: -2 }), { row: 0, col: 0 }, '1,2 + -1,-2 and 0,0'); }; exports.testCloneRange = function() { var oldRange = { start: { row: 1, col: 2 }, end: { row: 3, col: 4 } }; var newRange = Range.cloneRange(oldRange); t.deepEqual(oldRange, newRange, "the old range and the new range"); t.ok(oldRange.start !== newRange.start, "the old range's start position " + "is distinct from the new range's start position"); t.ok(oldRange.end !== newRange.end, "the old range's end position is " + "distinct from the new range's end position"); t.ok(oldRange !== newRange, "the old range is distinct from the new " + "range"); }; exports.testComparePositions = function() { t.equal(Range.comparePositions({ row: 0, col: 0 }, { row: 0, col: 0 }), 0, '0,0 = 0,0'); t.ok(Range.comparePositions({ row: 0, col: 0 }, { row: 1, col: 0 }) < 0, '0,0 < 1,0'); t.ok(Range.comparePositions({ row: 0, col: 0 }, { row: 0, col: 1 }) < 0, '0,0 < 0,1'); t.ok(Range.comparePositions({ row: 1, col: 0 }, { row: 0, col: 0 }) > 0, '1,0 > 0,0'); t.ok(Range.comparePositions({ row: 0, col: 1 }, { row: 0, col: 0 }) > 0, '0,1 > 0,0'); }; exports.testExtendRange = function() { t.deepEqual(Range.extendRange({ start: { row: 1, col: 2 }, end: { row: 3, col: 4 } }, { row: 5, col: 6 }), { start: { row: 1, col: 2 }, end: { row: 8, col: 10 } }, '[ 1,2 3,4 ] extended by 5,6 = [ 1,2 8,10 ]'); t.deepEqual(Range.extendRange({ start: { row: 7, col: 8 }, end: { row: 9, col: 10 } }, { row: 0, col: 0 }), { start: { row: 7, col: 8 }, end: { row: 9, col: 10 } }, '[ 7,8 9,10 ] extended by 0,0 remains the same'); }; exports.testMaxPosition = function() { t.deepEqual(Range.maxPosition({ row: 0, col: 0 }, { row: 0, col: 0 }), { row: 0, col: 0 }, 'max(0,0 0,0) = 0,0'); t.deepEqual(Range.maxPosition({ row: 0, col: 0 }, { row: 1, col: 0 }), { row: 1, col: 0 }, 'max(0,0 1,0) = 1,0'); t.deepEqual(Range.maxPosition({ row: 0, col: 0 }, { row: 0, col: 1 }), { row: 0, col: 1 }, 'max(0,0 0,1) = 0,1'); t.deepEqual(Range.maxPosition({ row: 1, col: 0 }, { row: 0, col: 0 }), { row: 1, col: 0 }, 'max(1,0 0,0) = 1,0'); t.deepEqual(Range.maxPosition({ row: 0, col: 1 }, { row: 0, col: 0 }), { row: 0, col: 1 }, 'max(0,1 0,0) = 0,1'); }; exports.testNormalizeRange = function() { t.deepEqual(Range.normalizeRange({ start: { row: 0, col: 0 }, end: { row: 0, col: 0 } }), { start: { row: 0, col: 0 }, end: { row: 0, col: 0 } }, 'normalize(0,0 0,0) and (0,0 0,0)'); t.deepEqual(Range.normalizeRange({ start: { row: 1, col: 2 }, end: { row: 3, col: 4 } }), { start: { row: 1, col: 2 }, end: { row: 3, col: 4 } }, 'normalize(1,2 3,4) and (1,2 3,4)'); t.deepEqual(Range.normalizeRange({ start: { row: 4, col: 3 }, end: { row: 2, col: 1 } }), { start: { row: 2, col: 1 }, end: { row: 4, col: 3 } }, 'normalize(4,3 2,1) and (2,1 4,3)'); }; exports.testUnionRanges = function() { t.deepEqual(Range.unionRanges({ start: { row: 1, col: 2 }, end: { row: 3, col: 4 } }, { start: { row: 5, col: 6 }, end: { row: 7, col: 8 } }), { start: { row: 1, col: 2 }, end: { row: 7, col: 8 } }, '[ 1,2 3,4 ] union [ 5,6 7,8 ] = [ 1,2 7,8 ]'); t.deepEqual(Range.unionRanges({ start: { row: 4, col: 4 }, end: { row: 5, col: 5 } }, { start: { row: 3, col: 3 }, end: { row: 4, col: 5 } }), { start: { row: 3, col: 3 }, end: { row: 5, col: 5 } }, '[ 4,4 5,5 ] union [ 3,3 4,5 ] = [ 3,3 5,5 ]'); }; });