|
| 1 | +import { describe, expect, test } from 'vitest' |
| 2 | +import { |
| 3 | + browserLogs, |
| 4 | + findAssetFile, |
| 5 | + getBg, |
| 6 | + getColor, |
| 7 | + isBuild, |
| 8 | + page |
| 9 | +} from '~utils' |
| 10 | + |
| 11 | +const absoluteAssetMatch = isBuild |
| 12 | + ? /http.*\/other-assets\/asset\.\w{8}\.png/ |
| 13 | + : '/nested/asset.png' |
| 14 | + |
| 15 | +// Asset URLs in CSS are relative to the same dir, the computed |
| 16 | +// style returns the absolute URL in the test |
| 17 | +const cssBgAssetMatch = absoluteAssetMatch |
| 18 | + |
| 19 | +const iconMatch = `/icon.png` |
| 20 | + |
| 21 | +const absoluteIconMatch = isBuild |
| 22 | + ? /http.*\/icon\.\w{8}\.png/ |
| 23 | + : '/nested/icon.png' |
| 24 | + |
| 25 | +const absolutePublicIconMatch = isBuild ? /http.*\/icon\.png/ : '/icon.png' |
| 26 | + |
| 27 | +test('should have no 404s', () => { |
| 28 | + browserLogs.forEach((msg) => { |
| 29 | + expect(msg).not.toMatch('404') |
| 30 | + }) |
| 31 | +}) |
| 32 | + |
| 33 | +describe('raw references from /public', () => { |
| 34 | + test('load raw js from /public', async () => { |
| 35 | + expect(await page.textContent('.raw-js')).toMatch('[success]') |
| 36 | + }) |
| 37 | + |
| 38 | + test('load raw css from /public', async () => { |
| 39 | + expect(await getColor('.raw-css')).toBe('red') |
| 40 | + }) |
| 41 | +}) |
| 42 | + |
| 43 | +test('import-expression from simple script', async () => { |
| 44 | + expect(await page.textContent('.import-expression')).toMatch( |
| 45 | + '[success][success]' |
| 46 | + ) |
| 47 | +}) |
| 48 | + |
| 49 | +describe('asset imports from js', () => { |
| 50 | + test('relative', async () => { |
| 51 | + expect(await page.textContent('.asset-import-relative')).toMatch( |
| 52 | + cssBgAssetMatch |
| 53 | + ) |
| 54 | + }) |
| 55 | + |
| 56 | + test('absolute', async () => { |
| 57 | + expect(await page.textContent('.asset-import-absolute')).toMatch( |
| 58 | + cssBgAssetMatch |
| 59 | + ) |
| 60 | + }) |
| 61 | + |
| 62 | + test('from /public', async () => { |
| 63 | + expect(await page.textContent('.public-import')).toMatch( |
| 64 | + absolutePublicIconMatch |
| 65 | + ) |
| 66 | + }) |
| 67 | +}) |
| 68 | + |
| 69 | +describe('css url() references', () => { |
| 70 | + test('fonts', async () => { |
| 71 | + expect( |
| 72 | + await page.evaluate(() => { |
| 73 | + return (document as any).fonts.check('700 32px Inter') |
| 74 | + }) |
| 75 | + ).toBe(true) |
| 76 | + }) |
| 77 | + |
| 78 | + test('relative', async () => { |
| 79 | + const bg = await getBg('.css-url-relative') |
| 80 | + expect(bg).toMatch(cssBgAssetMatch) |
| 81 | + }) |
| 82 | + |
| 83 | + test('image-set relative', async () => { |
| 84 | + const imageSet = await getBg('.css-image-set-relative') |
| 85 | + imageSet.split(', ').forEach((s) => { |
| 86 | + expect(s).toMatch(cssBgAssetMatch) |
| 87 | + }) |
| 88 | + }) |
| 89 | + |
| 90 | + test('image-set without the url() call', async () => { |
| 91 | + const imageSet = await getBg('.css-image-set-without-url-call') |
| 92 | + imageSet.split(', ').forEach((s) => { |
| 93 | + expect(s).toMatch(cssBgAssetMatch) |
| 94 | + }) |
| 95 | + }) |
| 96 | + |
| 97 | + test('image-set with var', async () => { |
| 98 | + const imageSet = await getBg('.css-image-set-with-var') |
| 99 | + imageSet.split(', ').forEach((s) => { |
| 100 | + expect(s).toMatch(cssBgAssetMatch) |
| 101 | + }) |
| 102 | + }) |
| 103 | + |
| 104 | + test('image-set with mix', async () => { |
| 105 | + const imageSet = await getBg('.css-image-set-mix-url-var') |
| 106 | + imageSet.split(', ').forEach((s) => { |
| 107 | + expect(s).toMatch(cssBgAssetMatch) |
| 108 | + }) |
| 109 | + }) |
| 110 | + |
| 111 | + test('relative in @import', async () => { |
| 112 | + expect(await getBg('.css-url-relative-at-imported')).toMatch( |
| 113 | + cssBgAssetMatch |
| 114 | + ) |
| 115 | + }) |
| 116 | + |
| 117 | + test('absolute', async () => { |
| 118 | + expect(await getBg('.css-url-absolute')).toMatch(cssBgAssetMatch) |
| 119 | + }) |
| 120 | + |
| 121 | + test('from /public', async () => { |
| 122 | + expect(await getBg('.css-url-public')).toMatch(iconMatch) |
| 123 | + }) |
| 124 | + |
| 125 | + test('multiple urls on the same line', async () => { |
| 126 | + const bg = await getBg('.css-url-same-line') |
| 127 | + expect(bg).toMatch(cssBgAssetMatch) |
| 128 | + expect(bg).toMatch(iconMatch) |
| 129 | + }) |
| 130 | + |
| 131 | + test('aliased', async () => { |
| 132 | + const bg = await getBg('.css-url-aliased') |
| 133 | + expect(bg).toMatch(cssBgAssetMatch) |
| 134 | + }) |
| 135 | +}) |
| 136 | + |
| 137 | +describe.runIf(isBuild)('index.css URLs', () => { |
| 138 | + let css: string |
| 139 | + beforeAll(() => { |
| 140 | + css = findAssetFile(/index.*\.css$/, '', 'other-assets') |
| 141 | + }) |
| 142 | + |
| 143 | + test('relative asset URL', () => { |
| 144 | + expect(css).toMatch(`./asset.`) |
| 145 | + }) |
| 146 | + |
| 147 | + test('preserve postfix query/hash', () => { |
| 148 | + expect(css).toMatch(`woff2?#iefix`) |
| 149 | + }) |
| 150 | +}) |
| 151 | + |
| 152 | +describe('image', () => { |
| 153 | + test('srcset', async () => { |
| 154 | + const img = await page.$('.img-src-set') |
| 155 | + const srcset = await img.getAttribute('srcset') |
| 156 | + srcset.split(', ').forEach((s) => { |
| 157 | + expect(s).toMatch( |
| 158 | + isBuild |
| 159 | + ? /other-assets\/asset\.\w{8}\.png \d{1}x/ |
| 160 | + : /\.\/nested\/asset\.png \d{1}x/ |
| 161 | + ) |
| 162 | + }) |
| 163 | + }) |
| 164 | +}) |
| 165 | + |
| 166 | +describe('svg fragments', () => { |
| 167 | + // 404 is checked already, so here we just ensure the urls end with #fragment |
| 168 | + test('img url', async () => { |
| 169 | + const img = await page.$('.svg-frag-img') |
| 170 | + expect(await img.getAttribute('src')).toMatch(/svg#icon-clock-view$/) |
| 171 | + }) |
| 172 | + |
| 173 | + test('via css url()', async () => { |
| 174 | + const bg = await page.evaluate(() => { |
| 175 | + return getComputedStyle(document.querySelector('.icon')).backgroundImage |
| 176 | + }) |
| 177 | + expect(bg).toMatch(/svg#icon-clock-view"\)$/) |
| 178 | + }) |
| 179 | + |
| 180 | + test('from js import', async () => { |
| 181 | + const img = await page.$('.svg-frag-import') |
| 182 | + expect(await img.getAttribute('src')).toMatch(/svg#icon-heart-view$/) |
| 183 | + }) |
| 184 | +}) |
| 185 | + |
| 186 | +test('?raw import', async () => { |
| 187 | + expect(await page.textContent('.raw')).toMatch('SVG') |
| 188 | +}) |
| 189 | + |
| 190 | +test('?url import', async () => { |
| 191 | + expect(await page.textContent('.url')).toMatch( |
| 192 | + isBuild ? /http.*\/other-assets\/foo\.\w{8}\.js/ : `/foo.js` |
| 193 | + ) |
| 194 | +}) |
| 195 | + |
| 196 | +test('?url import on css', async () => { |
| 197 | + const txt = await page.textContent('.url-css') |
| 198 | + expect(txt).toMatch( |
| 199 | + isBuild ? /http.*\/other-assets\/icons\.\w{8}\.css/ : '/css/icons.css' |
| 200 | + ) |
| 201 | +}) |
| 202 | + |
| 203 | +test('new URL(..., import.meta.url)', async () => { |
| 204 | + expect(await page.textContent('.import-meta-url')).toMatch(absoluteAssetMatch) |
| 205 | +}) |
| 206 | + |
| 207 | +test('new URL(`${dynamic}`, import.meta.url)', async () => { |
| 208 | + const dynamic1 = await page.textContent('.dynamic-import-meta-url-1') |
| 209 | + expect(dynamic1).toMatch(absoluteIconMatch) |
| 210 | + const dynamic2 = await page.textContent('.dynamic-import-meta-url-2') |
| 211 | + expect(dynamic2).toMatch(absoluteAssetMatch) |
| 212 | +}) |
| 213 | + |
| 214 | +test('new URL(`non-existent`, import.meta.url)', async () => { |
| 215 | + expect(await page.textContent('.non-existent-import-meta-url')).toMatch( |
| 216 | + '/non-existent' |
| 217 | + ) |
| 218 | +}) |
| 219 | + |
| 220 | +test('inline style test', async () => { |
| 221 | + expect(await getBg('.inline-style')).toMatch(cssBgAssetMatch) |
| 222 | + expect(await getBg('.style-url-assets')).toMatch(cssBgAssetMatch) |
| 223 | +}) |
| 224 | + |
| 225 | +test('html import word boundary', async () => { |
| 226 | + expect(await page.textContent('.obj-import-express')).toMatch( |
| 227 | + 'ignore object import prop' |
| 228 | + ) |
| 229 | + expect(await page.textContent('.string-import-express')).toMatch('no load') |
| 230 | +}) |
| 231 | + |
| 232 | +test('relative path in html asset', async () => { |
| 233 | + expect(await page.textContent('.relative-js')).toMatch('hello') |
| 234 | + expect(await getColor('.relative-css')).toMatch('red') |
| 235 | +}) |
0 commit comments