aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/utils/assert.ts
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-05-25 18:53:37 +0800
committerGitHub <noreply@github.com>2017-05-25 18:53:37 +0800
commitdc1ca23e3006dc614e512353aa2ae354e584f1cf (patch)
tree3016829f0dabe508af7f52e3d4893c7e7d0b8de3 /src/ts/utils/assert.ts
parent5d64b562c60710e9b9b6a6286d4278718f043d0d (diff)
parentb1a6c895cc095b39c263ff508d98395b1b901dc6 (diff)
downloaddexon-sol-tools-dc1ca23e3006dc614e512353aa2ae354e584f1cf.tar
dexon-sol-tools-dc1ca23e3006dc614e512353aa2ae354e584f1cf.tar.gz
dexon-sol-tools-dc1ca23e3006dc614e512353aa2ae354e584f1cf.tar.bz2
dexon-sol-tools-dc1ca23e3006dc614e512353aa2ae354e584f1cf.tar.lz
dexon-sol-tools-dc1ca23e3006dc614e512353aa2ae354e584f1cf.tar.xz
dexon-sol-tools-dc1ca23e3006dc614e512353aa2ae354e584f1cf.tar.zst
dexon-sol-tools-dc1ca23e3006dc614e512353aa2ae354e584f1cf.zip
Merge branch 'master' into isValidOrderHash
Diffstat (limited to 'src/ts/utils/assert.ts')
-rw-r--r--src/ts/utils/assert.ts13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/ts/utils/assert.ts b/src/ts/utils/assert.ts
index 602361233..58182dac0 100644
--- a/src/ts/utils/assert.ts
+++ b/src/ts/utils/assert.ts
@@ -1,6 +1,7 @@
import * as _ from 'lodash';
import * as BigNumber from 'bignumber.js';
import Web3 = require('web3');
+import {SchemaValidator} from './schema_validator';
const HEX_REGEX = /^0x([0-9A-F]{2})*$/i;
@@ -20,12 +21,18 @@ export const assert = {
const web3 = new Web3();
this.assert(web3.isAddress(value), this.typeAssertionMessage(variableName, 'ETHAddressHex', value));
},
- isObject(variableName: string, value: object) {
- this.assert(_.isObject(value), this.typeAssertionMessage(variableName, 'object', value));
- },
isNumber(variableName: string, value: number) {
this.assert(_.isFinite(value), this.typeAssertionMessage(variableName, 'number', value));
},
+ doesConformToSchema(variableName: string, value: object, schema: Schema) {
+ const schemaValidator = new SchemaValidator();
+ const validationResult = schemaValidator.validate(value, schema);
+ const hasValidationErrors = validationResult.errors.length > 0;
+ const msg = `Expected ${variableName} to conform to schema ${schema.id}
+Encountered: ${JSON.stringify(value, null, '\t')}
+Validation errors: ${validationResult.errors.join(', ')}`;
+ this.assert(!hasValidationErrors, msg);
+ },
assert(condition: boolean, message: string) {
if (!condition) {
throw new Error(message);