1
- import Mock , { Random , mock } from 'mockjs'
2
- import { getUsers } from './user'
3
-
4
- import type { Result } from '@/service/common'
1
+ import { faker } from '@faker-js/faker'
2
+ import { HttpResponse , http } from 'msw'
5
3
6
4
export interface MockParams {
7
5
url : string ,
@@ -10,182 +8,90 @@ export interface MockParams {
10
8
headers ?: Record < string , string >
11
9
}
12
10
13
- type ResultType < T > = {
14
- [ P in keyof T ] : T [ P ] extends ( ) => any ? ReturnType < T [ P ] > : T [ P ]
11
+ export function createResult < T > (
12
+ data : T | null = null ,
13
+ success = true ,
14
+ message ?: string ,
15
+ status = 200
16
+ ) {
17
+ return HttpResponse . json (
18
+ {
19
+ status : success ? 1 : 0 ,
20
+ message : message || ( success ? 'ok' : 'fail' ) ,
21
+ data
22
+ } ,
23
+ status !== 200 ? { status } : undefined
24
+ )
15
25
}
16
26
17
- const XHR = ( Mock as any ) . XHR
27
+ export function mockCommonRequests < T extends { id ?: any } > ( url : string , getList : ( ) => T [ ] ) {
28
+ url = url . trim ( ) . replace ( / \/ + $ / , '' )
29
+ let list = getList ( )
18
30
19
- XHR . prototype . __send = XHR . prototype . send
20
- XHR . prototype . send = function ( ...args : any ) {
21
- if ( this . custom . xhr ) {
22
- this . custom . xhr . withCredentials = this . withCredentials ?? false
31
+ const handlers = [
32
+ http . get ( url , ( ) => createResult ( list ) ) ,
23
33
24
- try {
25
- // 同步请求时会报错
26
- // 暂未找到方法判断是否为同步请求
27
- this . custom . xhr . responseType = this . responseType
28
- } catch ( e ) { }
29
- }
34
+ http . get ( `${ url } /:id` , ( { params } ) => {
35
+ const id = params . id
36
+ const entity = list . find ( entity => String ( entity . id ) === id )
30
37
31
- if ( this . custom . requestHeaders ) {
32
- this . custom . options . headers = { ...this . custom . requestHeaders }
33
- }
38
+ return createResult ( entity )
39
+ } ) ,
34
40
35
- this . __send ( ...args )
36
- }
41
+ http . post ( url , async ( { request } ) => {
42
+ try {
43
+ const entity = ( await request . json ( ) ) as T
37
44
38
- Mock . setup ( { timeout : '200-600' } )
45
+ entity . id = faker . string . uuid ( )
46
+ list . push ( entity )
39
47
40
- Random . extend ( {
41
- telephone ( ) {
42
- return `1${ Random . pick ( [ '30' , '32' , '35' , '59' , '80' , '89' ] ) } ${ mock ( / \d { 8 } / ) } `
43
- }
44
- } )
48
+ return createResult ( entity )
49
+ } catch ( error ) { }
45
50
46
- export function createResponse < T extends { [ x : string ] : any } | { [ x : string ] : any } [ ] > (
47
- data : T ,
48
- range ?: string
49
- ) {
50
- return ( ) : Result < T extends any [ ] ? ResultType < T [ 0 ] > [ ] : ResultType < T > > => {
51
- const isArrayData = Array . isArray ( data )
52
-
53
- if ( isArrayData && ! range ) {
54
- range = '20-30'
55
- }
56
-
57
- const mockResult = mock (
58
- isArrayData
59
- ? {
60
- [ `data|${ range } ` ] : data
61
- }
62
- : data
63
- )
64
-
65
- return {
66
- status : 1 ,
67
- message : 'ok' ,
68
- data : isArrayData ? mockResult . data : mockResult
69
- }
70
- }
71
- }
51
+ return createResult ( )
52
+ } ) ,
72
53
73
- export function mockCommonRequests < T extends { id ?: any } > ( url : string , getList : ( ) => T [ ] ) {
74
- let list = getList ( )
54
+ http . put ( url , async ( { request } ) => {
55
+ try {
56
+ const newEntity = ( await request . json ( ) ) as T
57
+ const entity = list . find ( entity => entity . id === newEntity . id )
75
58
76
- mock ( url , 'get' , ( ) => {
77
- return {
78
- status : 1 ,
79
- message : 'ok' ,
80
- data : list
81
- }
82
- } )
83
-
84
- mock ( new RegExp ( `${ url } \\/[^/]+` ) , 'get' , ( { url } ) => {
85
- const id = url . split ( '/' ) . at ( - 1 ) !
86
- const entity = list . find ( entity => String ( entity . id ) === id )
87
-
88
- return {
89
- status : 1 ,
90
- message : 'ok' ,
91
- data : entity || null
92
- }
93
- } )
94
-
95
- mock ( url , 'post' , ( { body } ) => {
96
- try {
97
- const entity = JSON . parse ( body )
98
-
99
- entity . id = Random . guid ( )
100
- list . push ( entity )
101
-
102
- return {
103
- status : 1 ,
104
- message : 'ok' ,
105
- data : entity
106
- }
107
- } catch ( error ) { }
108
-
109
- return {
110
- status : 1 ,
111
- message : 'ok' ,
112
- data : null
113
- }
114
- } )
115
-
116
- mock ( url , 'put' , ( { body } ) => {
117
- try {
118
- const newEntity = JSON . parse ( body )
119
- const entity = list . find ( entity => entity . id === newEntity . id )
120
-
121
- if ( entity ) {
122
- Object . assign ( entity , newEntity )
123
-
124
- return {
125
- status : 1 ,
126
- message : 'ok' ,
127
- data : entity
59
+ if ( entity ) {
60
+ Object . assign ( entity , newEntity )
61
+
62
+ return createResult ( entity )
128
63
}
64
+ } catch ( error ) { }
65
+
66
+ return createResult ( )
67
+ } ) ,
68
+
69
+ http . delete ( `${ url } /:id` , ( { params } ) => {
70
+ const id = params . id
71
+ const index = list . findIndex ( entity => entity . id === id )
72
+
73
+ if ( index > - 1 ) {
74
+ list . splice ( index , 1 )
129
75
}
130
- } catch ( error ) { }
131
-
132
- return {
133
- status : 1 ,
134
- message : 'ok' ,
135
- data : null
136
- }
137
- } )
138
-
139
- mock ( new RegExp ( `${ url } \\/[^/]+` ) , 'delete' , ( { url } ) => {
140
- const id = url . split ( '/' ) . at ( - 1 ) !
141
- const index = list . findIndex ( entity => entity . id === id )
142
-
143
- if ( index > - 1 ) {
144
- list . splice ( index , 1 )
145
- }
146
-
147
- return {
148
- status : 1 ,
149
- message : 'ok' ,
150
- data : index > - 1
151
- }
152
- } )
153
-
154
- mock ( url , 'delete' , ( { body } ) => {
155
- try {
156
- const ids = JSON . parse ( body )
157
-
158
- if ( ids . length ) {
159
- const idSet = new Set ( ids )
160
-
161
- list = list . filter ( entity => ! idSet . has ( entity . id ) )
162
-
163
- return {
164
- status : 1 ,
165
- message : 'ok' ,
166
- data : true
76
+
77
+ return createResult ( index > - 1 )
78
+ } ) ,
79
+
80
+ http . delete ( url , async ( { request } ) => {
81
+ try {
82
+ const ids = ( await request . json ( ) ) as string [ ]
83
+
84
+ if ( ids . length ) {
85
+ const idSet = new Set ( ids )
86
+ list = list . filter ( entity => ! idSet . has ( entity . id ) )
87
+
88
+ return createResult ( true )
167
89
}
168
- }
169
- } catch ( error ) { }
170
-
171
- return {
172
- status : 1 ,
173
- message : 'ok' ,
174
- data : false
175
- }
176
- } )
177
- }
90
+ } catch ( error ) { }
91
+
92
+ return createResult ( false )
93
+ } )
94
+ ]
178
95
179
- export function createBusinessBase ( ) {
180
- const user = Random . pick ( getUsers ( ) )
181
-
182
- return {
183
- id : Random . guid ( ) ,
184
- creatorId : user . id ,
185
- creatorName : user . alias ,
186
- createdTime : Random . datetime ( ) ,
187
- modifierId : user . id ,
188
- modifierName : user . alias ,
189
- modifiedTime : Random . datetime ( )
190
- }
96
+ return { handlers, getList : ( ) => list }
191
97
}
0 commit comments