test(core): add open in app test case (#8695)

fix AF-1496
This commit is contained in:
pengx17
2024-11-05 07:30:59 +00:00
parent c41646be7f
commit 8c650f7b43
2 changed files with 64 additions and 1 deletions
@@ -38,7 +38,11 @@ export const OpenInAppCard = () => {
const appIcon = appIconMap[BUILD_CONFIG.appBuildType];
return (
<div className={styles.root} data-hidden={!show}>
<div
data-testid="open-in-app-card"
className={styles.root}
data-hidden={!show}
>
<div className={styles.appIconCol}>
<img src={appIcon} alt="app icon" width={48} height={48} />
</div>
@@ -0,0 +1,59 @@
import { test } from '@affine-test/kit/playwright';
import {
createRandomUser,
deleteUser,
enableCloudWorkspace,
loginUser,
} from '@affine-test/kit/utils/cloud';
import { waitForEditorLoad } from '@affine-test/kit/utils/page-logic';
import { expect } from '@playwright/test';
let user: {
id: string;
name: string;
email: string;
password: string;
};
test.beforeEach(async ({ page }) => {
user = await createRandomUser();
await loginUser(page, user);
await enableCloudWorkspace(page);
await waitForEditorLoad(page);
await page.reload();
await waitForEditorLoad(page);
});
test.afterEach(async () => {
// if you want to keep the user in the database for debugging,
// comment this line
await deleteUser(user.email);
});
test('open in app card should be shown for cloud workspace', async ({
page,
}) => {
await expect(page.getByTestId('open-in-app-card')).toBeVisible();
await page
.getByTestId('open-in-app-card')
.getByRole('checkbox', {
name: 'Remember choice',
})
.locator('input')
.click();
await page
.getByRole('button', {
name: 'Dismiss',
})
.click();
await expect(page.getByTestId('open-in-app-card')).not.toBeInViewport();
await page.reload();
await expect(page.getByTestId('open-in-app-card')).not.toBeInViewport();
// seems there is no way to bypass the open popup blocker via playwright
});