aboutsummaryrefslogtreecommitdiff
path: root/js/maps_test.js
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2016-09-20 13:56:18 -0700
committerPaul Yang <TeBoring@users.noreply.github.com>2016-09-20 13:56:18 -0700
commit679381fba8b44d79a1e69d3ba1f9275f623fa62e (patch)
treeadefaa04730f25b84e34ae6085694a8b04f20cdb /js/maps_test.js
parenta2c65011c337b9ce2b6516966545cd471e4426c3 (diff)
downloadprotobuf-679381fba8b44d79a1e69d3ba1f9275f623fa62e.tar.gz
protobuf-679381fba8b44d79a1e69d3ba1f9275f623fa62e.tar.bz2
protobuf-679381fba8b44d79a1e69d3ba1f9275f623fa62e.zip
Fix for maps_test.js in JavaScript. (#2145)
Had to strip out some JSPB-format test code, but also added some .proto test messages that had been improperly stripped out.
Diffstat (limited to 'js/maps_test.js')
-rwxr-xr-xjs/maps_test.js68
1 files changed, 5 insertions, 63 deletions
diff --git a/js/maps_test.js b/js/maps_test.js
index 3ffb510b..0d442f4f 100755
--- a/js/maps_test.js
+++ b/js/maps_test.js
@@ -30,10 +30,14 @@
goog.require('goog.testing.asserts');
goog.require('goog.userAgent');
+
+// CommonJS-LoadFromFile: testbinary_pb proto.jspb.test
goog.require('proto.jspb.test.MapValueEnum');
goog.require('proto.jspb.test.MapValueMessage');
-goog.require('proto.jspb.test.MapValueMessageNoBinary');
goog.require('proto.jspb.test.TestMapFields');
+
+// CommonJS-LoadFromFile: test_pb proto.jspb.test
+goog.require('proto.jspb.test.MapValueMessageNoBinary');
goog.require('proto.jspb.test.TestMapFieldsNoBinary');
/**
@@ -258,64 +262,6 @@ function makeTests(msgInfo, submessageCtor, suffix) {
});
}
-
- /**
- * Tests serialization and deserialization in JSPB format.
- */
- it('testJSPBFormat' + suffix, function() {
- var msg = new msgInfo.constructor();
- fillMapFields(msg);
- var serialized = msg.serialize();
- var decoded = msgInfo.deserialize(serialized);
- checkMapFields(decoded);
- });
-
- /**
- * Tests serialization and deserialization in JSPB format, when there is
- * a submessage that also contains map entries. This tests recursive
- * sync.
- */
- it('testJSPBFormatNested' + suffix, function() {
- var submsg = new msgInfo.constructor();
- var mapValue = new msgInfo.constructor();
- var msg = new msgInfo.constructor();
-
- msg.getMapStringTestmapfieldsMap().set('test', mapValue);
- msg.setTestMapFields(submsg);
-
- fillMapFields(submsg);
- fillMapFields(msg);
- fillMapFields(mapValue);
-
- var serialized = msg.serialize();
-
- var decoded = msgInfo.deserialize(serialized);
- checkMapFields(decoded);
-
- var decodedSubmsg = decoded.getTestMapFields();
- assertNotNull(decodedSubmsg);
- checkMapFields(decodedSubmsg);
-
- var decodedMapValue = decoded.getMapStringTestmapfieldsMap().get('test');
- assertNotNull(decodedMapValue);
- checkMapFields(decodedMapValue);
- });
-
- /**
- * Tests toObject()/fromObject().
- */
- it('testToFromObject' + suffix, function() {
- var msg = new msgInfo.constructor();
- fillMapFields(msg);
- var obj = msg.toObject();
- var decoded = msgInfo.fromObject(obj);
- checkMapFields(decoded);
- obj = msgInfo.deserialize(msg.serialize()).toObject();
- decoded = msgInfo.fromObject(obj);
- checkMapFields(decoded);
- });
-
-
/**
* Exercises the lazy map<->underlying array sync.
*/
@@ -346,14 +292,10 @@ function makeTests(msgInfo, submessageCtor, suffix) {
describe('mapsTest', function() {
makeTests({
constructor: proto.jspb.test.TestMapFields,
- fromObject: proto.jspb.test.TestMapFields.fromObject,
- deserialize: proto.jspb.test.TestMapFields.deserialize,
deserializeBinary: proto.jspb.test.TestMapFields.deserializeBinary
}, proto.jspb.test.MapValueMessage, "_Binary");
makeTests({
constructor: proto.jspb.test.TestMapFieldsNoBinary,
- fromObject: proto.jspb.test.TestMapFieldsNoBinary.fromObject,
- deserialize: proto.jspb.test.TestMapFieldsNoBinary.deserialize,
deserializeBinary: null
}, proto.jspb.test.MapValueMessageNoBinary, "_NoBinary");
});