|
| 1 | +var assert = require('chai').assert; |
| 2 | +var expect = require('chai').expect; |
| 3 | + |
| 4 | +var basePath = '../../../'; |
| 5 | +var srcPath = 'main/js/'; |
| 6 | +var SrlPoint = require(basePath + srcPath + 'sketchLibrary/SrlPoint'); |
| 7 | +var SketchException = require(basePath + srcPath + 'sketchLibrary/SketchLibraryException'); |
| 8 | +var ProtoPoint = require(basePath + srcPath + 'generated_proto/sketch').protobuf.srl.sketch.SrlPoint; |
| 9 | + |
| 10 | +describe('Point Tests', function () { |
| 11 | + var x = 10; |
| 12 | + var y = 25.6; |
| 13 | + var time = 80; |
| 14 | + var id = 'id'; |
| 15 | + describe('initializations', function () { |
| 16 | + it('should be able to create an instance of the point class', function () { |
| 17 | + var sketch = new SrlPoint(); |
| 18 | + }); |
| 19 | + it('should be able to create an instance of the point class initialized with two values', function () { |
| 20 | + var point = new SrlPoint(x, y); |
| 21 | + expect(point.getX()).to.equal(x); |
| 22 | + expect(point.getY()).to.equal(y); |
| 23 | + }); |
| 24 | + it('set all values of the point', function () { |
| 25 | + var point = new SrlPoint(x, y); |
| 26 | + point.setTime(time); |
| 27 | + point.setId(id); |
| 28 | + expect(point.getX()).to.equal(x); |
| 29 | + expect(point.getY()).to.equal(y); |
| 30 | + expect('' + point.getTime()).to.equal('' + time); |
| 31 | + expect(point.getId()).to.equal(id); |
| 32 | + }); |
| 33 | + it('can not set x and y separately', function () { |
| 34 | + var point = new SrlPoint(x, y); |
| 35 | + expect(function () { |
| 36 | + point.setX(5); |
| 37 | + }).to.throw(SketchException); |
| 38 | + expect(function () { |
| 39 | + point.setY(5); |
| 40 | + }).to.throw(SketchException); |
| 41 | + }); |
| 42 | + }); |
| 43 | + |
| 44 | + describe('protobuf', function () { |
| 45 | + it('should be able to create an arraybuffer', function () { |
| 46 | + var point = new SrlPoint(); |
| 47 | + point.setP(x, y); |
| 48 | + point.setTime(time); |
| 49 | + point.setId(id); |
| 50 | + var arrayBuffer = point.toArrayBuffer(); |
| 51 | + var decoded = ProtoPoint.decode(arrayBuffer); |
| 52 | + expect(decoded.getX()).to.equal(x); |
| 53 | + expect(decoded.getY()).to.equal(y); |
| 54 | + expect('' + decoded.getTime()).to.equal('' + time); |
| 55 | + expect(decoded.getId()).to.equal(id); |
| 56 | + }); |
| 57 | + |
| 58 | + it('should be able to parse an array buffer', function () { |
| 59 | + var protoPoint = new ProtoPoint(); |
| 60 | + protoPoint.setX(x); |
| 61 | + protoPoint.setY(y); |
| 62 | + protoPoint.setTime(time); |
| 63 | + protoPoint.setId(id); |
| 64 | + var arrayBuffer = protoPoint.toArrayBuffer(); |
| 65 | + var decoded = SrlPoint.decode(arrayBuffer); |
| 66 | + expect(decoded.getX()).to.equal(x); |
| 67 | + expect(decoded.getY()).to.equal(y); |
| 68 | + expect('' + decoded.getTime()).to.equal('' + time); |
| 69 | + expect(decoded.getId()).to.equal(id); |
| 70 | + }); |
| 71 | + }); |
| 72 | +}); |
0 commit comments