paper.js/test/tests/PlacedSymbol.js

132 lines
4.1 KiB
JavaScript
Raw Normal View History

2011-07-01 06:17:45 -04:00
/*
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
2011-07-01 06:17:45 -04:00
* http://paperjs.org/
*
2014-01-03 19:47:16 -05:00
* Copyright (c) 2011 - 2014, Juerg Lehni & Jonathan Puckey
* http://scratchdisk.com/ & http://jonathanpuckey.com/
2011-07-01 06:17:45 -04:00
*
* Distributed under the MIT license. See LICENSE file for details.
*
* All rights reserved.
*/
2011-05-21 14:33:08 -04:00
module('Symbol & Placed Symbol');
test('placedSymbol bounds', function() {
2014-08-16 13:24:54 -04:00
var path = new Path.Circle([50, 50], 50);
path.strokeColor = 'black';
path.strokeWidth = 1;
path.strokeCap = 'round';
path.strokeJoin = 'round';
equals(path.strokeBounds,
2014-08-16 13:24:54 -04:00
{ x: -0.5, y: -0.5, width: 101, height: 101 },
'Path initial bounds');
var symbol = new Symbol(path);
var placedSymbol = new PlacedSymbol(symbol);
2011-03-06 19:01:26 -05:00
equals(placedSymbol.bounds,
2014-08-16 13:24:54 -04:00
new Rectangle(-50.5, -50.5, 101, 101),
'PlacedSymbol initial bounds');
2011-03-06 19:01:26 -05:00
2014-08-16 13:24:54 -04:00
placedSymbol.scale(1, 0.5);
equals(placedSymbol.bounds,
2014-08-16 13:24:54 -04:00
{ x: -50.5, y: -25.25, width: 101, height: 50.5 },
'Bounds after scale');
2014-08-16 13:24:54 -04:00
placedSymbol.rotate(40);
equals(placedSymbol.bounds,
2014-08-16 13:24:54 -04:00
{ x: -41.96283, y: -37.79252, width: 83.92567, height: 75.58503 },
'Bounds after rotation');
2011-03-06 10:14:57 -05:00
});
2011-05-21 14:32:41 -04:00
test('bounds of group of symbol instances', function() {
2014-08-16 13:24:54 -04:00
var path = new Path.Circle(new Point(), 10);
var symbol = new Symbol(path);
var instances = [];
for (var i = 0; i < 10; i++) {
var instance = symbol.place(new Point(i * 20, 20));
instances.push(instance);
}
var group = new Group(instances);
equals(group.bounds,
2014-08-16 13:24:54 -04:00
{ x: -10, y: 10, width: 200, height: 20 },
'Group bounds');
});
test('bounds of a symbol that contains a group of items', function() {
2014-08-16 13:24:54 -04:00
var path = new Path.Circle(new Point(), 10);
var path2 = path.clone();
path2.position.x += 20;
equals(path.bounds,
2014-08-16 13:24:54 -04:00
{ x: -10, y: -10, width: 20, height: 20 },
'path bounds');
equals(path2.bounds,
2014-08-16 13:24:54 -04:00
{ x: 10, y: -10, width: 20, height: 20 },
'path2 bounds');
var group = new Group(path, path2);
equals(group.bounds,
2014-08-16 13:24:54 -04:00
{ x: -10, y: -10, width: 40, height: 20 },
'Group bounds');
var symbol = new Symbol(group);
var instance = symbol.place(new Point(50, 50));
equals(instance.bounds,
2014-08-16 13:24:54 -04:00
{ x: 30, y: 40, width: 40, height: 20 },
'Instance bounds');
});
test('Changing the definition of a symbol should change the bounds of all instances of it.', function() {
2014-08-16 13:24:54 -04:00
var path = new Path.Circle(new Point(), 10);
var path2 = new Path.Circle(new Point(), 20);
var symbol = new Symbol(path);
var instance = symbol.place(new Point(0, 0));
equals(instance.bounds,
2014-08-16 13:24:54 -04:00
{ x: -10, y: -10, width: 20, height: 20 },
'Initial bounds');
symbol.definition = path2;
equals(instance.bounds,
2014-08-16 13:24:54 -04:00
{ x: -20, y: -20, width: 40, height: 40 },
'Bounds after changing symbol definition');
symbol.definition.scale(0.5, 0.5);
equals(instance.bounds,
2014-08-16 13:24:54 -04:00
{ x: -10, y: -10, width: 20, height: 20 },
'Bounds after modifying symbol definition');
});
2011-05-21 14:32:41 -04:00
test('Symbol definition selection', function() {
2014-08-16 13:24:54 -04:00
var path = new Path.Circle([50, 50], 50);
path.selected = true;
var symbol = new Symbol(path);
equals(function() {
return symbol.definition.selected == false;
}, true);
equals(function() {
return paper.project.selectedItems.length == 0;
}, true);
2011-06-03 16:27:18 -04:00
});
test('Symbol#place()', function() {
2014-08-16 13:24:54 -04:00
var path = new Path.Circle([50, 50], 50);
var symbol = new Symbol(path);
var placedSymbol = symbol.place();
equals(function() {
return placedSymbol.parent == paper.project.activeLayer;
}, true);
2011-06-03 16:27:18 -04:00
2014-08-16 13:24:54 -04:00
equals(function() {
return placedSymbol.symbol == symbol;
}, true);
2011-06-03 16:27:18 -04:00
2014-08-16 13:24:54 -04:00
equals(function() {
return placedSymbol.position.toString();
}, '{ x: 0, y: 0 }');
2011-06-03 16:27:18 -04:00
});
test('Symbol#place(position)', function() {
2014-08-16 13:24:54 -04:00
var path = new Path.Circle([50, 50], 50);
var symbol = new Symbol(path);
var placedSymbol = symbol.place(new Point(100, 100));
equals(function() {
return placedSymbol.position.toString();
}, '{ x: 100, y: 100 }');
2011-06-03 16:27:18 -04:00
});