aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/assert.ts
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-05-29 17:42:44 +0800
committerGitHub <noreply@github.com>2017-05-29 17:42:44 +0800
commit3819030a40af3d1cd2a9afddb125055c7e1e1ace (patch)
treea2c0299fb3f4180bffc7901ec3e4a9144190fbf6 /src/utils/assert.ts
parent62cc3b919c73b7726793808e3b9631dba41cef28 (diff)
parent209d8483cf48a87a8e90de2b9a5be840dfc23613 (diff)
downloaddexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.tar
dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.tar.gz
dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.tar.bz2
dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.tar.lz
dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.tar.xz
dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.tar.zst
dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.zip
Merge pull request #15 from 0xProject/rm-ts
Remove typescript folder
Diffstat (limited to 'src/utils/assert.ts')
-rw-r--r--src/utils/assert.ts47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/utils/assert.ts b/src/utils/assert.ts
new file mode 100644
index 000000000..1baf572d1
--- /dev/null
+++ b/src/utils/assert.ts
@@ -0,0 +1,47 @@
+import * as _ from 'lodash';
+import * as BigNumber from 'bignumber.js';
+import * as Web3 from 'web3';
+import {SchemaValidator} from './schema_validator';
+
+const HEX_REGEX = /^0x[0-9A-F]*$/i;
+
+export const assert = {
+ isBigNumber(variableName: string, value: BigNumber.BigNumber): void {
+ const isBigNumber = _.isObject(value) && value.isBigNumber;
+ this.assert(isBigNumber, this.typeAssertionMessage(variableName, 'BigNumber', value));
+ },
+ isUndefined(value: any, variableName?: string): void {
+ this.assert(_.isUndefined(value), this.typeAssertionMessage(variableName, 'undefined', value));
+ },
+ isString(variableName: string, value: string): void {
+ this.assert(_.isString(value), this.typeAssertionMessage(variableName, 'string', value));
+ },
+ isHexString(variableName: string, value: string): void {
+ this.assert(_.isString(value) && HEX_REGEX.test(value),
+ this.typeAssertionMessage(variableName, 'HexString', value));
+ },
+ isETHAddressHex(variableName: string, value: string): void {
+ const web3 = new Web3();
+ this.assert(web3.isAddress(value), this.typeAssertionMessage(variableName, 'ETHAddressHex', value));
+ },
+ isNumber(variableName: string, value: number): void {
+ this.assert(_.isFinite(value), this.typeAssertionMessage(variableName, 'number', value));
+ },
+ doesConformToSchema(variableName: string, value: object, schema: Schema): void {
+ 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): void {
+ if (!condition) {
+ throw new Error(message);
+ }
+ },
+ typeAssertionMessage(variableName: string, type: string, value: any): string {
+ return `Expected ${variableName} to be of type ${type}, encountered: ${value}`;
+ },
+};