mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 08:33:09 +02:00
3b3f683f8c
* feat(#8149): respect nsfw settings on gallery list * ci(#10336): use pull_request * test(#8149): add interaction tests * test(#10336): use `waitFor` * chore: transition
85 lines
2.2 KiB
TypeScript
85 lines
2.2 KiB
TypeScript
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
|
import { expect } from '@storybook/jest';
|
|
import { userEvent, waitFor, within } from '@storybook/testing-library';
|
|
import { StoryObj } from '@storybook/vue3';
|
|
import { galleryPost } from '../../.storybook/fakes';
|
|
import MkGalleryPostPreview from './MkGalleryPostPreview.vue';
|
|
export const Default = {
|
|
render(args) {
|
|
return {
|
|
components: {
|
|
MkGalleryPostPreview,
|
|
},
|
|
setup() {
|
|
return {
|
|
args,
|
|
};
|
|
},
|
|
computed: {
|
|
props() {
|
|
return {
|
|
...this.args,
|
|
};
|
|
},
|
|
},
|
|
template: '<MkGalleryPostPreview v-bind="props" />',
|
|
};
|
|
},
|
|
async play({ canvasElement }) {
|
|
const canvas = within(canvasElement);
|
|
const links = canvas.getAllByRole('link');
|
|
await expect(links).toHaveLength(2);
|
|
await expect(links[0]).toHaveAttribute('href', `/gallery/${galleryPost().id}`);
|
|
await expect(links[1]).toHaveAttribute('href', `/@${galleryPost().user.username}@${galleryPost().user.host}`);
|
|
},
|
|
args: {
|
|
post: galleryPost(),
|
|
},
|
|
decorators: [
|
|
() => ({
|
|
template: '<div style="width:260px"><story /></div>',
|
|
}),
|
|
],
|
|
parameters: {
|
|
layout: 'centered',
|
|
},
|
|
} satisfies StoryObj<typeof MkGalleryPostPreview>;
|
|
export const Hover = {
|
|
...Default,
|
|
async play(context) {
|
|
await Default.play(context);
|
|
const canvas = within(context.canvasElement);
|
|
const links = canvas.getAllByRole('link');
|
|
await waitFor(() => userEvent.hover(links[0]));
|
|
},
|
|
} satisfies StoryObj<typeof MkGalleryPostPreview>;
|
|
export const HoverThenUnhover = {
|
|
...Default,
|
|
async play(context) {
|
|
await Hover.play(context);
|
|
const canvas = within(context.canvasElement);
|
|
const links = canvas.getAllByRole('link');
|
|
await waitFor(() => userEvent.unhover(links[0]));
|
|
},
|
|
} satisfies StoryObj<typeof MkGalleryPostPreview>;
|
|
export const Sensitive = {
|
|
...Default,
|
|
args: {
|
|
...Default.args,
|
|
post: galleryPost(true),
|
|
},
|
|
} satisfies StoryObj<typeof MkGalleryPostPreview>;
|
|
export const SensitiveHover = {
|
|
...Hover,
|
|
args: {
|
|
...Hover.args,
|
|
post: galleryPost(true),
|
|
},
|
|
} satisfies StoryObj<typeof MkGalleryPostPreview>;
|
|
export const SensitiveHoverThenUnhover = {
|
|
...HoverThenUnhover,
|
|
args: {
|
|
...HoverThenUnhover.args,
|
|
post: galleryPost(true),
|
|
},
|
|
} satisfies StoryObj<typeof MkGalleryPostPreview>;
|