Files
payload/test/localization/e2e.spec.ts
Alessio Gravili f911257cd9 feat: RTL Support (#3003)
Co-authored-by: Alessio Gravili <alessio@gravili.de>
Co-authored-by: ibr-hin95 <ibr.hin95@gmail.com>
Co-authored-by: Seied Ali Mirkarimi <dasmergo@gmail.com>
Co-authored-by: muathkhatib <mkhatib.dev@gmail.com>
Co-authored-by: ibr-hin95 <40246707+ibr-hin95@users.noreply.github.com>
fix: recursiveNestedPaths not merging existing fields when hoisting row/collapsible fields (#2769)
fix: exclude monaco code editor from ltr due to microsoft/monaco-editor#2371

BREAKING CHANGE:
- The admin hook for `useLocale` now returns a Locale object of the currently active locale. Previously this would only return the code as a string. Any custom components built which had `locale = useLocale()` should be replaced with `{ code: locale } = useLocale()` to maintain the same functionality.
- The property `localization.locales` of `SanitizedConfig` type has changed. This was an array of strings and is now an array of Locale objects having: `label: string`, `code: string` and `rtl: boolean`. If you are using localization.locales from the config you will need to adjust your project or plugin accordingly.
2023-08-22 12:18:15 -04:00

172 lines
5.1 KiB
TypeScript

import type { Page } from '@playwright/test';
import { expect, test } from '@playwright/test';
import payload from '../../src';
import { AdminUrlUtil } from '../helpers/adminUrlUtil';
import { initPayloadTest } from '../helpers/configHelpers';
import { saveDocAndAssert } from '../helpers';
import type { LocalizedPost } from './payload-types';
import { localizedPostsSlug } from './config';
import { englishTitle, spanishLocale } from './shared';
/**
* TODO: Localization
*
* Fieldtypes to test: (collections for each field type)
* - localized and non-localized: array, block, group, relationship, text
*
* Repeat above for Globals
*/
const { beforeAll, describe } = test;
let url: AdminUrlUtil;
const defaultLocale = 'en';
const title = 'english title';
const spanishTitle = 'spanish title';
const arabicTitle = 'arabic title';
const description = 'description';
let page: Page;
describe('Localization', () => {
beforeAll(async ({ browser }) => {
const { serverURL } = await initPayloadTest({
__dirname,
init: {
local: false,
},
});
url = new AdminUrlUtil(serverURL, localizedPostsSlug);
const context = await browser.newContext();
page = await context.newPage();
});
describe('localized text', () => {
test('create english post, switch to spanish', async () => {
await page.goto(url.create);
await fillValues({ title, description });
await saveDocAndAssert(page);
// Change back to English
await changeLocale('es');
// Localized field should not be populated
await expect(page.locator('#field-title')).toBeEmpty();
await expect(page.locator('#field-description')).toHaveValue(description);
await fillValues({ title: spanishTitle, description });
await saveDocAndAssert(page);
await changeLocale(defaultLocale);
// Expect english title
await expect(page.locator('#field-title')).toHaveValue(title);
await expect(page.locator('#field-description')).toHaveValue(description);
});
test('create spanish post, add english', async () => {
await page.goto(url.create);
const newLocale = 'es';
// Change to Spanish
await changeLocale(newLocale);
await fillValues({ title: spanishTitle, description });
await saveDocAndAssert(page);
// Change back to English
await changeLocale(defaultLocale);
// Localized field should not be populated
await expect(page.locator('#field-title')).toBeEmpty();
await expect(page.locator('#field-description')).toHaveValue(description);
// Add English
await fillValues({ title, description });
await saveDocAndAssert(page);
await saveDocAndAssert(page);
await expect(page.locator('#field-title')).toHaveValue(title);
await expect(page.locator('#field-description')).toHaveValue(description);
});
test('create arabic post, add english', async () => {
await page.goto(url.create);
const newLocale = 'ar';
// Change to Arabic
await changeLocale(newLocale);
await fillValues({ title: arabicTitle, description });
await saveDocAndAssert(page);
// Change back to English
await changeLocale(defaultLocale);
// Localized field should not be populated
await expect(page.locator('#field-title')).toBeEmpty();
await expect(page.locator('#field-description')).toHaveValue(description);
// Add English
await fillValues({ title, description });
await saveDocAndAssert(page);
await saveDocAndAssert(page);
await expect(page.locator('#field-title')).toHaveValue(title);
await expect(page.locator('#field-description')).toHaveValue(description);
});
});
describe('localized duplicate', () => {
let id;
beforeAll(async () => {
const localizedPost = await payload.create({
collection: localizedPostsSlug,
data: {
title: englishTitle,
},
});
id = localizedPost.id;
await payload.update({
collection: localizedPostsSlug,
id,
locale: spanishLocale,
data: {
title: spanishTitle,
},
});
});
test('should duplicate data for all locales', async () => {
await page.goto(url.edit(id));
await page.locator('.btn.duplicate').first().click();
await expect(page.locator('.Toastify')).toContainText('successfully');
await expect(page.locator('#field-title')).toHaveValue(englishTitle);
await changeLocale(spanishLocale);
await expect(page.locator('#field-title')).toHaveValue(spanishTitle);
});
});
});
async function fillValues(data: Partial<LocalizedPost>) {
const { title: titleVal, description: descVal } = data;
if (titleVal) await page.locator('#field-title').fill(titleVal);
if (descVal) await page.locator('#field-description').fill(descVal);
}
async function changeLocale(newLocale: string) {
await page.locator('.localizer >> button').first().click();
await page.locator(`.localizer >> a:has-text("${newLocale}")`).click();
expect(page.url()).toContain(`locale=${newLocale}`);
}