test: add Playwright E2E tests for security, teams, entities, and operations#2919
Merged
crivetimihai merged 1 commit intomainfrom Feb 13, 2026
Merged
test: add Playwright E2E tests for security, teams, entities, and operations#2919crivetimihai merged 1 commit intomainfrom
crivetimihai merged 1 commit intomainfrom
Conversation
…rations Add 88 REST API E2E tests organized into 4 groups: - security/ (30 tests): RBAC admin, token lifecycle, user management, SSO - teams/ (15 tests): invitations, join requests, member roles - entities/ (32 tests): CRUD + activate/deactivate for tools, resources, prompts, servers with RBAC permission checks - operations/ (13 tests): export/import, observability, LLM config, health Known server bugs tracked as xfail(strict=True): - #2916: selective export AttributeError on Tool.rate_limit - #2917: RBAC role DELETE broken SQLAlchemy query Closes #2387 Signed-off-by: Mihai Criveti <crivetimihai@gmail.com>
suciu-daniel
pushed a commit
that referenced
this pull request
Feb 16, 2026
…rations (#2919) Add 88 REST API E2E tests organized into 4 groups: - security/ (30 tests): RBAC admin, token lifecycle, user management, SSO - teams/ (15 tests): invitations, join requests, member roles - entities/ (32 tests): CRUD + activate/deactivate for tools, resources, prompts, servers with RBAC permission checks - operations/ (13 tests): export/import, observability, LLM config, health Known server bugs tracked as xfail(strict=True): - #2916: selective export AttributeError on Tool.rate_limit - #2917: RBAC role DELETE broken SQLAlchemy query Closes #2387 Signed-off-by: Mihai Criveti <crivetimihai@gmail.com>
vishu-bh
pushed a commit
that referenced
this pull request
Feb 18, 2026
…rations (#2919) Add 88 REST API E2E tests organized into 4 groups: - security/ (30 tests): RBAC admin, token lifecycle, user management, SSO - teams/ (15 tests): invitations, join requests, member roles - entities/ (32 tests): CRUD + activate/deactivate for tools, resources, prompts, servers with RBAC permission checks - operations/ (13 tests): export/import, observability, LLM config, health Known server bugs tracked as xfail(strict=True): - #2916: selective export AttributeError on Tool.rate_limit - #2917: RBAC role DELETE broken SQLAlchemy query Closes #2387 Signed-off-by: Mihai Criveti <crivetimihai@gmail.com> Signed-off-by: Vishu Bhatnagar <vishu.bhatnagar@ibm.com>
kcostell06
pushed a commit
to kcostell06/mcp-context-forge
that referenced
this pull request
Feb 24, 2026
…rations (IBM#2919) Add 88 REST API E2E tests organized into 4 groups: - security/ (30 tests): RBAC admin, token lifecycle, user management, SSO - teams/ (15 tests): invitations, join requests, member roles - entities/ (32 tests): CRUD + activate/deactivate for tools, resources, prompts, servers with RBAC permission checks - operations/ (13 tests): export/import, observability, LLM config, health Known server bugs tracked as xfail(strict=True): - IBM#2916: selective export AttributeError on Tool.rate_limit - IBM#2917: RBAC role DELETE broken SQLAlchemy query Closes IBM#2387 Signed-off-by: Mihai Criveti <crivetimihai@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
xfail(strict=True)referencing [BUG][API]: Selective export crashes with AttributeError on Tool.rate_limit #2916 and [BUG][API]: RBAC role DELETE returns 500 due to incorrect SQLAlchemy query #2917Test Groups
security/teams/entities/operations/Test plan
pytest tests/playwright/security/ -v— 30 passed, 5 skipped, 2 xfailedpytest tests/playwright/teams/ -v— 15 passedpytest tests/playwright/entities/test_entity_lifecycle.py -v— 32 passedpytest tests/playwright/operations/ -v— 13 passed, 8 skipped, 1 xfailedmake test-ui-headlesspicks up all new testsCloses #2387