Fix the rest of serialization problems and make test-serialize.ts compare the original and resulting JSON.

This commit is contained in:
László Monda
2016-04-01 23:08:37 +02:00
parent 4d5f8161e1
commit c8498eab5e
4 changed files with 12 additions and 6 deletions
@@ -36,7 +36,7 @@ class DualRoleKeystrokeAction extends KeyAction implements Serializable<DualRole
fromJsObject(jsObject: any): DualRoleKeystrokeAction { fromJsObject(jsObject: any): DualRoleKeystrokeAction {
this.assertKeyActionType(jsObject, KeyActionType.DualRoleKeystrokeAction, 'DualRoleKeystrokeAction'); this.assertKeyActionType(jsObject, KeyActionType.DualRoleKeystrokeAction, 'DualRoleKeystrokeAction');
this.scancode = jsObject.scancode; this.scancode = jsObject.scancode;
this.longPressAction = jsObject.longPressAction; this.longPressAction = LongPressAction[<string>jsObject.longPressAction];
return this; return this;
} }
@@ -51,7 +51,7 @@ class DualRoleKeystrokeAction extends KeyAction implements Serializable<DualRole
return { return {
keyActionType: KeyActionType.DualRoleKeystrokeAction, keyActionType: KeyActionType.DualRoleKeystrokeAction,
scancode: this.scancode, scancode: this.scancode,
longPressAction: KeyActionId[this.longPressAction] longPressAction: LongPressAction[this.longPressAction]
}; };
} }
@@ -34,7 +34,6 @@ class MouseAction extends KeyAction implements Serializable<MouseAction> {
fromJsObject(jsObject: any): MouseAction { fromJsObject(jsObject: any): MouseAction {
this.assertKeyActionType(jsObject, KeyActionType.MouseAction, 'MouseAction'); this.assertKeyActionType(jsObject, KeyActionType.MouseAction, 'MouseAction');
console.log(jsObject.mouseAction)
this.mouseAction = MouseActionParam[<string>jsObject.mouseAction]; this.mouseAction = MouseActionParam[<string>jsObject.mouseAction];
return this; return this;
} }
+1 -1
View File
@@ -12,7 +12,7 @@ class NoneAction extends KeyAction implements Serializable<NoneAction> {
toJsObject(): any { toJsObject(): any {
return { return {
keyActionType: KeyActionId.NoneAction keyActionType: KeyActionType.NoneAction
}; };
} }
+9 -2
View File
@@ -4,13 +4,20 @@
/// <reference path="UhkBuffer.ts" /> /// <reference path="UhkBuffer.ts" />
/// <reference path="config-items/config-items.ts" /> /// <reference path="config-items/config-items.ts" />
let assert = require('assert');
let fs = require('fs'); let fs = require('fs');
let buffer = new UhkBuffer(); let buffer = new UhkBuffer();
let uhkConfig = JSON.parse(fs.readFileSync('uhk-config.json')); let uhkConfig = JSON.parse(fs.readFileSync('uhk-config.json'));
let keyActions = uhkConfig.keymaps[0].layers[0].modules[0].keyActions; let keyActions = uhkConfig.keymaps[0].layers[0].modules[0].keyActions;
let keyActionObjects: KeyActions = new KeyActions().fromJsObject(keyActions); let keyActionObjects: KeyActions = new KeyActions().fromJsObject(keyActions);
keyActionObjects.toBinary(buffer); keyActionObjects.toBinary(buffer);
fs.writeFileSync('uhk-config.bin', buffer.getBufferContent()); fs.writeFileSync('uhk-config.bin', buffer.getBufferContent());
buffer.offset = 0; buffer.offset = 0;
let serializedKeyActions = JSON.stringify(new KeyActions().fromBinary(buffer).toJsObject(), undefined, 4); let serializedKeyActions = new KeyActions().fromBinary(buffer).toJsObject();
fs.writeFileSync('uhk-config-serialized.json', serializedKeyActions); fs.writeFileSync('uhk-config-serialized.json', JSON.stringify(serializedKeyActions, undefined, 4));
assert.deepEqual(keyActions, serializedKeyActions);
console.log('JSON configurations are identical.');