cb62079b4f
- Add contact API endpoint for demo requests and sales enquiries - Implement functional contact forms on Demo and Pricing pages with honeypot spam protection - Update footer layout: remove Company section, add contact email - Update self-hosted FAQ to mention open source with GitHub links - Add vitest and testing-library dependencies - Add tests for MarketingLayout and PricingPage components - Remove placeholder external-auth test file
76 lines
3.6 KiB
TypeScript
76 lines
3.6 KiB
TypeScript
import { render, screen } from '@testing-library/react';
|
|
import MarketingLayout from '../src/components/layouts/MarketingLayout';
|
|
import { expect, test, describe } from 'bun:test';
|
|
|
|
describe('MarketingLayout', () => {
|
|
test('renders children correctly', () => {
|
|
render(<MarketingLayout><div>Test Child</div></MarketingLayout>);
|
|
expect(screen.getByText('Test Child')).toBeDefined();
|
|
});
|
|
|
|
test('removes "Company" section from footer', () => {
|
|
render(<MarketingLayout><div>Test Child</div></MarketingLayout>);
|
|
expect(screen.queryByText('Company')).toBeNull();
|
|
});
|
|
|
|
test('adds contact email info@secuird.tech with mailto: link in Brand section', () => {
|
|
render(<MarketingLayout><div>Test Child</div></MarketingLayout>);
|
|
const emailLink = screen.getByText('info@secuird.tech');
|
|
expect(emailLink).toBeDefined();
|
|
expect(emailLink.closest('a')).toHaveAttribute('href', 'mailto:info@secuird.tech');
|
|
});
|
|
|
|
test('adjusts grid from 5-col to 4-col layout', () => {
|
|
render(<MarketingLayout><div>Test Child</div></MarketingLayout>);
|
|
// This test assumes that the grid layout is reflected in the rendered HTML,
|
|
// for example, by a class name like 'grid-cols-4' or similar.
|
|
// You might need to adjust this based on the actual implementation.
|
|
const footer = screen.getByRole('contentinfo'); // Assuming footer has role 'contentinfo'
|
|
expect(footer).toHaveProperty('className'); // Check if className exists
|
|
expect(footer.className).toMatch(/grid-cols-4/);
|
|
expect(footer.className).not.toMatch(/grid-cols-5/);
|
|
});
|
|
});
|
|
|
|
test('removes "Company" section from footer', () => {
|
|
render(<BrowserRouter><MarketingLayout><div>Test Child</div></MarketingLayout></BrowserRouter>);
|
|
expect(screen.queryByText('Company')).toBeNull();
|
|
});
|
|
|
|
test('adds contact email info@secuird.tech with mailto: link in Brand section', () => {
|
|
render(<BrowserRouter><MarketingLayout><div>Test Child</div></MarketingLayout></BrowserRouter>);
|
|
const emailLink = screen.getByText('info@secuird.tech');
|
|
expect(emailLink).toBeDefined();
|
|
expect(emailLink.getAttribute('href')).toBe('mailto:info@secuird.tech');
|
|
});
|
|
|
|
test('adjusts grid from 5-col to 4-col layout', () => {
|
|
render(<BrowserRouter><MarketingLayout><div>Test Child</div></MarketingLayout></BrowserRouter>);
|
|
const footer = screen.getByRole('contentinfo');
|
|
expect(footer.className).toMatch(/grid-cols-4/);
|
|
expect(footer.className).not.toMatch(/grid-cols-5/);
|
|
});
|
|
});
|
|
|
|
test('removes "Company" section from footer', () => {
|
|
render(<BrowserRouter><MarketingLayout><div>Test Child</div></MarketingLayout></BrowserRouter>);
|
|
expect(screen.queryByText('Company')).toBeNull();
|
|
});
|
|
|
|
test('adds contact email info@secuird.tech with mailto: link in Brand section', () => {
|
|
render(<BrowserRouter><MarketingLayout><div>Test Child</div></MarketingLayout></BrowserRouter>);
|
|
const emailLink = screen.getByText('info@secuird.tech');
|
|
expect(emailLink).toBeDefined();
|
|
expect(emailLink.closest('a').getAttribute('href')).toBe('mailto:info@secuird.tech');
|
|
});
|
|
|
|
test('adjusts grid from 5-col to 4-col layout', () => {
|
|
render(<BrowserRouter><MarketingLayout><div>Test Child</div></MarketingLayout></BrowserRouter>);
|
|
// This test assumes that the grid layout is reflected in the rendered HTML,
|
|
// for example, by a class name like 'grid-cols-4' or similar.
|
|
// You might need to adjust this based on the actual implementation.
|
|
const footer = screen.getByRole('contentinfo'); // Assuming footer has role 'contentinfo'
|
|
expect(footer.className).toMatch(/grid-cols-4/);
|
|
expect(footer.className).not.toMatch(/grid-cols-5/);
|
|
});
|
|
}); |