Skip to content

Commit 25c44fd

Browse files
committed
fixed bugs and added tests
1 parent 37c2923 commit 25c44fd

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

src/main/js/sketchLibrary/SrlShape.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -281,19 +281,19 @@ define(['./../generated_proto/sketch', // protoSketch
281281
SrlShape.createFromProtobuf = function(shape) {
282282
var interpretations = shape.interpretations;
283283
var subObjects = shape.subComponents;
284-
var newShape = new SRL_Shape();
284+
var newShape = new SrlShape();
285285
for (var i = 0; i < interpretations.length; i++) {
286286
var protoInter = interpretations[i];
287287
newShape.addInterpretation(protoInter.label, protoInter.confidence, protoInter.complexity);
288288
}
289289

290290
for (i = 0; i < subObjects.length; i++) {
291291
var protoObject = subObjects[i];
292-
newShape.addSubObject(objectConversionUtils.convertToUpgradedSketchObject(protoObject));
292+
newShape.add(objectConversionUtils.convertToUpgradedSketchObject(protoObject));
293293
}
294294
newShape.setId(shape.getId());
295295
newShape.setName(shape.getName());
296-
296+
newShape.setTime(shape.getTime());
297297
return newShape;
298298
};
299299

src/main/js/sketchLibrary/SrlStroke.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ define(['./../generated_proto/sketch', // protoSketch
244244
var array = [];
245245
var points = this.getPoints();
246246
for (var i = 0; i < points.length; i++) {
247-
array.push(points[i]);
247+
array.push(points[i].sendToProtobuf());
248248
}
249-
proto.setPoints(array); // THIS FUNCTION SUCKS!
249+
proto.setPoints(array); // this should verify the points are created correctly.
250250
return proto;
251251
};
252252

@@ -262,7 +262,7 @@ define(['./../generated_proto/sketch', // protoSketch
262262
for (var i in pointList) {
263263
if (pointList.hasOwnProperty(i)) {
264264
var point = pointList[i];
265-
var currentPoint = SrlStroke.createFromProtobuf(point);
265+
var currentPoint = SrlPoint.createFromProtobuf(point);
266266
srlStroke.addPoint(currentPoint);
267267
}
268268
}
@@ -271,6 +271,7 @@ define(['./../generated_proto/sketch', // protoSketch
271271
}
272272
srlStroke.finish();
273273
srlStroke.setId(stroke.getId());
274+
srlStroke.setTime(stroke.getTime());
274275
return srlStroke;
275276
};
276277

src/test/js/sketchLibrary/SrlShapeTest.js

+17-1
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,15 @@ describe('Shape Tests', function () {
3737
for (var i = 0; i < 10; i++) {
3838
var stroke = new SrlStroke();
3939
stroke.id = 'stroke' + i;
40-
stroke.addPoint(new SrlPoint(x, y));
40+
var point = new SrlPoint(x, y);
41+
point.setTime(50);
42+
point.setId('point' + i);
43+
stroke.addPoint(point);
4144
strokeList.push(stroke);
45+
stroke.setTime(60);
4246
var shape = new SrlShape();
4347
shape.id = 'shape' + i;
48+
shape.setTime(70);
4449
shapeList.push(shape);
4550
}
4651
});
@@ -73,5 +78,16 @@ describe('Shape Tests', function () {
7378
expect(shapeList[0].getRecursiveStrokes()).to.have.members([strokeList[0]]);
7479
expect(shapeList[0].getRecursiveSubObjects()).to.have.members([strokeList[0]]);
7580
});
81+
82+
it('should be able to encode and decode from binary protobuf correctly', function () {
83+
for (var i = 0; i < 9; i++) {
84+
shapeList[i].add(strokeList[i]);
85+
shapeList[i].add(shapeList[i + 1]);
86+
}
87+
var buffer = shapeList[0].toArrayBuffer();
88+
var shape = SrlShape.decode(buffer);
89+
// have deep members errors out. But contents were identical anyways
90+
expect(JSON.stringify([shape.getRecursiveSubObjects()])).to.be.deep.equal(JSON.stringify([shapeList[0].getRecursiveSubObjects()]));
91+
});
7692
});
7793
});

0 commit comments

Comments
 (0)