aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/comment.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-21 18:36:45 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-21 18:36:45 +0200
commitfd9831446ff87414da772b17327368cb291192e6 (patch)
treec0d330e594c855aaeb041aec8e84933e04fd4363 /src/components/organisms/layout/comment.test.tsx
parent94a8e31f25ed3d92f9eb808e3264bd4ac8c039c7 (diff)
chore: add a Comment component
Diffstat (limited to 'src/components/organisms/layout/comment.test.tsx')
-rw-r--r--src/components/organisms/layout/comment.test.tsx64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/components/organisms/layout/comment.test.tsx b/src/components/organisms/layout/comment.test.tsx
new file mode 100644
index 0000000..942ed0f
--- /dev/null
+++ b/src/components/organisms/layout/comment.test.tsx
@@ -0,0 +1,64 @@
+import { render, screen } from '@test-utils';
+import { getFormattedDate, getFormattedTime } from '@utils/helpers/format';
+import Comment from './comment';
+
+const author = {
+ avatar: 'http://placeimg.com/640/480',
+ name: 'Your name',
+ url: 'https://www.example.test/',
+};
+const content =
+ 'Harum aut cumque iure fugit neque sequi cupiditate repudiandae laudantium. Ratione aut assumenda qui illum voluptas accusamus quis officiis exercitationem. Consectetur est harum eius perspiciatis officiis nihil. Aut corporis minima debitis adipisci possimus debitis et.';
+const publication = '2021-04-03 23:04:24';
+const id = 5;
+const postId = 31;
+
+const data = {
+ author,
+ content,
+ id,
+ postId,
+ publication,
+ saveComment: () => null,
+};
+
+const formattedDate = getFormattedDate(publication);
+const formattedTime = getFormattedTime(publication);
+
+describe('Comment', () => {
+ it('renders an avatar', () => {
+ render(<Comment {...data} />);
+ expect(
+ screen.getByRole('img', { name: 'Your name avatar' })
+ ).toBeInTheDocument();
+ });
+
+ it('renders the author website url', () => {
+ render(<Comment {...data} />);
+ expect(screen.getByRole('link', { name: author.name })).toHaveAttribute(
+ 'href',
+ author.url
+ );
+ });
+
+ it('renders a permalink to the comment', () => {
+ render(<Comment {...data} />);
+ expect(
+ screen.getByRole('link', {
+ name: `${formattedDate} at ${formattedTime}`,
+ })
+ ).toHaveAttribute('href', `/#comment-${id}`);
+ });
+
+ it('renders a reply button', () => {
+ render(<Comment {...data} canReply={true} />);
+ expect(screen.getByRole('button', { name: 'Reply' })).toBeInTheDocument();
+ });
+
+ it('does not render a reply button', () => {
+ render(<Comment {...data} canReply={false} />);
+ expect(
+ screen.queryByRole('button', { name: 'Reply' })
+ ).not.toBeInTheDocument();
+ });
+});