-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathimages.e2e.ts
181 lines (142 loc) · 6.52 KB
/
images.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
* 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 { test } from '@playwright/test'
import {
clickRowAction,
clipboardText,
expect,
expectNotVisible,
expectToast,
expectVisible,
getPageAsUser,
selectOption,
} from './utils'
test('can promote an image from silo', async ({ page }) => {
await page.goto('/images')
await page.click('role=button[name="Promote image"]')
// The image we want to promote isn't already there
await expectNotVisible(page, ['role=cell[name="image-1"]'])
// Listboxes are visible
await expect(page.getByPlaceholder('Select a project')).toBeVisible()
// have to use a locator here because the disabled button needs to be handled differently
await expect(page.locator(`text="Select an image"`)).toBeDisabled()
// Notice is visible
await expect(page.getByText('visible to all projects')).toBeVisible()
// Select a project
await selectOption(page, 'Project', 'other-project')
// Should have no items and dropdown should be disabled
await expect(page.locator(`text="No items"`)).toBeDisabled()
// Select the other project
// this blurring should not be necessary, but it's blocking the test otherwise
await page.getByRole('combobox', { name: 'Project' }).blur()
await page.getByRole('combobox', { name: 'Project' }).click()
await page.getByRole('option', { name: 'mock-project' }).click()
// Select an image in that project
const imageListbox = page.locator('role=button[name*="Image"]')
await expect(imageListbox).toBeEnabled()
await imageListbox.click()
await page.locator('role=option >> text="image-1"').click()
await page.locator('role=button[name="Promote"]').click()
// Check it was promoted successfully
await expect(page.getByText('Image image-1 promoted', { exact: true })).toBeVisible()
await expectVisible(page, ['role=cell[name="image-1"]'])
})
test('can promote an image from project', async ({ page }) => {
await page.goto('/projects/mock-project/images')
// Click on the row actions button for image-2 and open promote modal
await clickRowAction(page, 'image-2', 'Promote')
// Modal is visible
await expect(page.getByText('Are you sure you want to promote image-2?')).toBeVisible()
await expect(page.getByText('visible to all projects')).toBeVisible()
// Promote image and check it was successful
await page.locator('role=button[name="Promote"]').click()
await expect(page.getByText('Image image-2 promoted', { exact: true })).toBeVisible()
await expectNotVisible(page, ['role=cell[name="image-2"]'])
await page.click('role=link[name="View silo images"]')
await expectVisible(page, ['role=cell[name="image-2"]'])
})
test('can copy an image ID to clipboard', async ({ page, browserName }) => {
// eslint-disable-next-line playwright/no-skipped-test
test.skip(
browserName === 'webkit',
'navigator.clipboard.readText() works locally in Safari but not in CI.'
)
await page.goto('/images')
await clickRowAction(page, 'ubuntu-22-04', 'Copy ID')
expect(await clipboardText(page)).toEqual('ae46ddf5-a8d5-40fa-bcda-fcac606e3f9b')
await page.goto('/projects/mock-project/images')
await clickRowAction(page, 'image-4', 'Copy ID')
expect(await clipboardText(page)).toEqual('d150b87d-eb20-49d2-8b56-ff5564670e8c')
})
test('can demote an image from silo', async ({ page }) => {
await page.goto('/images')
await clickRowAction(page, 'arch-2022-06-01', 'Demote')
// Notice is visible
await expect(page.getByText('only visible to the project')).toBeVisible()
// Correct image is selected
await expect(page.getByText('Demoting: arch-2022-06-01')).toBeVisible()
// Cannot demote without first selecting a project
await page.getByRole('button', { name: 'Demote' }).click()
await expect(
page.getByRole('dialog', { name: 'Demote' }).getByText('Project is required')
).toBeVisible()
await selectOption(page, 'Project', 'mock-project')
await page.getByRole('button', { name: 'Demote' }).click()
// Demote image and check it was successful
await expect(
page.getByText('Image arch-2022-06-01 demoted', { exact: true })
).toBeVisible()
await expectNotVisible(page, ['role=cell[name="arch-2022-06-01"]'])
await page.click('role=link[name="View images in mock-project"]')
await expectVisible(page, ['role=cell[name="arch-2022-06-01"]'])
})
test('can delete an image from a project', async ({ page }) => {
await page.goto('/projects/mock-project/images')
const cell = page.getByRole('cell', { name: 'image-3' })
await expect(cell).toBeVisible()
await clickRowAction(page, 'image-3', 'Delete')
const spinner = page.getByRole('dialog').getByLabel('Spinner')
await expect(spinner).toBeHidden()
await page.getByRole('button', { name: 'Confirm' }).click()
await expect(spinner).toBeVisible()
// Check deletion was successful
await expectToast(page, 'Image image-3 deleted')
await expect(cell).toBeHidden()
await expect(spinner).toBeHidden()
})
test('can delete an image from a silo', async ({ page }) => {
await page.goto('/images')
const cell = page.getByRole('cell', { name: 'ubuntu-20-04' })
await expect(cell).toBeVisible()
await clickRowAction(page, 'ubuntu-20-04', 'Delete')
const spinner = page.getByRole('dialog').getByLabel('Spinner')
await expect(spinner).toBeHidden()
await page.getByRole('button', { name: 'Confirm' }).click()
await expect(spinner).toBeVisible()
// Check deletion was successful
await expectToast(page, 'Image ubuntu-20-04 deleted')
await expect(cell).toBeHidden()
await expect(spinner).toBeHidden()
})
// this is to some extent a test of our mock server implementation, but I want
// to check the error handling as well because we expect people to run into this
test("Silo viewer can't delete silo image", async ({ browser }) => {
const page = await getPageAsUser(browser, 'Simone de Beauvoir')
await page.goto('/images')
const cell = page.getByRole('cell', { name: 'ubuntu-20-04' })
await expect(cell).toBeVisible()
await clickRowAction(page, 'ubuntu-20-04', 'Delete')
const spinner = page.getByRole('dialog').getByLabel('Spinner')
await expect(spinner).toBeHidden()
await page.getByRole('button', { name: 'Confirm' }).click()
await expect(spinner).toBeVisible()
// Check deletion was successful
await expect(page.getByText('Could not delete resource', { exact: true })).toBeVisible()
await expect(cell).toBeVisible()
await expect(spinner).toBeHidden()
})