49fdd23d58
* Move secureApi to shell * Extract isTestnet test * Use mobx + subscriptions for status * Re-add status indicator * Add lerna * Move intial packages to js/packages * Move 3rdparty/{email,sms}-verification to correct location * Move package.json & README to library src * Move tests for library packages * Move views & dapps to packages * Move i18n to root * Move shell to actual src (main app) * Remove ~ references * Change ~ to root (explicit imports) * Finalise convert of ~ * Move views into dapps as well * Move dapps to packages/ * Fix references * Update css * Update test spec locations * Update tests * Case fix * Skip flakey tests * Update enzyme * Skip previously ignored tests * Allow empty api for hw * Re-add theme for embed
125 lines
4.1 KiB
JavaScript
125 lines
4.1 KiB
JavaScript
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity.
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import BigNumber from 'bignumber.js';
|
|
import { padAddress, padBool, padBytes, padFixedBytes, padString, padU32 } from './pad';
|
|
|
|
describe('abi/util/pad', () => {
|
|
const SHORT15 = '1234567890abcdef';
|
|
const BYTES15 = [0x12, 0x34, 0x56, 0x78, 0x90, 0xab, 0xcd, 0xef];
|
|
const LONG15 = `${SHORT15}000000000000000000000000000000000000000000000000`;
|
|
const PAD123 = '0000000000000000000000000000000000000000000000000000000000000123';
|
|
|
|
describe('padAddress', () => {
|
|
it('pads to 64 characters', () => {
|
|
expect(padAddress('123')).to.equal(PAD123);
|
|
});
|
|
|
|
it('strips leading 0x when passed in', () => {
|
|
expect(padFixedBytes(`0x${PAD123}`)).to.equal(PAD123);
|
|
});
|
|
});
|
|
|
|
describe('padBool', () => {
|
|
const TRUE = '0000000000000000000000000000000000000000000000000000000000000001';
|
|
const FALSE = '0000000000000000000000000000000000000000000000000000000000000000';
|
|
|
|
it('pads true to 64 characters', () => {
|
|
expect(padBool(true)).to.equal(TRUE);
|
|
});
|
|
|
|
it('pads false to 64 characters', () => {
|
|
expect(padBool(false)).to.equal(FALSE);
|
|
});
|
|
});
|
|
|
|
describe('padU32', () => {
|
|
it('left pads length < 64 bytes to 64 bytes', () => {
|
|
expect(padU32(1)).to.equal('0000000000000000000000000000000000000000000000000000000000000001');
|
|
});
|
|
|
|
it('pads hex representation', () => {
|
|
expect(padU32(0x123)).to.equal(PAD123);
|
|
});
|
|
|
|
it('pads decimal representation', () => {
|
|
expect(padU32(291)).to.equal(PAD123);
|
|
});
|
|
|
|
it('pads string representation', () => {
|
|
expect(padU32('0x123')).to.equal(PAD123);
|
|
});
|
|
|
|
it('pads BigNumber representation', () => {
|
|
expect(padU32(new BigNumber(0x123))).to.equal(PAD123);
|
|
});
|
|
|
|
it('converts negative numbers to 2s complement', () => {
|
|
expect(padU32(-123)).to.equal('ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85');
|
|
});
|
|
});
|
|
|
|
describe('padFixedBytes', () => {
|
|
it('right pads length < 64 bytes to 64 bytes (string)', () => {
|
|
expect(padFixedBytes(`0x${SHORT15}`)).to.equal(LONG15);
|
|
});
|
|
|
|
it('right pads length < 64 bytes to 64 bytes (array)', () => {
|
|
expect(padFixedBytes(BYTES15)).to.equal(LONG15);
|
|
});
|
|
|
|
it('right pads length > 64 bytes (64 byte multiples)', () => {
|
|
expect(padFixedBytes(`0x${LONG15}${SHORT15}`)).to.equal(`${LONG15}${LONG15}`);
|
|
});
|
|
|
|
it('strips leading 0x when passed in', () => {
|
|
expect(padFixedBytes(`0x${SHORT15}`)).to.equal(LONG15);
|
|
});
|
|
});
|
|
|
|
describe('padBytes', () => {
|
|
it('right pads length < 64, adding the length (string)', () => {
|
|
const result = padBytes(`0x${SHORT15}`);
|
|
|
|
expect(result.length).to.equal(128);
|
|
expect(result).to.equal(`${padU32(8)}${LONG15}`);
|
|
});
|
|
|
|
it('right pads length < 64, adding the length (array)', () => {
|
|
const result = padBytes(BYTES15);
|
|
|
|
expect(result.length).to.equal(128);
|
|
expect(result).to.equal(`${padU32(8)}${LONG15}`);
|
|
});
|
|
|
|
it('right pads length > 64, adding the length', () => {
|
|
const result = padBytes(`0x${LONG15}${SHORT15}`);
|
|
|
|
expect(result.length).to.equal(192);
|
|
expect(result).to.equal(`${padU32(0x28)}${LONG15}${LONG15}`);
|
|
});
|
|
});
|
|
|
|
describe('padString', () => {
|
|
it('correctly converts & pads strings', () => {
|
|
const result = padString('gavofyork');
|
|
|
|
expect(result.length).to.equal(128);
|
|
expect(result).to.equal(padBytes('0x6761766f66796f726b'));
|
|
});
|
|
});
|
|
});
|