Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
59 changes: 59 additions & 0 deletions tests/affine-cloud/e2e/open-in-app.spec.ts
Original file line number Diff line number Diff line change
@@ -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
});
Loading