_FB integration CLI tests #21
fb-integration-suite.yml
on: workflow_dispatch
Integration tests
/
...
/
help tests
2m 41s
Integration tests
/
...
/
pmm-server container
2m 47s
Integration tests
/
...
/
pmm-client docker
4m 20s
Integration tests
/
...
/
Generic
4m 0s
Integration tests
/
...
/
Remove
4m 22s
Integration tests
/
...
/
Percona Server 5.7
3m 48s
Integration tests
/
...
/
Percona Server 8.0
3m 50s
Integration tests
/
...
/
MySQL 8.0
3m 41s
Integration tests
/
...
/
PD PostgreSQL 13
3m 39s
Integration tests
/
...
/
PD PostgreSQL 14
3m 18s
Integration tests
/
...
/
PD PostgreSQL 15
5m 55s
Integration tests
/
...
/
PSMDB 4.4
8m 1s
Integration tests
/
...
/
PSMDB 5.x
7m 35s
Integration tests
/
...
/
PSMDB 6.x
7m 23s
Integration tests
/
...
/
PSMDB 7.x
7m 37s
Integration tests
/
...
/
HA Proxy
5m 31s
Integration tests
/
...
/
PXC 5.7
3m 52s
Annotations
24 errors, 6 warnings, and 16 notices
Integration tests / CLI / Integration / pmm-server container
=================
no tests found.
=================
|
Integration tests / CLI / Integration / pmm-server container
Process completed with exit code 1.
|
Integration tests / CLI / Integration / PD PostgreSQL 13
Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run
|
tests/postgreSql-pdpgsql.spec.ts:28:7 › Percona Distribution for PostgreSQL CLI tests › PMM-T442 run pmm-admin inventory list agents for check agent postgresql_pgstatmonitor_agent:
pmm-ui-tests/cli/support/types/output.ts#L34
1) tests/postgreSql-pdpgsql.spec.ts:28:7 › Percona Distribution for PostgreSQL CLI tests › PMM-T442 run pmm-admin inventory list agents for check agent postgresql_pgstatmonitor_agent
Error: Stdout does not contain postgresql_pgstatmonitor_agent Running!
Expected substring: "postgresql_pgstatmonitor_agent Running"
Received string: "Agents list.·
Agent type Status Agent ID PMM-Agent ID Service ID Port···········································
pmm_agent Connected /agent_id/d6733990-f0d0-4a65-9d9c-d84e8e3fbd26 0
pmm_agent Connected pmm-server 0
node_exporter Running /agent_id/4869b2d3-fa2f-471f-acf8-dbd9180f421b /agent_id/d6733990-f0d0-4a65-9d9c-d84e8e3fbd26 42000
node_exporter Running /agent_id/5a7d4adc-3859-47e9-8147-b20980c68ef2 pmm-server 42000
postgres_exporter Running /agent_id/67dcb8e3-440e-4c01-8974-77d04123ecc8 /agent_id/d6733990-f0d0-4a65-9d9c-d84e8e3fbd26 /service_id/22a11301-98eb-4fa0-9313-805548af2f13 42002
postgres_exporter Running /agent_id/96e15467-6648-4c04-8e8f-6feec0b87616 pmm-server /service_id/9f79ed28-8fe6-45c1-92d0-bc7060cdd191 42001
postgres_exporter Running /agent_id/defd0284-dbf4-4923-b873-42cf85f4d044 /agent_id/d6733990-f0d0-4a65-9d9c-d84e8e3fbd26 /service_id/06b89853-6c89-4278-8f09-e19b256e9df6 42005
postgresql_pgstatements_agent Running /agent_id/49a50919-ee34-4b7d-835f-443298170282 /agent_id/d6733990-f0d0-4a65-9d9c-d84e8e3fbd26 /service_id/22a11301-98eb-4fa0-9313-805548af2f13 0
postgresql_pgstatements_agent Running /agent_id/e0ce8ec2-eed3-4a98-8295-ae37dc149dec /agent_id/d6733990-f0d0-4a65-9d9c-d84e8e3fbd26 /service_id/06b89853-6c89-4278-8f09-e19b256e9df6 0
postgresql_pgstatements_agent Running /agent_id/f4c22c2b-8b52-41c1-82bd-6186a8b0b8fa pmm-server /service_id/9f79ed28-8fe6-45c1-92d0-bc7060cdd191 0·
"
at support/types/output.ts:34
32 | async outContains(expectedValue: string) {
33 | await test.step(`Verify command output contains ${expectedValue}`, async () => {
> 34 | expect(this.stdout, `Stdout does not contain ${expectedValue}!`).toContain(expectedValue);
| ^
35 | })
36 | }
37 |
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:34:72
at Output.outContains (/home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:33:16)
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/tests/postgreSql-pdpgsql.spec.ts:34:18
|
Integration tests / CLI / Integration / PD PostgreSQL 13
Process completed with exit code 1.
|
Integration tests / CLI / Integration / MySQL 8.0
Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run
|
tests/mysql.spec.ts:204:7 › PMM Client CLI tests for MySQL › run pmm-admin add mysql with disable-tablestats-limit=50:
pmm-ui-tests/cli/support/types/output.ts#L22
1) tests/mysql.spec.ts:204:7 › PMM Client CLI tests for MySQL › run pmm-admin add mysql with disable-tablestats-limit=50
Error: "sudo docker exec ms_pmm_8.0 pmm-admin add mysql --query-source=perfschema --disable-tablestats-limit=50 --username=msandbox --*** mysql_limit_remove " expected to exit with 0! Error: "Connection check failed: dial tcp 127.0.0.1:3306: connect: connection refused.
"
Expected: 0
Received: 1
at support/types/output.ts:22
20 | async assertSuccess() {
21 | await test.step(`Verify "${this.command}" command executed successfully`, async () => {
> 22 | expect(this.code, `"${this.command}" expected to exit with 0! Error: "${this.stderr || this.stdout}"`).toEqual(0);
| ^
23 | });
24 | }
25 |
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:22:110
at Output.assertSuccess (/home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:21:16)
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/tests/mysql.spec.ts:208:18
|
tests/mysql.spec.ts:215:7 › PMM Client CLI tests for MySQL › run pmm-admin remove mysql added using disable-tablestats-limit=50:
pmm-ui-tests/cli/support/types/output.ts#L22
2) tests/mysql.spec.ts:215:7 › PMM Client CLI tests for MySQL › run pmm-admin remove mysql added using disable-tablestats-limit=50
Error: "sudo docker exec ms_pmm_8.0 pmm-admin remove mysql mysql_limit_remove" expected to exit with 0! Error: "Service with name "mysql_limit_remove" not found.
"
Expected: 0
Received: 1
at support/types/output.ts:22
20 | async assertSuccess() {
21 | await test.step(`Verify "${this.command}" command executed successfully`, async () => {
> 22 | expect(this.code, `"${this.command}" expected to exit with 0! Error: "${this.stderr || this.stdout}"`).toEqual(0);
| ^
23 | });
24 | }
25 |
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:22:110
at Output.assertSuccess (/home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:21:16)
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/tests/mysql.spec.ts:217:18
|
Integration tests / CLI / Integration / MySQL 8.0
Process completed with exit code 1.
|
Integration tests / CLI / Integration / Generic
Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run
|
tests/pmm-server-docker-generic.spec.ts:13:7 › PMM Server CLI tests for Docker Environment Variables › PMM-T224 run docker container with a invalid value for a environment variable DATA_RETENTION=48:
pmm-ui-tests/cli/support/types/output.ts#L22
1) tests/pmm-server-docker-generic.spec.ts:13:7 › PMM Server CLI tests for Docker Environment Variables › PMM-T224 run docker container with a invalid value for a environment variable DATA_RETENTION=48
Error: "docker logs PMM-T224 2>&1 | grep 'Configuration error: environment variable "DATA_RETENTION=48" has invalid duration 48'" expected to exit with 0! Error: ""
Expected: 0
Received: 1
at support/types/output.ts:22
20 | async assertSuccess() {
21 | await test.step(`Verify "${this.command}" command executed successfully`, async () => {
> 22 | expect(this.code, `"${this.command}" expected to exit with 0! Error: "${this.stderr || this.stdout}"`).toEqual(0);
| ^
23 | });
24 | }
25 |
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:22:110
at Output.assertSuccess (/home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:21:16)
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/tests/pmm-server-docker-generic.spec.ts:23:10
|
tests/pmm-server-docker-generic.spec.ts:30:7 › PMM Server CLI tests for Docker Environment Variables › PMM-T225 run docker container with a unexpected environment variable DATA_TENTION=48:
pmm-ui-tests/cli/support/types/output.ts#L22
2) tests/pmm-server-docker-generic.spec.ts:30:7 › PMM Server CLI tests for Docker Environment Variables › PMM-T225 run docker container with a unexpected environment variable DATA_TENTION=48
Error: "docker logs PMM-T225 2>&1 | grep 'Configuration warning: unknown environment variable "DATA_TENTION=48"'" expected to exit with 0! Error: ""
Expected: 0
Received: 1
at support/types/output.ts:22
20 | async assertSuccess() {
21 | await test.step(`Verify "${this.command}" command executed successfully`, async () => {
> 22 | expect(this.code, `"${this.command}" expected to exit with 0! Error: "${this.stderr || this.stdout}"`).toEqual(0);
| ^
23 | });
24 | }
25 |
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:22:110
at Output.assertSuccess (/home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:21:16)
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/tests/pmm-server-docker-generic.spec.ts:36:10
|
tests/pmm-server-docker-generic.spec.ts:44:7 › PMM Server CLI tests for Docker Environment Variables › PMM-T226 run docker container with all valid environment variables not causing any warning or error message:
pmm-ui-tests/cli/support/types/output.ts#L22
3) tests/pmm-server-docker-generic.spec.ts:44:7 › PMM Server CLI tests for Docker Environment Variables › PMM-T226 run docker container with all valid environment variables not causing any warning or error message
Error: "docker ps | grep PMM-T226" expected to exit with 0! Error: ""
Expected: 0
Received: 1
at support/types/output.ts:22
20 | async assertSuccess() {
21 | await test.step(`Verify "${this.command}" command executed successfully`, async () => {
> 22 | expect(this.code, `"${this.command}" expected to exit with 0! Error: "${this.stderr || this.stdout}"`).toEqual(0);
| ^
23 | });
24 | }
25 |
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:22:110
at Output.assertSuccess (/home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:21:16)
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/tests/pmm-server-docker-generic.spec.ts:50:57
|
tests/pmm-server-docker-generic.spec.ts:79:7 › PMM Server CLI tests for Docker Environment Variables › Basic Sanity using Clickhouse shipped with PMM-Server:
pmm-ui-tests/cli/support/types/output.ts#L22
4) tests/pmm-server-docker-generic.spec.ts:79:7 › PMM Server CLI tests for Docker Environment Variables › Basic Sanity using Clickhouse shipped with PMM-Server, Check Connection, Run a Query
Error: "clickhouse-client --database pmm --query "select any(example),sum(num_queries) cnt, max(m_query_time_max) slowest from metrics where period_start>subtractHours(now(),6) group by queryid order by slowest desc limit 10"" expected to exit with 0! Error: "Code: 210. DB::NetException: Connection reset by peer, while reading from socket ([::1]:9000). (NETWORK_ERROR)
"
Expected: 0
Received: 210
at support/types/output.ts:22
20 | async assertSuccess() {
21 | await test.step(`Verify "${this.command}" command executed successfully`, async () => {
> 22 | expect(this.code, `"${this.command}" expected to exit with 0! Error: "${this.stderr || this.stdout}"`).toEqual(0);
| ^
23 | });
24 | }
25 |
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:22:110
at Output.assertSuccess (/home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:21:16)
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/tests/pmm-server-docker-generic.spec.ts:86:10
|
Integration tests / CLI / Integration / Generic
Process completed with exit code 1.
|
tests/postgreSql-pdpgsql.spec.ts:28:7 › Percona Distribution for PostgreSQL CLI tests › PMM-T442 run pmm-admin inventory list agents for check agent postgresql_pgstatmonitor_agent:
pmm-ui-tests/cli/support/types/output.ts#L34
1) tests/postgreSql-pdpgsql.spec.ts:28:7 › Percona Distribution for PostgreSQL CLI tests › PMM-T442 run pmm-admin inventory list agents for check agent postgresql_pgstatmonitor_agent
Error: Stdout does not contain postgresql_pgstatmonitor_agent Running!
Expected substring: "postgresql_pgstatmonitor_agent Running"
Received string: "Agents list.·
Agent type Status Agent ID PMM-Agent ID Service ID Port···········································
pmm_agent Connected /agent_id/0585d5bc-d320-49fa-8e7b-76b50913fa06 0
pmm_agent Connected pmm-server 0
node_exporter Running /agent_id/02181055-bf76-471b-870d-e1ace4f57c1f /agent_id/0585d5bc-d320-49fa-8e7b-76b50913fa06 42000
node_exporter Running /agent_id/7aa1c154-2c69-4736-9975-de2b4b3c78a4 pmm-server 42001
postgres_exporter Running /agent_id/06c8f6b5-3fca-4616-bd80-5d61570e3e17 pmm-server /service_id/a6040b67-bfd0-4ab8-bbe6-d7a0644fe6ad 42000
postgres_exporter Running /agent_id/720ef891-38d9-4942-ae79-6b659817b164 /agent_id/0585d5bc-d320-49fa-8e7b-76b50913fa06 /service_id/5fc1d8d8-5570-4704-87e0-bb954e9f0cf2 42002
postgres_exporter Running /agent_id/8a889d1b-bced-4f43-9fa9-4dd5108e7417 /agent_id/0585d5bc-d320-49fa-8e7b-76b50913fa06 /service_id/abc21fd3-6a37-4ef5-bb97-59eb8b9d288e 42004
postgresql_pgstatements_agent Running /agent_id/1ac25e88-b7a4-472f-ba12-8be31f0b6633 /agent_id/0585d5bc-d320-49fa-8e7b-76b50913fa06 /service_id/abc21fd3-6a37-4ef5-bb97-59eb8b9d288e 0
postgresql_pgstatements_agent Running /agent_id/21f10d13-3549-4bc7-a41c-d1c627e9b9e8 pmm-server /service_id/a6040b67-bfd0-4ab8-bbe6-d7a0644fe6ad 0
postgresql_pgstatements_agent Running /agent_id/7a1dc12b-7728-4f34-89d4-b2ad524f4b7d /agent_id/0585d5bc-d320-49fa-8e7b-76b50913fa06 /service_id/5fc1d8d8-5570-4704-87e0-bb954e9f0cf2 0·
"
at support/types/output.ts:34
32 | async outContains(expectedValue: string) {
33 | await test.step(`Verify command output contains ${expectedValue}`, async () => {
> 34 | expect(this.stdout, `Stdout does not contain ${expectedValue}!`).toContain(expectedValue);
| ^
35 | })
36 | }
37 |
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:34:72
at Output.outContains (/home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:33:16)
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/tests/postgreSql-pdpgsql.spec.ts:34:18
|
Integration tests / CLI / Integration / PD PostgreSQL 14
Process completed with exit code 1.
|
Integration tests / CLI / Integration / PD PostgreSQL 14
Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run
|
Integration tests / CLI / Integration / Remove
Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run
|
tests/remove.spec.ts:29:7 › PMM Server CLI tests for Docker Environment Variables › PMM-T1286:
pmm-ui-tests/cli/support/types/output.ts#L34
1) tests/remove.spec.ts:29:7 › PMM Server CLI tests for Docker Environment Variables › PMM-T1286, PMM-T1287, PMM-T1288, PMM-T1308 - Verify service removal without specifying service name/service id
Error: Stdout does not contain We could not find a service associated with the local node. Please provide "Service ID" or "Service name"!
Expected substring: "We could not find a service associated with the local node. Please provide \"Service ID\" or \"Service name\""
Received string: ""
at support/types/output.ts:34
32 | async outContains(expectedValue: string) {
33 | await test.step(`Verify command output contains ${expectedValue}`, async () => {
> 34 | expect(this.stdout, `Stdout does not contain ${expectedValue}!`).toContain(expectedValue);
| ^
35 | })
36 | }
37 |
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:34:72
at Output.outContains (/home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:33:16)
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/tests/remove.spec.ts:33:20
|
Integration tests / CLI / Integration / Remove
Process completed with exit code 1.
|
tests/postgreSql-pdpgsql.spec.ts:28:7 › Percona Distribution for PostgreSQL CLI tests › PMM-T442 run pmm-admin inventory list agents for check agent postgresql_pgstatmonitor_agent:
pmm-ui-tests/cli/support/types/output.ts#L34
1) tests/postgreSql-pdpgsql.spec.ts:28:7 › Percona Distribution for PostgreSQL CLI tests › PMM-T442 run pmm-admin inventory list agents for check agent postgresql_pgstatmonitor_agent
Error: Stdout does not contain postgresql_pgstatmonitor_agent Running!
Expected substring: "postgresql_pgstatmonitor_agent Running"
Received string: "Agents list.·
Agent type Status Agent ID PMM-Agent ID Service ID Port···········································
pmm_agent Connected /agent_id/ce40cc00-0d1b-4a8b-a9ae-cb6564d33bc9 0
pmm_agent Connected pmm-server 0
node_exporter Running /agent_id/048d2587-29fb-456c-ac9c-4db4d23e1564 pmm-server 42000
node_exporter Running /agent_id/e4d0a67e-c491-4b26-9a5d-c13704ef5749 /agent_id/ce40cc00-0d1b-4a8b-a9ae-cb6564d33bc9 42001
postgres_exporter Running /agent_id/18e5c0bb-f834-4291-9b45-b6116599e2d2 /agent_id/ce40cc00-0d1b-4a8b-a9ae-cb6564d33bc9 /service_id/dec8f594-a169-454e-af7e-799d661812ef 42002
postgres_exporter Running /agent_id/1e0aeac6-4bfa-4836-bfdc-1e89fcf418e9 pmm-server /service_id/57a35dbe-b756-4e30-adc9-b213aa30b327 42001
postgres_exporter Running /agent_id/cbe00a99-7722-4b66-92db-ab086bdf0915 /agent_id/ce40cc00-0d1b-4a8b-a9ae-cb6564d33bc9 /service_id/559baf04-ce63-407e-8d4c-5223f2f6075f 42004
postgresql_pgstatements_agent Running /agent_id/2bb35f7b-ad76-408e-9801-5de3330b3db8 /agent_id/ce40cc00-0d1b-4a8b-a9ae-cb6564d33bc9 /service_id/dec8f594-a169-454e-af7e-799d661812ef 0
postgresql_pgstatements_agent Running /agent_id/cce9bbab-493b-49de-824f-734f77fb8eef /agent_id/ce40cc00-0d1b-4a8b-a9ae-cb6564d33bc9 /service_id/559baf04-ce63-407e-8d4c-5223f2f6075f 0
postgresql_pgstatements_agent Running /agent_id/f809fb3d-f6ae-4990-ac9a-6366f7ae8880 pmm-server /service_id/57a35dbe-b756-4e30-adc9-b213aa30b327 0·
"
at support/types/output.ts:34
32 | async outContains(expectedValue: string) {
33 | await test.step(`Verify command output contains ${expectedValue}`, async () => {
> 34 | expect(this.stdout, `Stdout does not contain ${expectedValue}!`).toContain(expectedValue);
| ^
35 | })
36 | }
37 |
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:34:72
at Output.outContains (/home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/support/types/output.ts:33:16)
at /home/runner/work/pmm-qa/pmm-qa/pmm-ui-tests/cli/tests/postgreSql-pdpgsql.spec.ts:34:18
|
Integration tests / CLI / Integration / PD PostgreSQL 15
Process completed with exit code 1.
|
Integration tests / CLI / Integration / PD PostgreSQL 15
Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run
|
Slow Test:
pmm-ui-tests/cli/tests/postgreSql-pdpgsql.spec.ts#L1
pmm-ui-tests/cli/tests/postgreSql-pdpgsql.spec.ts took 33.7s
|
Slow Test:
pmm-ui-tests/cli/tests/perconaMySqlServer.spec.ts#L1
pmm-ui-tests/cli/tests/perconaMySqlServer.spec.ts took 24.2s
|
Slow Test:
pmm-ui-tests/cli/tests/perconaMySqlServer.spec.ts#L1
pmm-ui-tests/cli/tests/perconaMySqlServer.spec.ts took 24.7s
|
Slow Test:
pmm-ui-tests/cli/tests/pmm-server-docker-generic.spec.ts#L1
pmm-ui-tests/cli/tests/pmm-server-docker-generic.spec.ts took 1.5m
|
Slow Test:
pmm-ui-tests/cli/tests/postgreSql-pdpgsql.spec.ts#L1
pmm-ui-tests/cli/tests/postgreSql-pdpgsql.spec.ts took 33.8s
|
Slow Test:
pmm-ui-tests/cli/tests/postgreSql-pdpgsql.spec.ts#L1
pmm-ui-tests/cli/tests/postgreSql-pdpgsql.spec.ts took 33.6s
|
🎭 Playwright Run Summary
4 passed (665ms)
|
🎭 Playwright Run Summary
1 failed
tests/postgreSql-pdpgsql.spec.ts:28:7 › Percona Distribution for PostgreSQL CLI tests › PMM-T442 run pmm-admin inventory list agents for check agent postgresql_pgstatmonitor_agent
2 skipped
20 passed (34.7s)
|
🎭 Playwright Run Summary
2 failed
tests/mysql.spec.ts:204:7 › PMM Client CLI tests for MySQL › run pmm-admin add mysql with disable-tablestats-limit=50
tests/mysql.spec.ts:215:7 › PMM Client CLI tests for MySQL › run pmm-admin remove mysql added using disable-tablestats-limit=50
1 skipped
15 passed (3.7s)
|
🎭 Playwright Run Summary
35 passed (24.8s)
|
🎭 Playwright Run Summary
35 passed (25.2s)
|
🎭 Playwright Run Summary
4 failed
tests/pmm-server-docker-generic.spec.ts:13:7 › PMM Server CLI tests for Docker Environment Variables › PMM-T224 run docker container with a invalid value for a environment variable DATA_RETENTION=48
tests/pmm-server-docker-generic.spec.ts:30:7 › PMM Server CLI tests for Docker Environment Variables › PMM-T225 run docker container with a unexpected environment variable DATA_TENTION=48
tests/pmm-server-docker-generic.spec.ts:44:7 › PMM Server CLI tests for Docker Environment Variables › PMM-T226 run docker container with all valid environment variables not causing any warning or error message
tests/pmm-server-docker-generic.spec.ts:79:7 › PMM Server CLI tests for Docker Environment Variables › Basic Sanity using Clickhouse shipped with PMM-Server, Check Connection, Run a Query
1 skipped
7 passed (1.6m)
|
🎭 Playwright Run Summary
1 failed
tests/postgreSql-pdpgsql.spec.ts:28:7 › Percona Distribution for PostgreSQL CLI tests › PMM-T442 run pmm-admin inventory list agents for check agent postgresql_pgstatmonitor_agent
2 skipped
20 passed (34.7s)
|
🎭 Playwright Run Summary
7 passed (1.6s)
|
🎭 Playwright Run Summary
1 failed
tests/remove.spec.ts:29:7 › PMM Server CLI tests for Docker Environment Variables › PMM-T1286, PMM-T1287, PMM-T1288, PMM-T1308 - Verify service removal without specifying service name/service id
|
🎭 Playwright Run Summary
7 passed (987ms)
|
🎭 Playwright Run Summary
1 failed
tests/postgreSql-pdpgsql.spec.ts:28:7 › Percona Distribution for PostgreSQL CLI tests › PMM-T442 run pmm-admin inventory list agents for check agent postgresql_pgstatmonitor_agent
2 skipped
20 passed (34.6s)
|
🎭 Playwright Run Summary
6 passed (1.4s)
|
🎭 Playwright Run Summary
2 skipped
15 passed (1.6s)
|
🎭 Playwright Run Summary
2 skipped
15 passed (1.6s)
|
🎭 Playwright Run Summary
2 skipped
15 passed (1.7s)
|
🎭 Playwright Run Summary
2 skipped
15 passed (1.7s)
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
report-
Expired
|
173 KB |
|