@@ -2,6 +2,7 @@ import fs from 'node:fs'
2
2
import path from 'node:path'
3
3
import { describe , expect , test , vi } from 'vitest'
4
4
import { resolveConfig } from '../../config'
5
+ import type { InlineConfig } from '../../config'
5
6
import { cssPlugin , cssUrlRE , hoistAtRules } from '../../plugins/css'
6
7
7
8
describe ( 'search css url function' , ( ) => {
@@ -46,13 +47,17 @@ describe('search css url function', () => {
46
47
} )
47
48
} )
48
49
49
- describe ( 'css path resolutions' , ( ) => {
50
- const mockedProjectPath = path . join ( process . cwd ( ) , '/foo/bar/project' )
51
- const mockedBarCssRelativePath = '/css/bar.module.css'
52
- const mockedFooCssRelativePath = '/css/foo.module.css'
53
-
54
- test ( 'cssmodule compose/from path resolutions' , async ( ) => {
55
- const config = await resolveConfig (
50
+ describe ( 'css modules' , ( ) => {
51
+ test ( 'css module compose/from path resolutions' , async ( ) => {
52
+ const mockedProjectPath = path . join ( process . cwd ( ) , '/foo/bar/project' )
53
+ const { transform, resetMock } = await createCssPluginTransform (
54
+ {
55
+ [ path . join ( mockedProjectPath , '/css/bar.module.css' ) ] : `\
56
+ .bar {
57
+ display: block;
58
+ background: #f0f;
59
+ }`
60
+ } ,
56
61
{
57
62
resolve : {
58
63
alias : [
@@ -62,57 +67,48 @@ describe('css path resolutions', () => {
62
67
}
63
68
]
64
69
}
65
- } ,
66
- 'serve'
70
+ }
67
71
)
68
72
69
- const { transform, buildStart } = cssPlugin ( config )
70
-
71
- await buildStart . call ( { } )
72
-
73
- const mockFs = vi
74
- . spyOn ( fs , 'readFile' )
75
- // @ts -ignore vi.spyOn not recognize override `fs.readFile` definition.
76
- . mockImplementationOnce ( ( p , encoding , callback ) => {
77
- expect ( p ) . toBe ( path . join ( mockedProjectPath , mockedBarCssRelativePath ) )
78
- expect ( encoding ) . toBe ( 'utf-8' )
79
- callback (
80
- null ,
81
- Buffer . from ( `
82
- .bar {
83
- display: block;
84
- background: #f0f;
85
- }
86
- ` )
87
- )
88
- } )
89
-
90
- const { code } = await transform . call (
91
- {
92
- addWatchFile ( ) {
93
- return
94
- }
95
- } ,
96
- `
73
+ const result = await transform (
74
+ `\
97
75
.foo {
98
- position: fixed;
99
- composes: bar from '@${ mockedBarCssRelativePath } ';
100
- }
101
- ` ,
102
- path . join ( mockedProjectPath , mockedFooCssRelativePath )
76
+ position: fixed;
77
+ composes: bar from '@/css/bar.module.css';
78
+ }` ,
79
+ '/css/foo.module.css'
103
80
)
104
81
105
- expect ( code ) . toBe ( `
106
- ._bar_soicv_2 {
107
- display: block;
108
- background: #f0f;
109
- }
110
- ._foo_sctn3_2 {
111
- position: fixed;
82
+ expect ( result . code ) . toBe (
83
+ `\
84
+ ._bar_1csqm_1 {
85
+ display: block;
86
+ background: #f0f;
112
87
}
113
- ` )
88
+ ._foo_86148_1 {
89
+ position: fixed;
90
+ }`
91
+ )
92
+
93
+ resetMock ( )
94
+ } )
114
95
115
- mockFs . mockReset ( )
96
+ test ( 'custom generateScopedName' , async ( ) => {
97
+ const { transform, resetMock } = await createCssPluginTransform ( undefined , {
98
+ css : {
99
+ modules : {
100
+ generateScopedName : 'custom__[hash:base64:5]'
101
+ }
102
+ }
103
+ } )
104
+ const css = `\
105
+ .foo {
106
+ color: red;
107
+ }`
108
+ const result1 = await transform ( css , '/foo.module.css' ) // server
109
+ const result2 = await transform ( css , '/foo.module.css?direct' ) // client
110
+ expect ( result1 . code ) . toBe ( result2 . code )
111
+ resetMock ( )
116
112
} )
117
113
} )
118
114
@@ -205,3 +201,39 @@ describe('hoist @ rules', () => {
205
201
` )
206
202
} )
207
203
} )
204
+
205
+ async function createCssPluginTransform (
206
+ files ?: Record < string , string > ,
207
+ inlineConfig : InlineConfig = { }
208
+ ) {
209
+ const config = await resolveConfig ( inlineConfig , 'serve' )
210
+ const { transform, buildStart } = cssPlugin ( config )
211
+
212
+ // @ts -expect-error
213
+ await buildStart . call ( { } )
214
+
215
+ const mockFs = vi
216
+ . spyOn ( fs , 'readFile' )
217
+ // @ts -expect-error vi.spyOn not recognize override `fs.readFile` definition.
218
+ . mockImplementationOnce ( ( p , encoding , callback ) => {
219
+ callback ( null , Buffer . from ( files ?. [ p ] ?? '' ) )
220
+ } )
221
+
222
+ return {
223
+ async transform ( code : string , id : string ) {
224
+ // @ts -expect-error
225
+ return await transform . call (
226
+ {
227
+ addWatchFile ( ) {
228
+ return
229
+ }
230
+ } ,
231
+ code ,
232
+ id
233
+ )
234
+ } ,
235
+ resetMock ( ) {
236
+ mockFs . mockReset ( )
237
+ }
238
+ }
239
+ }
0 commit comments