mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-13 03:31:28 +08:00

* feat: [SIG-566]: Added message to alert user about their past due - subscription status * feat: [SIG-566]: Added message string to billings.json * feat: [SIG-566]: Added strings to billings.json * feat: [SIG-566]: updated test cases * feat: [SIG-566]: updated message text * feat: [SIG-566]: code fix * feat: [SIG-566]: code fix
185 lines
5.1 KiB
TypeScript
185 lines
5.1 KiB
TypeScript
import { billingSuccessResponse } from 'mocks-server/__mockdata__/billing';
|
|
import {
|
|
notOfTrailResponse,
|
|
trialConvertedToSubscriptionResponse,
|
|
} from 'mocks-server/__mockdata__/licenses';
|
|
import { server } from 'mocks-server/server';
|
|
import { rest } from 'msw';
|
|
import { act, render, screen } from 'tests/test-utils';
|
|
import { getFormattedDate } from 'utils/timeUtils';
|
|
|
|
import BillingContainer from './BillingContainer';
|
|
|
|
const lisenceUrl = 'http://localhost/api/v2/licenses';
|
|
|
|
jest.mock('uplot', () => {
|
|
const paths = {
|
|
spline: jest.fn(),
|
|
bars: jest.fn(),
|
|
};
|
|
|
|
const uplotMock = jest.fn(() => ({
|
|
paths,
|
|
}));
|
|
|
|
return {
|
|
paths,
|
|
default: uplotMock,
|
|
};
|
|
});
|
|
|
|
window.ResizeObserver =
|
|
window.ResizeObserver ||
|
|
jest.fn().mockImplementation(() => ({
|
|
disconnect: jest.fn(),
|
|
observe: jest.fn(),
|
|
unobserve: jest.fn(),
|
|
}));
|
|
|
|
describe('BillingContainer', () => {
|
|
test('Component should render', async () => {
|
|
act(() => {
|
|
render(<BillingContainer />);
|
|
});
|
|
|
|
const dataInjection = screen.getByRole('columnheader', {
|
|
name: /data ingested/i,
|
|
});
|
|
expect(dataInjection).toBeInTheDocument();
|
|
const pricePerUnit = screen.getByRole('columnheader', {
|
|
name: /price per unit/i,
|
|
});
|
|
expect(pricePerUnit).toBeInTheDocument();
|
|
const cost = screen.getByRole('columnheader', {
|
|
name: /cost \(billing period to date\)/i,
|
|
});
|
|
expect(cost).toBeInTheDocument();
|
|
|
|
const manageBilling = screen.getByRole('button', {
|
|
name: 'manage_billing',
|
|
});
|
|
expect(manageBilling).toBeInTheDocument();
|
|
|
|
const dollar = screen.getByText(/\$0/i);
|
|
expect(dollar).toBeInTheDocument();
|
|
|
|
const currentBill = screen.getByText('billing');
|
|
expect(currentBill).toBeInTheDocument();
|
|
});
|
|
|
|
test('OnTrail', async () => {
|
|
act(() => {
|
|
render(<BillingContainer />);
|
|
});
|
|
|
|
const freeTrailText = await screen.findByText('Free Trial');
|
|
expect(freeTrailText).toBeInTheDocument();
|
|
|
|
const currentBill = screen.getByText('billing');
|
|
expect(currentBill).toBeInTheDocument();
|
|
|
|
const dollar0 = await screen.findByText(/\$0/i);
|
|
expect(dollar0).toBeInTheDocument();
|
|
const onTrail = await screen.findByText(
|
|
/You are in free trial period. Your free trial will end on 20 Oct 2023/i,
|
|
);
|
|
expect(onTrail).toBeInTheDocument();
|
|
|
|
const numberOfDayRemaining = await screen.findByText(/1 days_remaining/i);
|
|
expect(numberOfDayRemaining).toBeInTheDocument();
|
|
const upgradeButton = await screen.findAllByRole('button', {
|
|
name: /upgrade_plan/i,
|
|
});
|
|
expect(upgradeButton[1]).toBeInTheDocument();
|
|
expect(upgradeButton.length).toBe(2);
|
|
const checkPaidPlan = await screen.findByText(/checkout_plans/i);
|
|
expect(checkPaidPlan).toBeInTheDocument();
|
|
|
|
const link = screen.getByRole('link', { name: /here/i });
|
|
expect(link).toBeInTheDocument();
|
|
});
|
|
|
|
test('OnTrail but trialConvertedToSubscription', async () => {
|
|
server.use(
|
|
rest.get(lisenceUrl, (req, res, ctx) =>
|
|
res(ctx.status(200), ctx.json(trialConvertedToSubscriptionResponse)),
|
|
),
|
|
);
|
|
|
|
act(() => {
|
|
render(<BillingContainer />);
|
|
});
|
|
|
|
const currentBill = screen.getByText('billing');
|
|
expect(currentBill).toBeInTheDocument();
|
|
|
|
const dollar0 = await screen.findByText(/\$0/i);
|
|
expect(dollar0).toBeInTheDocument();
|
|
|
|
const onTrail = await screen.findByText(
|
|
/You are in free trial period. Your free trial will end on 20 Oct 2023/i,
|
|
);
|
|
expect(onTrail).toBeInTheDocument();
|
|
|
|
const receivedCardDetails = await screen.findByText(
|
|
/card_details_recieved_and_billing_info/i,
|
|
);
|
|
expect(receivedCardDetails).toBeInTheDocument();
|
|
|
|
const manageBillingButton = await screen.findByRole('button', {
|
|
name: /manage_billing/i,
|
|
});
|
|
expect(manageBillingButton).toBeInTheDocument();
|
|
|
|
const dayRemainingInBillingPeriod = await screen.findByText(
|
|
/1 days_remaining/i,
|
|
);
|
|
expect(dayRemainingInBillingPeriod).toBeInTheDocument();
|
|
});
|
|
|
|
test('Not on ontrail', async () => {
|
|
server.use(
|
|
rest.get(lisenceUrl, (req, res, ctx) =>
|
|
res(ctx.status(200), ctx.json(notOfTrailResponse)),
|
|
),
|
|
);
|
|
const { findByText } = render(<BillingContainer />);
|
|
|
|
const billingPeriodText = `Your current billing period is from ${getFormattedDate(
|
|
billingSuccessResponse.data.billingPeriodStart,
|
|
)} to ${getFormattedDate(billingSuccessResponse.data.billingPeriodEnd)}`;
|
|
|
|
const billingPeriod = await findByText(billingPeriodText);
|
|
expect(billingPeriod).toBeInTheDocument();
|
|
|
|
const currentBill = screen.getByText('billing');
|
|
expect(currentBill).toBeInTheDocument();
|
|
|
|
const dollar0 = await screen.findByText(/\$1,278.3/i);
|
|
expect(dollar0).toBeInTheDocument();
|
|
|
|
const metricsRow = await screen.findByRole('row', {
|
|
name: /metrics 4012 Million 0.1 \$ 401.2/i,
|
|
});
|
|
expect(metricsRow).toBeInTheDocument();
|
|
|
|
const logRow = await screen.findByRole('row', {
|
|
name: /Logs 497 GB 0.4 \$ 198.8/i,
|
|
});
|
|
expect(logRow).toBeInTheDocument();
|
|
});
|
|
|
|
test('Should render corrent day remaining in billing period', async () => {
|
|
server.use(
|
|
rest.get(lisenceUrl, (req, res, ctx) =>
|
|
res(ctx.status(200), ctx.json(notOfTrailResponse)),
|
|
),
|
|
);
|
|
render(<BillingContainer />);
|
|
const dayRemainingInBillingPeriod = await screen.findByText(
|
|
/11 days_remaining/i,
|
|
);
|
|
expect(dayRemainingInBillingPeriod).toBeInTheDocument();
|
|
});
|
|
});
|