|
| 1 | +import { test } from '../fixtures/lighthouseFixture' |
| 2 | + |
| 3 | +test.describe.serial('Lighthouse', () => { |
| 4 | + test('check home page performance', async ({ |
| 5 | + browserName, |
| 6 | + playwright, |
| 7 | + lighthouse, |
| 8 | + }) => { |
| 9 | + test.skip(browserName !== 'chromium', 'Run only on chromium') |
| 10 | + |
| 11 | + const browser = await playwright['chromium'].launch({ |
| 12 | + args: ['--remote-debugging-port=9222'], |
| 13 | + }) |
| 14 | + |
| 15 | + try { |
| 16 | + const page = await browser.newPage() |
| 17 | + await page.goto('/') |
| 18 | + |
| 19 | + await lighthouse(page, 'homePage', { |
| 20 | + thresholds: { |
| 21 | + performance: 0.9, |
| 22 | + 'best-practices': 0.9, |
| 23 | + seo: 0.9, |
| 24 | + }, |
| 25 | + }) |
| 26 | + |
| 27 | + await page.close() |
| 28 | + } finally { |
| 29 | + await browser.close() |
| 30 | + } |
| 31 | + }) |
| 32 | + test('check auth page performance', async ({ |
| 33 | + browserName, |
| 34 | + playwright, |
| 35 | + lighthouse, |
| 36 | + }) => { |
| 37 | + test.skip(browserName !== 'chromium', 'Run only on chromium') |
| 38 | + |
| 39 | + const browser = await playwright['chromium'].launch({ |
| 40 | + args: ['--remote-debugging-port=9222'], |
| 41 | + }) |
| 42 | + |
| 43 | + try { |
| 44 | + const page = await browser.newPage() |
| 45 | + await page.goto('/auth') |
| 46 | + |
| 47 | + await lighthouse(page, 'authPage', { |
| 48 | + thresholds: { |
| 49 | + performance: 0.9, |
| 50 | + 'best-practices': 0.9, |
| 51 | + seo: 0.9, |
| 52 | + }, |
| 53 | + }) |
| 54 | + |
| 55 | + await page.close() |
| 56 | + } finally { |
| 57 | + await browser.close() |
| 58 | + } |
| 59 | + }) |
| 60 | + test('check dashboard page performance', async ({ |
| 61 | + browserName, |
| 62 | + playwright, |
| 63 | + lighthouse, |
| 64 | + }) => { |
| 65 | + test.skip(browserName !== 'chromium', 'Run only on chromium') |
| 66 | + |
| 67 | + const browser = await playwright['chromium'].launch({ |
| 68 | + args: ['--remote-debugging-port=9222'], |
| 69 | + }) |
| 70 | + |
| 71 | + try { |
| 72 | + const page = await browser.newPage({ |
| 73 | + storageState: 'tests/.auth/admin.json', |
| 74 | + }) |
| 75 | + await page.goto('/admin/dashboard') |
| 76 | + |
| 77 | + // 读取并解析 cookies |
| 78 | + const cookies = await page.context().cookies() |
| 79 | + const cookieString = cookies |
| 80 | + .map((cookie) => `${cookie.name}=${cookie.value}`) |
| 81 | + .join('; ') |
| 82 | + |
| 83 | + // 将 cookies 传递给 Lighthouse |
| 84 | + await lighthouse(page, 'dashboardPage', { |
| 85 | + thresholds: { |
| 86 | + performance: 0.9, |
| 87 | + 'best-practices': 0.9, |
| 88 | + seo: 0.9, |
| 89 | + }, |
| 90 | + // 这里可以添加其他选项,例如 cookies |
| 91 | + extraHeaders: { |
| 92 | + Cookie: cookieString, |
| 93 | + }, |
| 94 | + }) |
| 95 | + |
| 96 | + await page.close() |
| 97 | + } finally { |
| 98 | + await browser.close() |
| 99 | + } |
| 100 | + }) |
| 101 | + test('check orders page performance', async ({ |
| 102 | + browserName, |
| 103 | + playwright, |
| 104 | + lighthouse, |
| 105 | + }) => { |
| 106 | + test.skip(browserName !== 'chromium', 'Run only on chromium') |
| 107 | + |
| 108 | + const browser = await playwright['chromium'].launch({ |
| 109 | + args: ['--remote-debugging-port=9222'], |
| 110 | + }) |
| 111 | + |
| 112 | + try { |
| 113 | + const page = await browser.newPage({ |
| 114 | + storageState: 'tests/.auth/admin.json', |
| 115 | + }) |
| 116 | + await page.goto('/admin/orders') |
| 117 | + |
| 118 | + // 读取并解析 cookies |
| 119 | + const cookies = await page.context().cookies() |
| 120 | + const cookieString = cookies |
| 121 | + .map((cookie) => `${cookie.name}=${cookie.value}`) |
| 122 | + .join('; ') |
| 123 | + |
| 124 | + // 将 cookies 传递给 Lighthouse |
| 125 | + await lighthouse(page, 'ordersPage', { |
| 126 | + thresholds: { |
| 127 | + performance: 0.9, |
| 128 | + 'best-practices': 0.9, |
| 129 | + seo: 0.9, |
| 130 | + }, |
| 131 | + // 这里可以添加其他选项,例如 cookies |
| 132 | + extraHeaders: { |
| 133 | + Cookie: cookieString, |
| 134 | + }, |
| 135 | + }) |
| 136 | + |
| 137 | + await page.close() |
| 138 | + } finally { |
| 139 | + await browser.close() |
| 140 | + } |
| 141 | + }) |
| 142 | + test('check products page performance', async ({ |
| 143 | + browserName, |
| 144 | + playwright, |
| 145 | + lighthouse, |
| 146 | + }) => { |
| 147 | + test.skip(browserName !== 'chromium', 'Run only on chromium') |
| 148 | + |
| 149 | + const browser = await playwright['chromium'].launch({ |
| 150 | + args: ['--remote-debugging-port=9222'], |
| 151 | + }) |
| 152 | + |
| 153 | + try { |
| 154 | + const page = await browser.newPage({ |
| 155 | + storageState: 'tests/.auth/admin.json', |
| 156 | + }) |
| 157 | + await page.goto('/admin/products') |
| 158 | + |
| 159 | + // 读取并解析 cookies |
| 160 | + const cookies = await page.context().cookies() |
| 161 | + const cookieString = cookies |
| 162 | + .map((cookie) => `${cookie.name}=${cookie.value}`) |
| 163 | + .join('; ') |
| 164 | + |
| 165 | + // 将 cookies 传递给 Lighthouse |
| 166 | + await lighthouse(page, 'productsPage', { |
| 167 | + thresholds: { |
| 168 | + performance: 0.9, |
| 169 | + 'best-practices': 0.9, |
| 170 | + seo: 0.9, |
| 171 | + }, |
| 172 | + // 这里可以添加其他选项,例如 cookies |
| 173 | + extraHeaders: { |
| 174 | + Cookie: cookieString, |
| 175 | + }, |
| 176 | + }) |
| 177 | + |
| 178 | + await page.close() |
| 179 | + } finally { |
| 180 | + await browser.close() |
| 181 | + } |
| 182 | + }) |
| 183 | + test('check categories page performance', async ({ |
| 184 | + browserName, |
| 185 | + playwright, |
| 186 | + lighthouse, |
| 187 | + }) => { |
| 188 | + test.skip(browserName !== 'chromium', 'Run only on chromium') |
| 189 | + |
| 190 | + const browser = await playwright['chromium'].launch({ |
| 191 | + args: ['--remote-debugging-port=9222'], |
| 192 | + }) |
| 193 | + |
| 194 | + try { |
| 195 | + const page = await browser.newPage({ |
| 196 | + storageState: 'tests/.auth/admin.json', |
| 197 | + }) |
| 198 | + await page.goto('/admin/categories') |
| 199 | + |
| 200 | + // 读取并解析 cookies |
| 201 | + const cookies = await page.context().cookies() |
| 202 | + const cookieString = cookies |
| 203 | + .map((cookie) => `${cookie.name}=${cookie.value}`) |
| 204 | + .join('; ') |
| 205 | + |
| 206 | + // 将 cookies 传递给 Lighthouse |
| 207 | + await lighthouse(page, 'categoriesPage', { |
| 208 | + thresholds: { |
| 209 | + performance: 0.9, |
| 210 | + 'best-practices': 0.9, |
| 211 | + seo: 0.9, |
| 212 | + }, |
| 213 | + // 这里可以添加其他选项,例如 cookies |
| 214 | + extraHeaders: { |
| 215 | + Cookie: cookieString, |
| 216 | + }, |
| 217 | + }) |
| 218 | + |
| 219 | + await page.close() |
| 220 | + } finally { |
| 221 | + await browser.close() |
| 222 | + } |
| 223 | + }) |
| 224 | +}) |
0 commit comments