forked from NiladriHazra/Open-Fiesta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.setup.js
More file actions
185 lines (165 loc) · 4.05 KB
/
jest.setup.js
File metadata and controls
185 lines (165 loc) · 4.05 KB
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
182
183
184
185
import '@testing-library/jest-dom'
// Mock next/router
jest.mock('next/router', () => ({
useRouter() {
return {
route: '/',
pathname: '/',
query: {},
asPath: '/',
push: jest.fn(),
pop: jest.fn(),
reload: jest.fn(),
back: jest.fn(),
prefetch: jest.fn().mockResolvedValue(undefined),
beforePopState: jest.fn(),
events: {
on: jest.fn(),
off: jest.fn(),
emit: jest.fn(),
},
}
},
}))
// Mock next/navigation
jest.mock('next/navigation', () => ({
useRouter() {
return {
push: jest.fn(),
replace: jest.fn(),
prefetch: jest.fn(),
back: jest.fn(),
forward: jest.fn(),
refresh: jest.fn(),
}
},
useSearchParams() {
return new URLSearchParams()
},
usePathname() {
return '/'
},
}))
// Mock environment variables
process.env.NEXT_PUBLIC_SUPABASE_URL = 'https://test.supabase.co'
process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY = 'test-anon-key'
process.env.NEXT_PUBLIC_ENCRYPTION_KEY = 'test-encryption-key-32-characters'
// Global test setup
global.ResizeObserver = jest.fn().mockImplementation(() => ({
observe: jest.fn(),
unobserve: jest.fn(),
disconnect: jest.fn(),
}))
// Mock IntersectionObserver
global.IntersectionObserver = jest.fn().mockImplementation(() => ({
observe: jest.fn(),
unobserve: jest.fn(),
disconnect: jest.fn(),
}))
// Mock Web APIs for PWA tests
global.Request = class Request {
constructor(url, options = {}) {
this.url = url
this.method = options.method || 'GET'
this.headers = new Headers(options.headers)
}
}
global.Response = class Response {
constructor(body, options = {}) {
this.body = body
this.status = options.status || 200
this.statusText = options.statusText || 'OK'
this.headers = new Headers(options.headers)
this.ok = this.status >= 200 && this.status < 300
this.type = 'basic'
}
clone() {
return new Response(this.body, {
status: this.status,
statusText: this.statusText,
headers: this.headers
})
}
async blob() {
return { size: this.body ? this.body.length : 0 }
}
async json() {
return JSON.parse(this.body)
}
async text() {
return this.body
}
}
global.Headers = class Headers {
constructor(init = {}) {
this.headers = new Map()
if (init) {
if (init instanceof Headers) {
// Copy from another Headers instance
init.headers.forEach((value, key) => {
this.headers.set(key, value)
})
} else {
// Copy from object
Object.entries(init).forEach(([key, value]) => {
this.headers.set(key.toLowerCase(), value)
})
}
}
}
get(name) {
return this.headers.get(name.toLowerCase()) || null
}
set(name, value) {
this.headers.set(name.toLowerCase(), value)
return this
}
has(name) {
return this.headers.has(name.toLowerCase())
}
delete(name) {
this.headers.delete(name.toLowerCase())
}
forEach(callback) {
this.headers.forEach(callback)
}
}
// Use the native URL if available, otherwise provide a simple mock
if (typeof globalThis.URL === 'undefined') {
global.URL = class URL {
constructor(url, base) {
this.href = url
this.protocol = 'https:'
this.host = 'example.com'
this.hostname = 'example.com'
this.port = ''
this.pathname = '/test'
this.search = ''
this.hash = ''
this.searchParams = {
delete: jest.fn(),
get: jest.fn(),
set: jest.fn(),
}
}
toString() {
return this.href
}
}
}
// Mock matchMedia (only in jsdom environment)
if (typeof window !== 'undefined') {
Object.defineProperty(window, 'matchMedia', {
writable: true,
value: jest.fn().mockImplementation(query => ({
matches: false,
media: query,
onchange: null,
addListener: jest.fn(), // deprecated
removeListener: jest.fn(), // deprecated
addEventListener: jest.fn(),
removeEventListener: jest.fn(),
dispatchEvent: jest.fn(),
})),
})
}