mirror of
https://github.com/mattermost/mattermost.git
synced 2026-09-01 15:00:08 +08:00
fb84bccb2f
* E2E/Playwright: Add testcontainers to playwright-lib (#37570) * add testcontainers to playwright-lib * include retry mechanism for transient failures * - Introduced a new command `testcontainers:up` in package.json to run Playwright tests with Testcontainers. - Created a standalone Playwright configuration file `playwright.testcontainers-up.config.ts` for managing Testcontainers. - Added a no-op test `testcontainers_up.spec.ts` to ensure the Testcontainers stack is up during the test run. - Implemented a global setup script `testcontainers_up_global_setup.ts` to start and stop the Testcontainers stack. - Updated dependencies in package.json, including adding `chalk` for logging. * fix package-lock * fix tsc and restore waiting for all migrations to complete --------- Co-authored-by: Mattermost Build <build@mattermost.com> * fix(e2e): remove obsolete CRT intro modal dismiss from uiClickSidebarItem The CRT tutorial modal was removed in MM-66470; dismissing #genericModalLabel races and flakes MM-T4261_3. Co-authored-by: sabril <saturninoabril@users.noreply.github.com> * fix(e2e): sync Playwright navigations to live testcontainers baseURL After restartMattermostContainer remaps the host port, relative page.goto must follow testConfig.baseURL rather than the worker-start config value. Co-authored-by: sabril <saturninoabril@users.noreply.github.com> * fix(e2e): restore eslint-disable for axe empty fixture pattern Co-authored-by: sabril <saturninoabril@users.noreply.github.com> * fix(e2e): ignore webhook assets in eslint; prettier README Co-authored-by: sabril <saturninoabril@users.noreply.github.com> * ci(e2e): fully adopt test-system-io and lighten Playwright services Port #37413: drop the dual v1/v2 dispatch path, promote the test-system-io templates to the canonical names, and remove legacy calculate-results / AWS artifact upload plumbing. For Playwright testcontainers on this release, leave optional sidecars (openldap, keycloak, elasticsearch, opensearch, minio, azurite, webhook) off by default and remove the related service-specific specs that are not part of the older suite. Co-authored-by: sabril <saturninoabril@users.noreply.github.com> * style(e2e): prettier stack.ts after optional webhook change Co-authored-by: sabril <saturninoabril@users.noreply.github.com> * test(e2e): align testcontainers feature flags with release docker-compose Mirror MM_FEATUREFLAGS_* from e2e-tests/.ci/server.generate.sh for each release, dropping flags that do not exist in that release's FeatureFlags struct (or were never enabled in the compose stack). Co-authored-by: sabril <saturninoabril@users.noreply.github.com> * e2e(playwright): omit unset Testcontainers env keys; align release docs When optional webhook/sidecars are off, .env.testcontainers no longer writes PW_*=undefined. Docs match empty DEFAULT_TESTCONTAINERS_SERVICES. Co-authored-by: sabril <saturninoabril@users.noreply.github.com> * e2e(playwright): prettier-format lib/README.md table Fixes CI npm run check (prettier) failures from the services table edit. Co-authored-by: sabril <saturninoabril@users.noreply.github.com> --------- Co-authored-by: Mattermost Build <build@mattermost.com> Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: sabril <saturninoabril@users.noreply.github.com>
28 lines
1.2 KiB
TypeScript
28 lines
1.2 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {test} from '@playwright/test';
|
|
|
|
import {getAdminClient} from './init';
|
|
|
|
/**
|
|
* Disables Elasticsearch/OpenSearch indexing/searching so search falls back to the database —
|
|
* skipping the test otherwise, instead of failing on an unmet precondition. The counterpart to
|
|
* ensureElasticsearch()/ensureOpensearch() for specs that specifically need database-backed search
|
|
* active (e.g. after another spec in the same run switched it away).
|
|
*
|
|
* No restart involved, unlike most other ensure*() functions: which search engine (if any) is
|
|
* active is decided at runtime from these enable flags, not from the boot-time Backend setting, so
|
|
* disabling them here is enough to make the server fall through to Postgres-backed search.
|
|
*/
|
|
export async function ensurePostgresSearch(): Promise<void> {
|
|
try {
|
|
const {adminClient} = await getAdminClient();
|
|
await adminClient.patchConfig({
|
|
ElasticsearchSettings: {EnableIndexing: false, EnableSearching: false, EnableAutocomplete: false},
|
|
});
|
|
} catch (error) {
|
|
test.skip(true, `Skipping test - database search check failed: ${String(error)}`);
|
|
}
|
|
}
|