aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorCsaba Solya <csaba.solya@gmail.com>2018-05-30 23:38:27 +0800
committerCsaba Solya <csaba.solya@gmail.com>2018-05-30 23:38:27 +0800
commitcf73581c0e1a90371fb23eb05318ce39027325b5 (patch)
tree88ebf759c5261ba74a40a2b748a03eb610a408a1 /test
parent6affd8f9492e04cdc81007e4f5390e4faa56499d (diff)
downloadtangerine-wallet-browser-cf73581c0e1a90371fb23eb05318ce39027325b5.tar
tangerine-wallet-browser-cf73581c0e1a90371fb23eb05318ce39027325b5.tar.gz
tangerine-wallet-browser-cf73581c0e1a90371fb23eb05318ce39027325b5.tar.bz2
tangerine-wallet-browser-cf73581c0e1a90371fb23eb05318ce39027325b5.tar.lz
tangerine-wallet-browser-cf73581c0e1a90371fb23eb05318ce39027325b5.tar.xz
tangerine-wallet-browser-cf73581c0e1a90371fb23eb05318ce39027325b5.tar.zst
tangerine-wallet-browser-cf73581c0e1a90371fb23eb05318ce39027325b5.zip
adding tests for recipient blacklist checker
Diffstat (limited to 'test')
-rw-r--r--test/unit/app/controllers/transactions/recipient-blacklist-checker-test.js78
1 files changed, 78 insertions, 0 deletions
diff --git a/test/unit/app/controllers/transactions/recipient-blacklist-checker-test.js b/test/unit/app/controllers/transactions/recipient-blacklist-checker-test.js
new file mode 100644
index 000000000..b55894684
--- /dev/null
+++ b/test/unit/app/controllers/transactions/recipient-blacklist-checker-test.js
@@ -0,0 +1,78 @@
+const assert = require('assert')
+const recipientBlackListChecker = require('../../../../../app/scripts/controllers/transactions/lib/recipient-blacklist-checker')
+const {
+ ROPSTEN_CODE,
+ RINKEYBY_CODE,
+ KOVAN_CODE,
+} = require('../../../../../app/scripts/controllers/network/enums')
+
+const KeyringController = require('eth-keyring-controller')
+
+describe('Recipient Blacklist Checker', function () {
+
+ let publicAccounts
+
+ before(async function () {
+ const damnedMnemonic = 'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat'
+ const keyringController = new KeyringController({})
+ const Keyring = keyringController.getKeyringClassForType('HD Key Tree')
+ const opts = {
+ mnemonic: damnedMnemonic,
+ numberOfAccounts: 10,
+ }
+ const keyring = new Keyring(opts)
+ publicAccounts = await keyring.getAccounts()
+ })
+
+ describe('#checkAccount', function () {
+ it('does not fail on test networks', async function () {
+ let callCount = 0
+ const networks = [ROPSTEN_CODE, RINKEYBY_CODE, KOVAN_CODE]
+ for (let networkId in networks) {
+ await Promise.all(publicAccounts.map(async (account) => {
+ await recipientBlackListChecker.checkAccount(networkId, account)
+ callCount++
+ })
+ )
+ }
+ assert.equal(callCount, 30)
+ })
+
+ it('fails on mainnet', async function () {
+ const mainnetId = 1
+ let callCount = 0
+ await Promise.all(publicAccounts.map(async (account) => {
+ try {
+ await recipientBlackListChecker.checkAccount(mainnetId, account)
+ assert.fail('function should have thrown an error')
+ } catch (err) {
+ assert.equal(err.message, 'Recipient is a public account')
+ }
+ callCount++
+ }))
+ assert.equal(callCount, 10)
+ })
+
+ it('fails for public account - uppercase', async function () {
+ const mainnetId = 1
+ const publicAccount = '0X0D1D4E623D10F9FBA5DB95830F7D3839406C6AF2'
+ try {
+ await recipientBlackListChecker.checkAccount(mainnetId, publicAccount)
+ assert.fail('function should have thrown an error')
+ } catch (err) {
+ assert.equal(err.message, 'Recipient is a public account')
+ }
+ })
+
+ it('fails for public account - lowercase', async function () {
+ const mainnetId = 1
+ const publicAccount = '0x0d1d4e623d10f9fba5db95830f7d3839406c6af2'
+ try {
+ await recipientBlackListChecker.checkAccount(mainnetId, publicAccount)
+ assert.fail('function should have thrown an error')
+ } catch (err) {
+ assert.equal(err.message, 'Recipient is a public account')
+ }
+ })
+ })
+})