mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 04:34:06 -08:00
feat: Track self serve trial (no-changelog) (#8801)
This commit is contained in:
parent
3a7a6c8d6c
commit
d778cae9f5
|
@ -726,6 +726,10 @@ export default defineComponent({
|
||||||
if (this.registerForEnterpriseTrial && this.canRegisterForEnterpriseTrial) {
|
if (this.registerForEnterpriseTrial && this.canRegisterForEnterpriseTrial) {
|
||||||
await this.usageStore.requestEnterpriseLicenseTrial();
|
await this.usageStore.requestEnterpriseLicenseTrial();
|
||||||
licenseRequestSucceeded = true;
|
licenseRequestSucceeded = true;
|
||||||
|
this.$telemetry.track('User registered for self serve trial', {
|
||||||
|
email: this.usersStore.currentUser?.email,
|
||||||
|
instance_id: this.rootStore.instanceId,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.showError(
|
this.showError(
|
||||||
|
|
|
@ -1,31 +1,58 @@
|
||||||
import PersonalizationModal from '@/components/PersonalizationModal.vue';
|
import PersonalizationModal from '@/components/PersonalizationModal.vue';
|
||||||
import { createTestingPinia } from '@pinia/testing';
|
import { createTestingPinia } from '@pinia/testing';
|
||||||
import { PERSONALIZATION_MODAL_KEY, STORES } from '@/constants';
|
import userEvent from '@testing-library/user-event';
|
||||||
|
import { PERSONALIZATION_MODAL_KEY, STORES, VIEWS } from '@/constants';
|
||||||
import { retry } from '@/__tests__/utils';
|
import { retry } from '@/__tests__/utils';
|
||||||
import { createComponentRenderer } from '@/__tests__/render';
|
import { createComponentRenderer } from '@/__tests__/render';
|
||||||
import { fireEvent } from '@testing-library/vue';
|
import { fireEvent } from '@testing-library/vue';
|
||||||
|
import { useUsersStore } from '@/stores/users.store';
|
||||||
|
import { useUsageStore } from '@/stores/usage.store';
|
||||||
|
|
||||||
|
const pinia = createTestingPinia({
|
||||||
|
initialState: {
|
||||||
|
[STORES.UI]: {
|
||||||
|
modals: {
|
||||||
|
[PERSONALIZATION_MODAL_KEY]: { open: true },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[STORES.SETTINGS]: {
|
||||||
|
settings: {
|
||||||
|
templates: {
|
||||||
|
host: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[STORES.USERS]: {
|
||||||
|
users: {
|
||||||
|
123: {
|
||||||
|
email: 'john@doe.com',
|
||||||
|
firstName: 'John',
|
||||||
|
lastName: 'Doe',
|
||||||
|
isDefaultUser: false,
|
||||||
|
isPendingUser: false,
|
||||||
|
hasRecoveryCodesLeft: true,
|
||||||
|
isOwner: true,
|
||||||
|
mfaEnabled: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
currentUserId: '123',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
const renderComponent = createComponentRenderer(PersonalizationModal, {
|
const renderComponent = createComponentRenderer(PersonalizationModal, {
|
||||||
props: {
|
props: {
|
||||||
teleported: false,
|
teleported: false,
|
||||||
appendToBody: false,
|
appendToBody: false,
|
||||||
},
|
},
|
||||||
pinia: createTestingPinia({
|
pinia,
|
||||||
initialState: {
|
global: {
|
||||||
[STORES.UI]: {
|
mocks: {
|
||||||
modals: {
|
$route: {
|
||||||
[PERSONALIZATION_MODAL_KEY]: { open: true },
|
name: VIEWS.NEW_WORKFLOW,
|
||||||
},
|
|
||||||
},
|
|
||||||
[STORES.SETTINGS]: {
|
|
||||||
settings: {
|
|
||||||
templates: {
|
|
||||||
host: '',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}),
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('PersonalizationModal.vue', () => {
|
describe('PersonalizationModal.vue', () => {
|
||||||
|
@ -61,4 +88,50 @@ describe('PersonalizationModal.vue', () => {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should display self serve trial option when company size is larger than 500', async () => {
|
||||||
|
const wrapper = renderComponent();
|
||||||
|
|
||||||
|
await retry(() =>
|
||||||
|
expect(wrapper.container.querySelector('.modal-content')).toBeInTheDocument(),
|
||||||
|
);
|
||||||
|
|
||||||
|
const select = wrapper.container.querySelectorAll('.n8n-select')[3]!;
|
||||||
|
await fireEvent.click(select);
|
||||||
|
|
||||||
|
const item = select.querySelectorAll('.el-select-dropdown__item')[3];
|
||||||
|
await fireEvent.click(item);
|
||||||
|
|
||||||
|
await retry(() => {
|
||||||
|
expect(wrapper.container.querySelector('.card')).not.toBeNull();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should display send telemetry when requesting enterprise trial', async () => {
|
||||||
|
const usersStore = useUsersStore(pinia);
|
||||||
|
vi.spyOn(usersStore, 'submitPersonalizationSurvey').mockResolvedValue();
|
||||||
|
|
||||||
|
const usageStore = useUsageStore(pinia);
|
||||||
|
const spyLicenseTrial = vi.spyOn(usageStore, 'requestEnterpriseLicenseTrial');
|
||||||
|
|
||||||
|
const wrapper = renderComponent();
|
||||||
|
|
||||||
|
await retry(() =>
|
||||||
|
expect(wrapper.container.querySelector('.modal-content')).toBeInTheDocument(),
|
||||||
|
);
|
||||||
|
|
||||||
|
const select = wrapper.container.querySelectorAll('.n8n-select')[3]!;
|
||||||
|
await fireEvent.click(select);
|
||||||
|
|
||||||
|
const item = select.querySelectorAll('.el-select-dropdown__item')[3];
|
||||||
|
await fireEvent.click(item);
|
||||||
|
|
||||||
|
const agreeCheckbox = wrapper.container.querySelector('.n8n-checkbox')!;
|
||||||
|
await fireEvent.click(agreeCheckbox);
|
||||||
|
|
||||||
|
const submitButton = wrapper.getByRole('button')!;
|
||||||
|
await userEvent.click(submitButton);
|
||||||
|
|
||||||
|
await retry(() => expect(spyLicenseTrial).toHaveBeenCalled());
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue