Merge pull request #893 from braydonf/bug/json-detection
Fixed an issue where a hexa string was mistakenly recognized as JSON
This commit is contained in:
commit
5ae97a7146
@ -28,11 +28,16 @@ module.exports = {
|
|||||||
* @return {Object|boolean} false if the argument is not a JSON string.
|
* @return {Object|boolean} false if the argument is not a JSON string.
|
||||||
*/
|
*/
|
||||||
isValidJSON: function isValidJSON(arg) {
|
isValidJSON: function isValidJSON(arg) {
|
||||||
|
var parsed;
|
||||||
try {
|
try {
|
||||||
return JSON.parse(arg);
|
parsed = JSON.parse(arg);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (typeof(parsed) === 'object') {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
},
|
},
|
||||||
isHexa: isHexa,
|
isHexa: isHexa,
|
||||||
isHexaString: isHexa,
|
isHexaString: isHexa,
|
||||||
|
|||||||
@ -16,6 +16,7 @@ var invalidbase58 = require('./data/bitcoind/base58_keys_invalid.json');
|
|||||||
|
|
||||||
describe('PrivateKey', function() {
|
describe('PrivateKey', function() {
|
||||||
var hex = '96c132224121b509b7d0a16245e957d9192609c5637c6228311287b1be21627a';
|
var hex = '96c132224121b509b7d0a16245e957d9192609c5637c6228311287b1be21627a';
|
||||||
|
var hex2 = '8080808080808080808080808080808080808080808080808080808080808080';
|
||||||
var buf = new Buffer(hex, 'hex');
|
var buf = new Buffer(hex, 'hex');
|
||||||
var wifTestnet = 'cSdkPxkAjA4HDr5VHgsebAPDEh9Gyub4HK8UJr2DFGGqKKy4K5sG';
|
var wifTestnet = 'cSdkPxkAjA4HDr5VHgsebAPDEh9Gyub4HK8UJr2DFGGqKKy4K5sG';
|
||||||
var wifTestnetUncompressed = '92jJzK4tbURm1C7udQXxeCBvXHoHJstDXRxAMouPG1k1XUaXdsu';
|
var wifTestnetUncompressed = '92jJzK4tbURm1C7udQXxeCBvXHoHJstDXRxAMouPG1k1XUaXdsu';
|
||||||
@ -31,6 +32,12 @@ describe('PrivateKey', function() {
|
|||||||
should.exist(b.bn);
|
should.exist(b.bn);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should create a privatekey from hexa string', function() {
|
||||||
|
var a = new PrivateKey(hex2);
|
||||||
|
should.exist(a);
|
||||||
|
should.exist(a.bn);
|
||||||
|
});
|
||||||
|
|
||||||
it('should create a new random testnet private key with only one argument', function() {
|
it('should create a new random testnet private key with only one argument', function() {
|
||||||
var a = new PrivateKey(Networks.testnet);
|
var a = new PrivateKey(Networks.testnet);
|
||||||
should.exist(a);
|
should.exist(a);
|
||||||
|
|||||||
35
test/util/js.js
Normal file
35
test/util/js.js
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
'use strict';
|
||||||
|
/* jshint unused: false */
|
||||||
|
|
||||||
|
var should = require('chai').should();
|
||||||
|
var expect = require('chai').expect;
|
||||||
|
|
||||||
|
var bitcore = require('../..');
|
||||||
|
var JSUtil = bitcore.util.js;
|
||||||
|
|
||||||
|
describe('js utils', function() {
|
||||||
|
|
||||||
|
describe('isValidJSON', function() {
|
||||||
|
|
||||||
|
var hexa = '8080808080808080808080808080808080808080808080808080808080808080';
|
||||||
|
var json = '{"key": ["value", "value2"]}';
|
||||||
|
var json2 = '["value", "value2", {"key": "value"}]';
|
||||||
|
|
||||||
|
it('does not mistake an integer as valid json object', function() {
|
||||||
|
var valid = JSUtil.isValidJSON(hexa);
|
||||||
|
valid.should.equal(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('correctly validates a json object', function() {
|
||||||
|
var valid = JSUtil.isValidJSON(json);
|
||||||
|
valid.should.equal(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('correctly validates an array json object', function() {
|
||||||
|
var valid = JSUtil.isValidJSON(json);
|
||||||
|
valid.should.equal(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
Loading…
Reference in New Issue
Block a user