1b5b153fb7
Change-Id: I57433cf17fa12442c8ddcc74a9854a3d5dd24ea9
157 lines
5.3 KiB
TypeScript
157 lines
5.3 KiB
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import PaymentMethods from '@/components/account/billing/paymentMethods/PaymentMethods.vue';
|
|
|
|
import { appStateModule } from '@/store/modules/appState';
|
|
import { makeNotificationsModule } from '@/store/modules/notifications';
|
|
import { makePaymentsModule, PAYMENTS_MUTATIONS } from '@/store/modules/payments';
|
|
import { makeProjectsModule, PROJECTS_MUTATIONS } from '@/store/modules/projects';
|
|
import { makeUsersModule, USER_MUTATIONS } from '@/store/modules/users';
|
|
import { CreditCard } from '@/types/payments';
|
|
import { Project } from '@/types/projects';
|
|
import { User } from '@/types/users';
|
|
import { Notificator } from '@/utils/plugins/notificator';
|
|
import { SegmentioPlugin } from '@/utils/plugins/segment';
|
|
import { createLocalVue, mount, shallowMount } from '@vue/test-utils';
|
|
|
|
import { PaymentsMock } from '../../../mock/api/payments';
|
|
import { ProjectsApiMock } from '../../../mock/api/projects';
|
|
import { UsersApiMock } from '../../../mock/api/users';
|
|
|
|
const localVue = createLocalVue();
|
|
const segmentioPlugin = new SegmentioPlugin();
|
|
|
|
localVue.use(Vuex);
|
|
localVue.use(segmentioPlugin);
|
|
|
|
const paymentsApi = new PaymentsMock();
|
|
const paymentsModule = makePaymentsModule(paymentsApi);
|
|
const usersApi = new UsersApiMock();
|
|
const usersModule = makeUsersModule(usersApi);
|
|
const projectsApi = new ProjectsApiMock();
|
|
const projectsModule = makeProjectsModule(projectsApi);
|
|
const notificationsModule = makeNotificationsModule();
|
|
const store = new Vuex.Store({ modules: { usersModule, paymentsModule, projectsModule, appStateModule, notificationsModule }});
|
|
store.commit(USER_MUTATIONS.SET_USER, new User('id', 'name', 'short', 'test@test.test', 'partner', 'pass'));
|
|
|
|
class NotificatorPlugin {
|
|
public install() {
|
|
localVue.prototype.$notify = new Notificator(store);
|
|
}
|
|
}
|
|
|
|
const notificationsPlugin = new NotificatorPlugin();
|
|
|
|
localVue.use(notificationsPlugin);
|
|
|
|
describe('PaymentMethods', () => {
|
|
it('renders correctly without card', () => {
|
|
const wrapper = mount(PaymentMethods, {
|
|
store,
|
|
localVue,
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('user is unable to add less than 50$ or more than 999999$ for the first time', async () => {
|
|
const wrapper = mount(PaymentMethods, {
|
|
store,
|
|
localVue,
|
|
});
|
|
|
|
wrapper.vm.$data.tokenDepositValue = 30;
|
|
await wrapper.vm.onConfirmAddSTORJ();
|
|
|
|
expect((store.state as any).notificationsModule.notificationQueue[0].message).toMatch('First deposit amount must be more than 50 and less than 1000000');
|
|
|
|
wrapper.vm.$data.tokenDepositValue = 1000000;
|
|
await wrapper.vm.onConfirmAddSTORJ();
|
|
|
|
expect((store.state as any).notificationsModule.notificationQueue[0].message).toMatch('First deposit amount must be more than 50 and less than 1000000');
|
|
});
|
|
|
|
it('renders correctly after add card and cancel click', async (done) => {
|
|
const wrapper = shallowMount(PaymentMethods, {
|
|
store,
|
|
localVue,
|
|
});
|
|
|
|
await wrapper.find('.add-card-button').trigger('click');
|
|
|
|
await new Promise(resolve => {
|
|
setTimeout(() => {
|
|
resolve();
|
|
expect(wrapper).toMatchSnapshot();
|
|
wrapper.find('.payment-methods-area__functional-area__button-area__cancel').trigger('click');
|
|
|
|
setTimeout(() => {
|
|
expect(wrapper).toMatchSnapshot();
|
|
done();
|
|
}, 500);
|
|
}, 500);
|
|
});
|
|
});
|
|
|
|
it('renders correctly after add STORJ and cancel click', async (done) => {
|
|
const wrapper = mount(PaymentMethods, {
|
|
store,
|
|
localVue,
|
|
});
|
|
|
|
await wrapper.find('.button').trigger('click');
|
|
|
|
await new Promise(resolve => {
|
|
setTimeout(() => {
|
|
resolve();
|
|
expect(wrapper).toMatchSnapshot();
|
|
wrapper.find('.payment-methods-area__functional-area__button-area__cancel').trigger('click');
|
|
|
|
setTimeout(() => {
|
|
expect(wrapper).toMatchSnapshot();
|
|
done();
|
|
}, 500);
|
|
}, 500);
|
|
});
|
|
});
|
|
|
|
it('renders correctly after continue To Coin Payments click', async (done) => {
|
|
const project = new Project('id', 'test', 'test', 'test', 'test', true);
|
|
store.commit(PROJECTS_MUTATIONS.ADD, project);
|
|
|
|
const wrapper = mount(PaymentMethods, {
|
|
store,
|
|
localVue,
|
|
});
|
|
|
|
await wrapper.find('.button').trigger('click');
|
|
|
|
await new Promise(resolve => {
|
|
setTimeout(() => {
|
|
resolve();
|
|
wrapper.find('.confirm-add-storj-button').trigger('click');
|
|
|
|
setTimeout(() => {
|
|
expect(wrapper).toMatchSnapshot();
|
|
done();
|
|
}, 500);
|
|
}, 500);
|
|
});
|
|
});
|
|
|
|
it('renders correctly with card', () => {
|
|
const card = new CreditCard('cardId', 12, 2100, 'test', '0000', true);
|
|
store.commit(PAYMENTS_MUTATIONS.SET_CREDIT_CARDS, [card]);
|
|
|
|
const wrapper = mount(PaymentMethods, {
|
|
store,
|
|
localVue,
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|