Files
payload/test/localization/e2e.spec.ts
Alessio Gravili 15442a9cc7 fix: use correct locale when querying relationships for list view (#2438)
* chore: use correct locale when querying relationship for list view

* chore: make sure the relationships are re-queried when the locale changes

* chore: cleans up localization test ts-types

---------

Co-authored-by: Jarrod Flesch <jarrodmflesch@gmail.com>
2023-04-17 12:43:33 -04:00

145 lines
4.2 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 { login, 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 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();
await login({ page, serverURL });
});
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);
});
});
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}`);
}