From 914195356951221b51ab52bcb82170349c62f147 Mon Sep 17 00:00:00 2001 From: Eric Rowell Date: Sat, 7 Sep 2013 20:55:03 -0700 Subject: [PATCH] migrated more plugin tests, and continued working on context tracer --- src/Context.js | 9 +- src/plugins/Label.js | 39 ++-- src/plugins/Path.js | 4 +- src/plugins/RegularPolygon.js | 11 +- src/shapes/Ellipse.js | 3 +- src/shapes/Line.js | 7 +- src/shapes/Polygon.js | 11 +- src/shapes/Spline.js | 13 +- src/shapes/Sprite.js | 12 +- test/runner.html | 5 + test/unit/Circle-test.js | 192 ++++++++++++++++++ test/unit/plugins/Label-test.js | 79 +++++++ .../unit/plugins/RegularPolygon-test.js | 55 +++-- .../unit/plugins/Star-test.js | 34 ++-- test/unit/shapes/Spline-test.js | 7 +- tests/js/unit/plugins/labelTests.js | 84 -------- 16 files changed, 374 insertions(+), 191 deletions(-) create mode 100644 test/unit/Circle-test.js create mode 100644 test/unit/plugins/Label-test.js rename tests/js/unit/plugins/regularPolygonTests.js => test/unit/plugins/RegularPolygon-test.js (61%) rename tests/js/unit/plugins/starTests.js => test/unit/plugins/Star-test.js (66%) delete mode 100644 tests/js/unit/plugins/labelTests.js diff --git a/src/Context.js b/src/Context.js index 3144d048..a6064890 100644 --- a/src/Context.js +++ b/src/Context.js @@ -23,6 +23,7 @@ 'lineTo', 'moveTo', 'putImageData', + 'quadraticCurveTo', 'rect', 'restore', 'rotate', @@ -229,7 +230,7 @@ }, createPattern: function() { var a = arguments; - this._context.createPattern(a[0], a[1]); + return this._context.createPattern(a[0], a[1]); }, createRadialGradient: function() { var a = arguments; @@ -270,7 +271,11 @@ }, putImageData: function() { var a = arguments; - this._context.rect(a[0], a[1], a[2]); + this._context.putImageData(a[0], a[1], a[2]); + }, + quadraticCurveTo: function() { + var a = arguments; + this._context.quadraticCurveTo(a[0], a[1], a[2], a[3]); }, restore: function() { this._context.restore(); diff --git a/src/plugins/Label.js b/src/plugins/Label.js index 1698a1b6..69137e21 100644 --- a/src/plugins/Label.js +++ b/src/plugins/Label.js @@ -176,48 +176,47 @@ this.className = 'Tag'; }, drawFunc: function(context) { - var _context = context._context, - width = this.getWidth(), + var width = this.getWidth(), height = this.getHeight(), pointerDirection = this.getPointerDirection(), pointerWidth = this.getPointerWidth(), pointerHeight = this.getPointerHeight(), cornerRadius = this.getCornerRadius(); - _context.beginPath(); - _context.moveTo(0,0); + context.beginPath(); + context.moveTo(0,0); if (pointerDirection === UP) { - _context.lineTo((width - pointerWidth)/2, 0); - _context.lineTo(width/2, -1 * pointerHeight); - _context.lineTo((width + pointerWidth)/2, 0); + context.lineTo((width - pointerWidth)/2, 0); + context.lineTo(width/2, -1 * pointerHeight); + context.lineTo((width + pointerWidth)/2, 0); } - _context.lineTo(width, 0); + context.lineTo(width, 0); if (pointerDirection === RIGHT) { - _context.lineTo(width, (height - pointerHeight)/2); - _context.lineTo(width + pointerWidth, height/2); - _context.lineTo(width, (height + pointerHeight)/2); + context.lineTo(width, (height - pointerHeight)/2); + context.lineTo(width + pointerWidth, height/2); + context.lineTo(width, (height + pointerHeight)/2); } - _context.lineTo(width, height); + context.lineTo(width, height); if (pointerDirection === DOWN) { - _context.lineTo((width + pointerWidth)/2, height); - _context.lineTo(width/2, height + pointerHeight); - _context.lineTo((width - pointerWidth)/2, height); + context.lineTo((width + pointerWidth)/2, height); + context.lineTo(width/2, height + pointerHeight); + context.lineTo((width - pointerWidth)/2, height); } - _context.lineTo(0, height); + context.lineTo(0, height); if (pointerDirection === LEFT) { - _context.lineTo(0, (height + pointerHeight)/2); - _context.lineTo(-1 * pointerWidth, height/2); - _context.lineTo(0, (height - pointerHeight)/2); + context.lineTo(0, (height + pointerHeight)/2); + context.lineTo(-1 * pointerWidth, height/2); + context.lineTo(0, (height - pointerHeight)/2); } - _context.closePath(); + context.closePath(); context.fillStrokeShape(this); } }; diff --git a/src/plugins/Path.js b/src/plugins/Path.js index 5c66dd77..5174b46b 100644 --- a/src/plugins/Path.js +++ b/src/plugins/Path.js @@ -80,10 +80,10 @@ } } if (this.getFill() !== undefined) { - context.fill(this); + context.fillShape(this); } - context.stroke(this); + context.strokeShape(this); } }; Kinetic.Util.extend(Kinetic.Path, Kinetic.Shape); diff --git a/src/plugins/RegularPolygon.js b/src/plugins/RegularPolygon.js index e31d26f3..433421f5 100644 --- a/src/plugins/RegularPolygon.js +++ b/src/plugins/RegularPolygon.js @@ -31,20 +31,19 @@ this.className = 'RegularPolygon'; }, drawFunc: function(context) { - var _context = context._context, - sides = this.attrs.sides, + var sides = this.attrs.sides, radius = this.attrs.radius, n, x, y; - _context.beginPath(); - _context.moveTo(0, 0 - radius); + context.beginPath(); + context.moveTo(0, 0 - radius); for(n = 1; n < sides; n++) { x = radius * Math.sin(n * 2 * Math.PI / sides); y = -1 * radius * Math.cos(n * 2 * Math.PI / sides); - _context.lineTo(x, y); + context.lineTo(x, y); } - _context.closePath(); + context.closePath(); context.fillStrokeShape(this); } }; diff --git a/src/shapes/Ellipse.js b/src/shapes/Ellipse.js index b8a82e08..e0aff401 100644 --- a/src/shapes/Ellipse.js +++ b/src/shapes/Ellipse.js @@ -23,8 +23,7 @@ this.className = ELLIPSE; }, drawFunc: function(context) { - var _context = context._context, - r = this.getRadius(); + var r = this.getRadius(); context.beginPath(); context.save(); diff --git a/src/shapes/Line.js b/src/shapes/Line.js index 8f693b95..46fe9a40 100644 --- a/src/shapes/Line.js +++ b/src/shapes/Line.js @@ -44,15 +44,14 @@ drawFunc: function(context) { var points = this.getPoints(), length = points.length, - _context = context._context, n, point; - _context.beginPath(); - _context.moveTo(points[0].x, points[0].y); + context.beginPath(); + context.moveTo(points[0].x, points[0].y); for(n = 1; n < length; n++) { point = points[n]; - _context.lineTo(point.x, point.y); + context.lineTo(point.x, point.y); } context.strokeShape(this); diff --git a/src/shapes/Polygon.js b/src/shapes/Polygon.js index 30d1a372..f6011de5 100644 --- a/src/shapes/Polygon.js +++ b/src/shapes/Polygon.js @@ -28,16 +28,15 @@ this.className = 'Polygon'; }, drawFunc: function(context) { - var _context = context._context, - points = this.getPoints(), + var points = this.getPoints(), length = points.length; - _context.beginPath(); - _context.moveTo(points[0].x, points[0].y); + context.beginPath(); + context.moveTo(points[0].x, points[0].y); for(var n = 1; n < length; n++) { - _context.lineTo(points[n].x, points[n].y); + context.lineTo(points[n].x, points[n].y); } - _context.closePath(); + context.closePath(); context.fillStrokeShape(this); } }; diff --git a/src/shapes/Spline.js b/src/shapes/Spline.js index e9fdb662..5be77fef 100644 --- a/src/shapes/Spline.js +++ b/src/shapes/Spline.js @@ -40,12 +40,11 @@ drawFunc: function(context) { var points = this.getPoints(), length = points.length, - _context = context._context, tension = this.getTension(), ap, len, n, point; - _context.beginPath(); - _context.moveTo(points[0].x, points[0].y); + context.beginPath(); + context.moveTo(points[0].x, points[0].y); // tension if(tension !== 0 && length > 2) { @@ -53,19 +52,19 @@ len = ap.length; n = 2; - _context.quadraticCurveTo(ap[0].x, ap[0].y, ap[1].x, ap[1].y); + context.quadraticCurveTo(ap[0].x, ap[0].y, ap[1].x, ap[1].y); while(n < len - 1) { - _context.bezierCurveTo(ap[n].x, ap[n++].y, ap[n].x, ap[n++].y, ap[n].x, ap[n++].y); + context.bezierCurveTo(ap[n].x, ap[n++].y, ap[n].x, ap[n++].y, ap[n].x, ap[n++].y); } - _context.quadraticCurveTo(ap[len - 1].x, ap[len - 1].y, points[length - 1].x, points[length - 1].y); + context.quadraticCurveTo(ap[len - 1].x, ap[len - 1].y, points[length - 1].x, points[length - 1].y); } // no tension else { for(n = 1; n < length; n++) { point = points[n]; - _context.lineTo(point.x, point.y); + context.lineTo(point.x, point.y); } } diff --git a/src/shapes/Sprite.js b/src/shapes/Sprite.js index aef7644f..1002633e 100644 --- a/src/shapes/Sprite.js +++ b/src/shapes/Sprite.js @@ -87,22 +87,20 @@ var anim = this.getAnimation(), index = this.getIndex(), f = this.getAnimations()[anim][index], - _context = context._context, image = this.getImage(); if(image) { - _context.drawImage(image, f.x, f.y, f.width, f.height, 0, 0, f.width, f.height); + context.drawImage(image, f.x, f.y, f.width, f.height, 0, 0, f.width, f.height); } }, drawHitFunc: function(context) { var anim = this.getAnimation(), index = this.getIndex(), - f = this.getAnimations()[anim][index], - _context = context._context; + f = this.getAnimations()[anim][index]; - _context.beginPath(); - _context.rect(0, 0, f.width, f.height); - _context.closePath(); + context.beginPath(); + context.rect(0, 0, f.width, f.height); + context.closePath(); context.fill(this); }, /** diff --git a/test/runner.html b/test/runner.html index 9efe8b8a..12684580 100644 --- a/test/runner.html +++ b/test/runner.html @@ -69,6 +69,11 @@ + + + + +