mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-23 05:13:07 +02:00
test: add stories for MkChannelFollowButton
This commit is contained in:
parent
182b1d1e19
commit
01b7ce11ba
3 changed files with 156 additions and 1 deletions
|
@ -17,6 +17,27 @@ export function abuseUserReport() {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function channel() {
|
||||||
|
return {
|
||||||
|
id: 'somechannelid',
|
||||||
|
createdAt: '2016-12-28T22:49:51.000Z',
|
||||||
|
lastNotedAt: '2023-01-01T00:00:00.000Z',
|
||||||
|
name: 'AKANE☆CHANNEL',
|
||||||
|
description: 'sweetie sweet',
|
||||||
|
userId: 'someuserid',
|
||||||
|
bannerUrl: 'https://github.com/misskey-dev/misskey/blob/master/packages/frontend/assets/fedi.jpg?raw=true',
|
||||||
|
pinnedNoteIds: ['somenoteid'],
|
||||||
|
color: '#eb613f',
|
||||||
|
isArchived: false,
|
||||||
|
usersCount: 16,
|
||||||
|
notesCount: 1024,
|
||||||
|
isFollowing: false,
|
||||||
|
isFavorited: false,
|
||||||
|
hasUnreadNote: false,
|
||||||
|
pinnedNotes: [note()],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export function galleryPost(isSensitive = false) {
|
export function galleryPost(isSensitive = false) {
|
||||||
return {
|
return {
|
||||||
id: 'somepostid',
|
id: 'somepostid',
|
||||||
|
@ -60,6 +81,31 @@ export function file(isSensitive = false) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function note() {
|
||||||
|
return {
|
||||||
|
id: 'somenoteid',
|
||||||
|
createdAt: '2016-12-28T22:49:51.000Z',
|
||||||
|
userId: 'someuserid',
|
||||||
|
user: userDetailed(),
|
||||||
|
text: 'make some noise',
|
||||||
|
cw: 'sing along',
|
||||||
|
visibility: 'public',
|
||||||
|
localOnly: false,
|
||||||
|
reactionAcceptance: null,
|
||||||
|
renoteCount: 4,
|
||||||
|
repliesCount: 2,
|
||||||
|
reactions: {
|
||||||
|
'👍': 16,
|
||||||
|
':yo@.:': 8,
|
||||||
|
},
|
||||||
|
reactionEmojis: {},
|
||||||
|
fileIds: [],
|
||||||
|
files: [],
|
||||||
|
replyId: null,
|
||||||
|
renoteId: null,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export function userDetailed(id = 'someuserid', username = 'miskist', host = 'misskey-hub.net', name = 'Misskey User'): entities.UserDetailed {
|
export function userDetailed(id = 'someuserid', username = 'miskist', host = 'misskey-hub.net', name = 'Misskey User'): entities.UserDetailed {
|
||||||
return {
|
return {
|
||||||
id,
|
id,
|
||||||
|
|
|
@ -396,7 +396,7 @@ function toStories(component: string): string {
|
||||||
// glob('src/{components,pages,ui,widgets}/**/*.vue')
|
// glob('src/{components,pages,ui,widgets}/**/*.vue')
|
||||||
Promise.all([
|
Promise.all([
|
||||||
glob('src/components/global/*.vue'),
|
glob('src/components/global/*.vue'),
|
||||||
glob('src/components/Mk{A,B}*.vue'),
|
glob('src/components/Mk{A,B,C}*.vue'),
|
||||||
glob('src/components/MkDigitalClock.vue'),
|
glob('src/components/MkDigitalClock.vue'),
|
||||||
glob('src/components/MkGalleryPostPreview.vue'),
|
glob('src/components/MkGalleryPostPreview.vue'),
|
||||||
glob('src/components/MkSignupServerRules.vue'),
|
glob('src/components/MkSignupServerRules.vue'),
|
||||||
|
|
|
@ -0,0 +1,109 @@
|
||||||
|
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
||||||
|
import { action } from '@storybook/addon-actions';
|
||||||
|
import { userEvent, waitFor, within } from '@storybook/testing-library';
|
||||||
|
import { StoryObj } from '@storybook/vue3';
|
||||||
|
import { rest } from 'msw';
|
||||||
|
import { channel } from '../../.storybook/fakes';
|
||||||
|
import { commonHandlers } from '../../.storybook/mocks';
|
||||||
|
import MkChannelFollowButton from './MkChannelFollowButton.vue';
|
||||||
|
export const Default = {
|
||||||
|
render(args) {
|
||||||
|
return {
|
||||||
|
components: {
|
||||||
|
MkChannelFollowButton,
|
||||||
|
},
|
||||||
|
setup() {
|
||||||
|
return {
|
||||||
|
args,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
props() {
|
||||||
|
return {
|
||||||
|
...this.args,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
events() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
template: '<MkChannelFollowButton v-bind="props" v-on="events" />',
|
||||||
|
};
|
||||||
|
},
|
||||||
|
args: {
|
||||||
|
channel: channel(),
|
||||||
|
},
|
||||||
|
parameters: {
|
||||||
|
layout: 'centered',
|
||||||
|
msw: {
|
||||||
|
handlers: [
|
||||||
|
...commonHandlers,
|
||||||
|
rest.post('/api/channels/follow', async (req, res, ctx) => {
|
||||||
|
action('POST /api/channels/follow')(await req.json());
|
||||||
|
return res(ctx.status(204));
|
||||||
|
}),
|
||||||
|
rest.post('/api/channels/unfollow', async (req, res, ctx) => {
|
||||||
|
action('POST /api/channels/unfollow')(await req.json());
|
||||||
|
return res(ctx.status(204));
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
} satisfies StoryObj<typeof MkChannelFollowButton>;
|
||||||
|
export const Following = {
|
||||||
|
...Default,
|
||||||
|
async play({ canvasElement }) {
|
||||||
|
const canvas = within(canvasElement);
|
||||||
|
const button = canvas.getByRole('button');
|
||||||
|
await waitFor(() => userEvent.click(button));
|
||||||
|
},
|
||||||
|
parameters: {
|
||||||
|
...Default.parameters,
|
||||||
|
msw: {
|
||||||
|
handlers: [
|
||||||
|
...commonHandlers,
|
||||||
|
rest.post('/api/channels/follow', async (req, res, ctx) => {
|
||||||
|
action('POST /api/channels/follow')(await req.json());
|
||||||
|
await new Promise(() => {});
|
||||||
|
}),
|
||||||
|
rest.post('/api/channels/unfollow', async (req, res, ctx) => {
|
||||||
|
action('POST /api/channels/unfollow')(await req.json());
|
||||||
|
await new Promise(() => {});
|
||||||
|
}),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
export const Followed = {
|
||||||
|
...Default,
|
||||||
|
args: {
|
||||||
|
...Default.args,
|
||||||
|
channel: {
|
||||||
|
...channel(),
|
||||||
|
isFollowing: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
} satisfies StoryObj<typeof MkChannelFollowButton>;
|
||||||
|
export const Full = {
|
||||||
|
...Default,
|
||||||
|
args: {
|
||||||
|
...Default.args,
|
||||||
|
full: true,
|
||||||
|
},
|
||||||
|
} satisfies StoryObj<typeof MkChannelFollowButton>;
|
||||||
|
export const FullFollowing = {
|
||||||
|
...Following,
|
||||||
|
args: {
|
||||||
|
...Following.args,
|
||||||
|
full: true,
|
||||||
|
},
|
||||||
|
} satisfies StoryObj<typeof MkChannelFollowButton>;
|
||||||
|
export const FullFollowed = {
|
||||||
|
...Followed,
|
||||||
|
args: {
|
||||||
|
...Followed.args,
|
||||||
|
full: true,
|
||||||
|
},
|
||||||
|
} satisfies StoryObj<typeof MkChannelFollowButton>;
|
Loading…
Reference in a new issue