/* Component test for Created atom. * Copyright (C) 2024 André Jaenisch * SPDX-FileCopyrightText: 2024 André Jaenisch * SPDX-License-Identifier: AGPL-3.0-or-later * * This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ import '@testing-library/jest-dom'; import { render, screen } from '@testing-library/svelte'; import Created from '../../../src/lib/components/atoms/Created.svelte'; describe('Created.svelte', () => { it('should mount', () => { // Arrange // Nothing to prepare // Act const { container } = render(Created); // Assert expect(container).toBeTruthy(); }); describe('when no created_at is passed', () => { describe('when no created_at_formatted is passed', () => { it('should be empty', () => { // Arrange // Nothing to prepare // Act const { container } = render(Created); // Assert expect(container.textContent).toEqual(''); }); }); describe('when created_at_formatted is passed', () => { it('should be empty', () => { // Arrange const created_at_formatted = '2024-02-11'; // Act const { container } = render(Created, { created_at_formatted }); // Assert expect(container.textContent).toEqual(''); }); }); }); describe('when created_at is passed', () => { describe('when no created_at_formatted is passed', () => { it('should be empty', () => { // Arrange const created_at = new Date(); // Act const { container } = render(Created, { created_at }); // Assert expect(container.textContent).toEqual(''); }); }); describe('when created_at_formatted is passed', () => { it('should be empty', () => { // Arrange const created_at = new Date().toISOString(); const created_at_formatted = created_at.toString(); // Act const { container } = render(Created, { created_at, created_at_formatted }); // Assert expect(container.textContent).not.toEqual(''); expect(screen.getByText(created_at_formatted)).toBeDefined(); expect(screen.getByText(created_at_formatted)).toHaveAttribute('datetime', created_at); }); }); }); });