Skip to content

Commit a9e5616

Browse files
committed
Created tests for SrlPoint
Created some tests for the SrlPoint
1 parent e673f9e commit a9e5616

File tree

7 files changed

+166
-14
lines changed

7 files changed

+166
-14
lines changed

bower.json

+1-7
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,8 @@
33
"version": "0.0.1",
44
"dependencies": {
55
"stacktrace-js": "0.6.4",
6-
"protobufjs": "dcodeIO/protobuf.js#473ee72417d3e2ced7c0b46371ec316e8c305bed",
6+
"protobufjs": "dcodeIO/protobuf.js#c7bf7fc571a9bb1a8c63a2e33f5fddd897f4b098",
77
"requirejs": "2.2.0"
88
},
9-
"devDependencies": {
10-
"blanket": "1.1.7",
11-
"qunit": "1.23.0",
12-
"qunit-once": "0.1.1",
13-
"sinon": "http://sinonjs.org/releases/sinon-1.17.3.js"
14-
},
159
"private": true
1610
}

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"name": "SketchRecognitionFramework",
33
"version": "0.0.5",
4+
"dependencies": {
5+
"stacktrace-js": "1.2.0"
6+
},
47
"devDependencies": {
58
"grunt": "~0.4.2",
69
"grunt-cli": "~0.1.9",

src/main/js/protobufUtils/sketchProtoConverter.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* @return {Message | undefined} decoded protobuf object. (This may return undefined)
2929
*/
3030
var decode = function(data, proto, onError) {
31-
if (module.exports.isUndefined(data) || data === null || typeof data !== 'object') {
31+
if (protobufUtils.isUndefined(data) || data === null || typeof data !== 'object') {
3232
throw 'Data type is not supported:' + typeof data;
3333
}
3434
try {
@@ -79,11 +79,11 @@
7979
var objectType = object.type;
8080
switch (objectType) {
8181
case ObjectType.SHAPE:
82-
return SrlShape.createFromProtobuf(decode(object.object, ShapeMessage));
82+
return SrlShape.decode(object.object);
8383
case ObjectType.STROKE:
84-
return SrlStroke.createFromProtobuf(decode(object.object, StrokeMessage));
84+
return SrlStroke.decode(object.object);
8585
case ObjectType.POINT:
86-
return SrlPoint.createFromProtobuf(decode(object.object, PointMessage));
86+
return SrlPoint.decode(object.object);
8787
}
8888
};
8989

@@ -107,7 +107,7 @@
107107
proto.type = ObjectType.POINT;
108108
}
109109

110-
proto.object = object.sendToProtobuf().toArrayBuffer();
110+
proto.object = object.toArrayBuffer();
111111
return proto;
112112
}
113113

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
/**
2+
* Created by dtracers on 5/17/2016.
3+
*/
4+
(function (module) {
5+
var StackTrace = require('stacktrace-js');
6+
var errback = function(err) { console.log(err.message); };
7+
module.exports = function SketchLibraryException(message, cause) {
8+
9+
this.name = 'SketchLibraryException';
10+
/**
11+
* The level defines how bad it is. level 5 is the okayest exception
12+
* (with 6+ typically being ignored completely) and level 0 is the worst
13+
* exception (with <0 being treated as 0).
14+
*/
15+
this.message = undefined;
16+
this.stackTrace = undefined;
17+
this.cause = undefined;
18+
19+
/**
20+
* @returns {String} A string representation of the exception.
21+
*/
22+
this.toString = function() {
23+
return this.name + ': ' + this.message + (this.specificMessage ? '\n' + this.specificMessage : '\n') + this.stackTrace.join('\n\n');
24+
};
25+
26+
/**
27+
* Sets the message of the Exception.
28+
*
29+
* @param {messageValue} messageValue - is a string that contains the description
30+
* of the the exception that occurred.
31+
*/
32+
this.setMessage = function(messageValue) {
33+
this.specificMessage = messageValue;
34+
};
35+
36+
/**
37+
* Used to access the stacktrace of the exception without modifying it.
38+
* @return {stackTrace} Returns a string that contains the entire stacktrace of the exception.
39+
*/
40+
this.getStackTrace = function() {
41+
return this.stackTrace;
42+
};
43+
44+
/**
45+
* Used to log the stacktrace object in BaseException.
46+
*/
47+
this.printStackTrace = function() {
48+
console.log(printStackTrace().join('\n\n'));
49+
};
50+
51+
/**
52+
* Assigns the stacktrace object to an existing stacktrace.
53+
*/
54+
this.createStackTrace = function() {
55+
StackTrace.get().then(function (stackframes) {
56+
this.stackTrace = stackframes;
57+
}).catch(errback);
58+
};
59+
60+
/**
61+
* Sets the cause of baseException to the causeValue passed in.
62+
*
63+
* @param {causeValue} causeValue - Is the cause of the exception.
64+
*/
65+
this.setCause = function(causeValue) {
66+
this.cause = causeValue;
67+
};
68+
69+
/**
70+
* A getter function used to access the cause of the stacktrace without the risk of manipulating it.
71+
*/
72+
this.getCause = function() {
73+
return this.cause;
74+
};
75+
76+
this.setMessage(message);
77+
this.setCause(cause);
78+
this.createStackTrace();
79+
};
80+
})(module);

src/main/js/sketchLibrary/SrlPoint.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
var protoSketch = require("./../generated_proto/sketch");
77
var protobufUtils = require("./../protobufUtils/classCreator");
8+
var objectConversionUtils = require("./../protobufUtils/sketchProtoConverter");
9+
var SketchException = require('./SketchLibraryException');
810

911
var sketch = protoSketch.protobuf.srl.sketch;
1012

@@ -62,14 +64,14 @@
6264
* @param {Number} x
6365
*/
6466
this.setX = function(x) {
65-
throw "can't call set x must call setP";
67+
throw new SketchException("can't call set x must call setP");
6668
};
6769

6870
/**
6971
* @param {Number} y
7072
*/
7173
this.setY = function(y) {
72-
throw "can't call set y must call setP";
74+
throw new SketchException("can't call set y must call setP");
7375
};
7476

7577
/**

src/main/js/sketchLibrary/SrlStroke.js

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
var protoSketch = require("./../generated_proto/sketch");
77
var protobufUtils = require("./../protobufUtils/classCreator");
8+
var objectConversionUtils = require("./../protobufUtils/sketchProtoConverter");
89

910
var sketch = protoSketch.protobuf.srl.sketch;
1011

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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

Comments
 (0)