aboutsummaryrefslogtreecommitdiffstats
path: root/test/utils/blockchain_clean.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-05-26 23:12:22 +0800
committerFabio Berger <me@fabioberger.com>2017-05-26 23:12:22 +0800
commit555bac19cb90a83d5a0025e53341f76ff39c4373 (patch)
tree45db0a8151ef22ad69d9d42b8fc10807d1b613ac /test/utils/blockchain_clean.ts
parentf4bf9fc423c4bb7f2027cdd5700de56f8f4bff96 (diff)
downloaddexon-sol-tools-555bac19cb90a83d5a0025e53341f76ff39c4373.tar
dexon-sol-tools-555bac19cb90a83d5a0025e53341f76ff39c4373.tar.gz
dexon-sol-tools-555bac19cb90a83d5a0025e53341f76ff39c4373.tar.bz2
dexon-sol-tools-555bac19cb90a83d5a0025e53341f76ff39c4373.tar.lz
dexon-sol-tools-555bac19cb90a83d5a0025e53341f76ff39c4373.tar.xz
dexon-sol-tools-555bac19cb90a83d5a0025e53341f76ff39c4373.tar.zst
dexon-sol-tools-555bac19cb90a83d5a0025e53341f76ff39c4373.zip
Setup blockchain snapshotting before/after every test, implemented unit tests for exchangeWrapper.isValidSignature
Diffstat (limited to 'test/utils/blockchain_clean.ts')
-rw-r--r--test/utils/blockchain_clean.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/utils/blockchain_clean.ts b/test/utils/blockchain_clean.ts
new file mode 100644
index 000000000..6468dbec7
--- /dev/null
+++ b/test/utils/blockchain_clean.ts
@@ -0,0 +1,19 @@
+import {RPC} from './rpc';
+
+export class BlockchainClean {
+ private rpc: RPC;
+ private snapshotId: number;
+ constructor() {
+ this.rpc = new RPC();
+ }
+ // TODO: Check if running on TestRPC or on actual node, if actual node, re-deploy contracts instead
+ public async setupAsync() {
+ this.snapshotId = await this.rpc.takeSnapshotAsync();
+ }
+ public async restoreAsync() {
+ const didRevert = await this.rpc.revertSnapshotAsync(this.snapshotId);
+ if (!didRevert) {
+ throw new Error(`Snapshot with id #${this.snapshotId} failed to revert`);
+ }
+ }
+};