-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathinstance-metrics.e2e.ts
89 lines (71 loc) · 3.57 KB
/
instance-metrics.e2e.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* Copyright Oxide Computer Company
*/
import { expect, test } from '@playwright/test'
import { OXQL_GROUP_BY_ERROR } from '~/api'
import { getPageAsUser } from './utils'
test('Click through instance metrics', async ({ page }) => {
await page.goto('/projects/mock-project/instances/db1/metrics/cpu')
await expect(
page.getByRole('heading', { name: 'CPU Utilization: Running' })
).toBeVisible()
await expect(page.getByText('Something went wrong')).toBeHidden()
await page.getByRole('tab', { name: 'Disk' }).click()
await expect(page).toHaveURL('/projects/mock-project/instances/db1/metrics/disk')
await expect(page.getByRole('heading', { name: 'Disk Reads' })).toBeVisible()
await expect(page.getByText('Something went wrong')).toBeHidden()
// exact distinguishes from top level "networking" tab
await page.getByRole('tab', { name: 'Network', exact: true }).click()
await expect(page).toHaveURL('/projects/mock-project/instances/db1/metrics/network')
await expect(page.getByRole('heading', { name: 'Bytes Sent' })).toBeVisible()
await expect(page.getByText('Something went wrong')).toBeHidden()
})
// TODO: more detailed tests using the dropdowns to change CPU state and disk
test('Instance metrics work for non-fleet viewer', async ({ browser }) => {
const page = await getPageAsUser(browser, 'Hans Jonas')
await page.goto('/projects/mock-project/instances/db1/metrics/cpu')
await expect(
page.getByRole('heading', { name: 'CPU Utilization: Running' })
).toBeVisible()
// we don't want an error, we want the data!
await expect(page.getByText('Something went wrong')).toBeHidden()
})
test('empty and loading states', async ({ page }) => {
const messages: string[] = []
page.on('console', (e) => messages.push(e.text()))
// we have special handling in the API to return special data for this project
await page.goto('/projects/other-project/instances/failed-restarting-soon/metrics/cpu')
const loading = page.getByLabel('Chart loading') // aria-label on loading indicator
const noData = page.getByText('No data', { exact: true })
// default running state returns two data points, which get turned into one by
// the data munging
await expect(loading).toBeVisible()
await expect(loading).toBeHidden()
await expect(noData).toBeHidden()
const statePicker = page.getByRole('button', { name: 'Choose state' })
// emulation state returns one data point
await statePicker.click()
await page.getByRole('option', { name: 'State: Emulation' }).click()
await expect(loading).toBeVisible()
await expect(loading).toBeHidden()
await expect(noData).toBeVisible()
// idle state returns group_by must be aligned error, treated as empty
const hasGroupByError = () => messages.some((m) => m.includes(OXQL_GROUP_BY_ERROR))
expect(hasGroupByError()).toBe(false) // error not in console
await statePicker.click()
await page.getByRole('option', { name: 'State: Idle' }).click()
await expect(loading).toBeVisible()
await expect(loading).toBeHidden()
await expect(page.getByText('Something went wrong')).toBeHidden()
await expect(noData).toBeVisible()
expect(hasGroupByError()).toBe(true) // error present in console
// make sure empty state goes away again for the first one
await statePicker.click()
await page.getByRole('option', { name: 'State: Running' }).click()
await expect(noData).toBeHidden()
await expect(loading).toBeHidden()
})