2021-02-04 19:15:23 +01:00
|
|
|
import assert from 'assert';
|
|
|
|
import React from 'react';
|
|
|
|
import sinon from 'sinon';
|
|
|
|
import { mountWithRouter } from '../../../../../test/lib/render-helpers';
|
|
|
|
import Lock from '..';
|
2020-11-09 14:50:24 +01:00
|
|
|
|
|
|
|
describe('Lock', function () {
|
|
|
|
it('replaces history with default route when isUnlocked false', function () {
|
|
|
|
const props = {
|
|
|
|
isUnlocked: false,
|
|
|
|
history: {
|
|
|
|
replace: sinon.spy(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-11-09 14:50:24 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
mountWithRouter(<Lock.WrappedComponent {...props} />);
|
2020-11-09 14:50:24 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
assert.strictEqual(props.history.replace.getCall(0).args[0], '/');
|
|
|
|
});
|
2020-11-09 14:50:24 +01:00
|
|
|
|
|
|
|
it('locks and pushes history with default route when isUnlocked true', function (done) {
|
|
|
|
const props = {
|
|
|
|
isUnlocked: true,
|
|
|
|
lockMetamask: sinon.stub(),
|
|
|
|
history: {
|
|
|
|
push: sinon.spy(),
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-11-09 14:50:24 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
props.lockMetamask.resolves();
|
2020-11-09 14:50:24 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
mountWithRouter(<Lock.WrappedComponent {...props} />);
|
2020-11-09 14:50:24 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
assert(props.lockMetamask.calledOnce);
|
2020-11-09 14:50:24 +01:00
|
|
|
setImmediate(() => {
|
2021-02-04 19:15:23 +01:00
|
|
|
assert.strictEqual(props.history.push.getCall(0).args[0], '/');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|