2024-03-06 16:03:12 +01:00
|
|
|
/* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2024-02-11 14:58:01 +01:00
|
|
|
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', () => {
|
2024-04-12 15:53:14 +02:00
|
|
|
describe('when no locale is passed', () => {
|
2024-02-11 14:58:01 +01:00
|
|
|
it('should be empty', () => {
|
|
|
|
// Arrange
|
|
|
|
// Nothing to prepare
|
|
|
|
|
|
|
|
// Act
|
|
|
|
const { container } = render(Created);
|
|
|
|
|
|
|
|
// Assert
|
|
|
|
expect(container.textContent).toEqual('');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2024-04-12 15:53:14 +02:00
|
|
|
describe('when locale is passed', () => {
|
2024-02-11 14:58:01 +01:00
|
|
|
it('should be empty', () => {
|
|
|
|
// Arrange
|
2024-04-12 15:53:14 +02:00
|
|
|
const locale = 'he';
|
2024-02-11 14:58:01 +01:00
|
|
|
|
|
|
|
// Act
|
2024-04-12 15:53:14 +02:00
|
|
|
const { container } = render(Created, { locale });
|
2024-02-11 14:58:01 +01:00
|
|
|
|
|
|
|
// Assert
|
|
|
|
expect(container.textContent).toEqual('');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('when created_at is passed', () => {
|
2024-04-12 15:53:14 +02:00
|
|
|
describe('when no locale is passed', () => {
|
|
|
|
it('should render English formatted', () => {
|
2024-02-11 14:58:01 +01:00
|
|
|
// Arrange
|
|
|
|
const created_at = new Date();
|
|
|
|
|
|
|
|
// Act
|
|
|
|
const { container } = render(Created, { created_at });
|
|
|
|
|
|
|
|
// Assert
|
2024-04-12 15:53:14 +02:00
|
|
|
expect(container.textContent).toContain('created');
|
2024-02-11 14:58:01 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2024-04-12 15:53:14 +02:00
|
|
|
describe('when locale is passed', () => {
|
|
|
|
it('should render formatted in that locale', () => {
|
2024-02-11 14:58:01 +01:00
|
|
|
// Arrange
|
2024-04-12 15:53:14 +02:00
|
|
|
const created_at = new Date();
|
2024-06-14 18:04:45 +02:00
|
|
|
const locale = 'de';
|
2024-02-11 14:58:01 +01:00
|
|
|
|
|
|
|
// Act
|
2024-04-12 15:53:14 +02:00
|
|
|
const { container } = render(Created, { created_at, locale });
|
2024-02-11 14:58:01 +01:00
|
|
|
|
|
|
|
// Assert
|
|
|
|
expect(container.textContent).not.toEqual('');
|
2024-04-12 15:53:14 +02:00
|
|
|
expect(screen.getByText(new RegExp(created_at.getFullYear()))).toBeDefined();
|
2024-06-14 18:04:45 +02:00
|
|
|
expect(screen.getByText(new RegExp(created_at.getFullYear()))).toHaveAttribute(
|
|
|
|
'datetime',
|
|
|
|
created_at.toISOString()
|
|
|
|
);
|
2024-02-11 14:58:01 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|