c4a950a40c
We can be more precise and conservative by using the backend satellite/analytics service. We also no longer need client-side Segment scripts. Change-Id: Ic5fb18bea2d388b586ad773e26027d69bde87294
113 lines
3.8 KiB
TypeScript
113 lines
3.8 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 } from '@/store/modules/projects';
|
|
import { makeUsersModule, USER_MUTATIONS } from '@/store/modules/users';
|
|
import { CreditCard } from '@/types/payments';
|
|
import { User } from '@/types/users';
|
|
import { Notificator } from '@/utils/plugins/notificator';
|
|
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();
|
|
|
|
localVue.use(Vuex);
|
|
|
|
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);
|
|
|
|
const ANIMATION_COMPLETE_TIME = 600;
|
|
|
|
describe('PaymentMethods', () => {
|
|
it('renders correctly without card', () => {
|
|
const wrapper = mount(PaymentMethods, {
|
|
store,
|
|
localVue,
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
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();
|
|
}, ANIMATION_COMPLETE_TIME);
|
|
}, ANIMATION_COMPLETE_TIME);
|
|
});
|
|
});
|
|
|
|
it('renders correctly after add STORJ and cancel click', async (done) => {
|
|
const wrapper = mount(PaymentMethods, {
|
|
store,
|
|
localVue,
|
|
});
|
|
|
|
await wrapper.find('.add-storj-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();
|
|
}, ANIMATION_COMPLETE_TIME);
|
|
}, ANIMATION_COMPLETE_TIME);
|
|
});
|
|
});
|
|
|
|
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();
|
|
});
|
|
});
|