mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 00:21:32 +03:00
57cdf660d1
* feat(config) expose "fullscreen" property * fix(tauri) tests not compiling * fix(tauri.js) increase timeout for app test
72 lines
1.8 KiB
JavaScript
72 lines
1.8 KiB
JavaScript
const path = require('path')
|
|
const process = require('process')
|
|
|
|
const mockFixtureDir = path.resolve(__dirname, '../fixtures')
|
|
|
|
module.exports.fixtureDir = mockFixtureDir
|
|
|
|
module.exports.initJest = (mockFixture) => {
|
|
jest.setTimeout(720000)
|
|
jest.mock('helpers/non-webpack-require', () => {
|
|
return path => {
|
|
const value = require('fs').readFileSync(path).toString()
|
|
if (path.endsWith('.json')) {
|
|
return JSON.parse(value)
|
|
}
|
|
return value
|
|
}
|
|
})
|
|
|
|
jest.mock('helpers/app-paths', () => {
|
|
const path = require('path')
|
|
const appDir = path.join(mockFixtureDir, mockFixture)
|
|
const tauriDir = path.join(appDir, 'src-tauri')
|
|
return {
|
|
appDir,
|
|
tauriDir,
|
|
resolve: {
|
|
app: dir => path.join(appDir, dir),
|
|
tauri: dir => path.join(tauriDir, dir)
|
|
}
|
|
}
|
|
})
|
|
|
|
jest.spyOn(process, 'exit').mockImplementation(() => {})
|
|
}
|
|
|
|
module.exports.startServer = (onReply) => {
|
|
const http = require('http')
|
|
const app = http.createServer((req, res) => {
|
|
// Set CORS headers
|
|
res.setHeader('Access-Control-Allow-Origin', '*')
|
|
res.setHeader('Access-Control-Request-Method', '*')
|
|
res.setHeader('Access-Control-Allow-Methods', 'OPTIONS, GET')
|
|
res.setHeader('Access-Control-Allow-Headers', '*')
|
|
|
|
if (req.method === 'OPTIONS') {
|
|
res.writeHead(200)
|
|
res.end()
|
|
return
|
|
}
|
|
|
|
if (req.method === 'POST') {
|
|
if (req.url === '/reply') {
|
|
let body = ''
|
|
req.on('data', chunk => {
|
|
body += chunk.toString()
|
|
})
|
|
req.on('end', () => {
|
|
expect(JSON.parse(body)).toStrictEqual({
|
|
msg: 'TEST'
|
|
})
|
|
server.close(onReply)
|
|
})
|
|
}
|
|
}
|
|
})
|
|
|
|
const port = 7000
|
|
const server = app.listen(port)
|
|
return server
|
|
}
|