paper.js/test/tests/SVGImport.js

398 lines
11 KiB
JavaScript
Raw Normal View History

2012-09-30 17:51:50 -04:00
/*
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
* 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/
*
* Distributed under the MIT license. See LICENSE file for details.
*
* All rights reserved.
*/
2013-04-23 10:19:08 -04:00
module('SVGImport');
2012-09-30 17:51:50 -04:00
test('Import complex CompoundPath and clone', function() {
2013-04-23 10:19:08 -04:00
var svg = createSVG('<path id="path" fill="red" d="M4,14h20v-2H4V14z M15,26h7v-2h-7V26z M15,22h9v-2h-9V22z M15,18h9v-2h-9V18z M4,26h9V16H4V26z M28,10V6H0v22c0,0,0,4,4,4 h25c0,0,3-0.062,3-4V10H28z M4,30c-2,0-2-2-2-2V8h24v20c0,0.921,0.284,1.558,0.676,2H4z"/>;');
var item = paper.project.importSVG(svg.getElementById('path'));
compareItems(item, item.clone(), true, true);
});
2012-09-30 17:51:50 -04:00
test('make an svg line', function() {
var svgns = 'http://www.w3.org/2000/svg';
var shape = document.createElementNS(svgns, 'line');
2012-09-30 17:51:50 -04:00
var x1 = 5,
x2 = 45,
y1 = 5,
y2 = 45;
shape.setAttribute('x1', x1);
shape.setAttribute('y1', y1);
shape.setAttribute('x2', x2);
shape.setAttribute('y2', y2);
2012-09-30 17:51:50 -04:00
2013-04-23 10:19:08 -04:00
var importedLine = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var line = new Path.Line([x1, y1], [x2, y2]);
compareItems(importedLine, line);
2012-09-30 17:51:50 -04:00
});
test('make an svg line with invalid values', function() {
var svgns = 'http://www.w3.org/2000/svg';
var shape = document.createElementNS(svgns, 'line');
shape.setAttribute('x1', null);
shape.setAttribute('y1', null);
shape.setAttribute('x2', null);
shape.setAttribute('y2', null);
2013-04-23 10:19:08 -04:00
var importedLine = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var line = new Path.Line([0, 0], [0, 0]);
compareItems(importedLine, line);
2012-09-30 17:51:50 -04:00
});
test('compare rectangle values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'rect');
var x = 25,
y = 25,
width = 100,
height = 100;
shape.setAttribute('x', x);
shape.setAttribute('y', y);
shape.setAttribute('width', width);
shape.setAttribute('height', height);
2013-04-23 10:19:08 -04:00
var importedRectangle = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var topLeft = new Point(x, y);
var size = new Size(width, height);
var rectangle = new Rectangle(topLeft, size);
var realRectangle = new Shape.Rectangle(rectangle);
2012-09-30 17:51:50 -04:00
compareItems(importedRectangle, realRectangle);
2012-09-30 17:51:50 -04:00
});
test('compare negative rectangle values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'rect');
var x = -925,
y = -111,
width = -100,
height = -18;
shape.setAttribute('x', x);
shape.setAttribute('y', y);
shape.setAttribute('width', width);
shape.setAttribute('height', height);
2013-04-23 10:19:08 -04:00
var importedRectangle = paper.project.importSVG(shape);
var topLeft = new Point(x, y);
var size = new Size(width, height);
var rectangle = new Rectangle(topLeft, size);
var realRectangle = new Shape.Rectangle(rectangle);
compareItems(importedRectangle, realRectangle);
2012-11-02 20:03:58 -04:00
});
2012-09-30 17:51:50 -04:00
test('compare invalid rectangle values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'rect');
shape.setAttribute('x', null);
shape.setAttribute('y', null);
shape.setAttribute('width', null);
shape.setAttribute('height', null);
2013-04-23 10:19:08 -04:00
var importedRectangle = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var topLeft = new Point(0, 0);
var size = new Size(0, 0);
var rectangle = new Rectangle(topLeft, size);
var realRectangle = new Shape.Rectangle(rectangle);
2012-09-30 17:51:50 -04:00
compareItems(importedRectangle, realRectangle);
2012-11-02 20:03:58 -04:00
});
2012-09-30 17:51:50 -04:00
test('compare round rectangle values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'rect');
var x = 25,
y = 25,
rx = 50,
ry = 50,
width = 100,
height = 100;
shape.setAttribute('x', x);
shape.setAttribute('y', y);
shape.setAttribute('rx', rx);
shape.setAttribute('ry', ry);
shape.setAttribute('width', width);
shape.setAttribute('height', height);
2013-04-23 10:19:08 -04:00
var importedRectangle = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var topLeft = new Point(x, y);
var size = new Size(width, height);
var cornerSize = new Size(rx, ry);
var rectangle = new Rectangle(topLeft, size);
var roundRect = new Shape.Rectangle(rectangle, cornerSize);
2012-09-30 17:51:50 -04:00
compareItems(importedRectangle, roundRect);
2012-09-30 17:51:50 -04:00
});
test('compare negative round rectangle values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'rect');
var x = -25,
y = -25,
rx = -50,
ry = -50,
width = -100,
height = -100;
shape.setAttribute('x', x);
shape.setAttribute('y', y);
shape.setAttribute('rx', rx);
shape.setAttribute('ry', ry);
shape.setAttribute('width', width);
shape.setAttribute('height', height);
2013-04-23 10:19:08 -04:00
var importedRectangle = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var topLeft = new Point(x, y);
var size = new Size(width, height);
var cornerSize = new Size(rx, ry);
var rectangle = new Rectangle(topLeft, size);
var roundRect = new Shape.Rectangle(rectangle, cornerSize);
2012-09-30 17:51:50 -04:00
compareItems(importedRectangle, roundRect);
2012-09-30 17:51:50 -04:00
});
test('compare invalid round rectangle values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'rect');
var x = null,
y = null,
rx = null,
ry = null,
width = null,
height = null;
shape.setAttribute('x', x);
shape.setAttribute('y', y);
2012-11-02 20:03:58 -04:00
shape.setAttribute('rx', rx);
shape.setAttribute('ry', ry);
2012-09-30 17:51:50 -04:00
shape.setAttribute('width', width);
shape.setAttribute('height', height);
2013-04-23 10:19:08 -04:00
var importedRectangle = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var topLeft = new Point(x, y);
var size = new Size(width, height);
var cornerSize = new Size(rx, ry);
var rectangle = new Rectangle(topLeft, size);
var roundRect = new Shape.Rectangle(rectangle, cornerSize);
2012-09-30 17:51:50 -04:00
compareItems(importedRectangle, roundRect);
2012-09-30 17:51:50 -04:00
});
test('compare ellipse values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'ellipse');
var cx = 300,
cy = 80,
rx = 100,
ry = 50;
shape.setAttribute('cx', cx);
shape.setAttribute('cy', cy);
shape.setAttribute('rx', rx);
shape.setAttribute('ry', ry);
2013-04-23 10:19:08 -04:00
var importedEllipse = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var ellipse = new Shape.Ellipse({
center: new Point(cx, cy),
radius: new Point(rx, ry)
});
2012-09-30 17:51:50 -04:00
compareItems(importedEllipse, ellipse);
2012-09-30 17:51:50 -04:00
});
test('compare negative ellipse values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'ellipse');
var cx = -111,
cy = -2,
rx = -292,
ry = -1;
shape.setAttribute('cx', cx);
shape.setAttribute('cy', cy);
shape.setAttribute('rx', rx);
shape.setAttribute('ry', ry);
2013-04-23 10:19:08 -04:00
var importedEllipse = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var ellipse = new Shape.Ellipse({
center: new Point(cx, cy),
radius: new Point(rx, ry)
});
2012-09-30 17:51:50 -04:00
compareItems(importedEllipse, ellipse);
2012-09-30 17:51:50 -04:00
});
test('compare invalid ellipse values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'ellipse');
shape.setAttribute('cx', null);
shape.setAttribute('cy', null);
shape.setAttribute('rx', null);
shape.setAttribute('ry', null);
2013-04-23 10:19:08 -04:00
var importedEllipse = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var ellipse = new Shape.Ellipse({
center: new Point(0, 0),
radius: new Point(0, 0)
});
2012-09-30 17:51:50 -04:00
compareItems(importedEllipse, ellipse);
2012-09-30 17:51:50 -04:00
});
test('compare circle values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'circle');
var cx = 100,
cy = 80,
r = 50;
2012-09-30 17:51:50 -04:00
shape.setAttribute('cx', cx);
shape.setAttribute('cy', cy);
shape.setAttribute('r', r);
2013-04-23 10:19:08 -04:00
var importedCircle = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var center = new Point(cx, cy);
var circle = new Shape.Circle(center, r);
2012-09-30 17:51:50 -04:00
compareItems(importedCircle, circle);
2012-09-30 17:51:50 -04:00
});
test('compare negative circle values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'circle');
var cx = -234,
cy = -77,
r = -1110;
shape.setAttribute('cx', cx);
shape.setAttribute('cy', cy);
shape.setAttribute('r', r);
2013-04-23 10:19:08 -04:00
var importedCircle = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var center = new Point(cx, cy);
var circle = new Shape.Circle(center, r);
2012-09-30 17:51:50 -04:00
compareItems(importedCircle, circle);
2012-09-30 17:51:50 -04:00
});
test('compare invalid circle values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'circle');
shape.setAttribute('cx', null);
shape.setAttribute('cy', null);
shape.setAttribute('r', null);
2013-04-23 10:19:08 -04:00
var importedCircle = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var center = new Point(0, 0);
var circle = new Shape.Circle(center, 0);
2012-09-30 17:51:50 -04:00
compareItems(importedCircle, circle);
2012-09-30 17:51:50 -04:00
});
test('compare polygon values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'polygon');
var svgpoints = "100,10 40,180 190,60 10,60 160,180";
shape.setAttribute('points', svgpoints);
2013-04-23 10:19:08 -04:00
var importedPolygon = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var poly = new Path();
var points = shape.points;
poly.moveTo(points.getItem(0));
for (var i = 1; i < points.numberOfItems; i++) {
poly.lineTo(points.getItem(i));
2012-09-30 17:51:50 -04:00
}
if (shape.nodeName.toLowerCase() == 'polygon') {
poly.closePath();
}
compareItems(importedPolygon, poly);
2012-09-30 17:51:50 -04:00
});
test('compare negative polygon values', function() {
2012-11-02 20:03:58 -04:00
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'polygon');
var svgpoints = "-100,-10 -40,-180 -190,-60 -10,-60 -160,-180";
shape.setAttribute('points', svgpoints);
2013-04-23 10:19:08 -04:00
var importedPolygon = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var poly = new Path();
var points = shape.points;
poly.moveTo(points.getItem(0));
for (var i = 1; i < points.numberOfItems; i++) {
poly.lineTo(points.getItem(i));
2012-09-30 17:51:50 -04:00
}
if (shape.nodeName.toLowerCase() == 'polygon') {
poly.closePath();
}
compareItems(importedPolygon, poly);
2012-09-30 17:51:50 -04:00
});
test('compare polyline values', function() {
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'polyline');
var svgpoints = "5,5 45,45 5,45 45,5";
shape.setAttribute('points', svgpoints);
2013-04-23 10:19:08 -04:00
var importedPolyline = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var poly = new Path();
var points = shape.points;
poly.moveTo(points.getItem(0));
for (var i = 1; i < points.numberOfItems; i++) {
poly.lineTo(points.getItem(i));
2012-09-30 17:51:50 -04:00
}
if (shape.nodeName.toLowerCase() == 'polygon') {
poly.closePath();
}
compareItems(importedPolyline, poly);
2012-09-30 17:51:50 -04:00
});
2012-11-02 20:03:58 -04:00
test('compare negative polyline values', function() {
var svgns = 'http://www.w3.org/2000/svg';
2012-09-30 17:51:50 -04:00
var shape = document.createElementNS(svgns, 'polyline');
var svgpoints = "-5,-5 -45,-45 -5,-45 -45,-5";
shape.setAttribute('points', svgpoints);
2013-04-23 10:19:08 -04:00
var importedPolyline = paper.project.importSVG(shape);
2012-09-30 17:51:50 -04:00
var poly = new Path();
var points = shape.points;
poly.moveTo(points.getItem(0));
for (var i = 1; i < points.numberOfItems; i++) {
poly.lineTo(points.getItem(i));
2012-09-30 17:51:50 -04:00
}
if (shape.nodeName.toLowerCase() == 'polygon') {
poly.closePath();
}
compareItems(importedPolyline, poly);
2012-09-30 17:51:50 -04:00
});