mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-20 00:52:41 +03:00
2681ad361b
Co-authored-by: Quentin Goinaud <armaldio@gmail.com> Co-authored-by: Lucas Fernandes Nogueira <lucasfernandesnog@gmail.com> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
118 lines
3.4 KiB
HTML
118 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<body>
|
|
<script>
|
|
function callBackEnd(route, args) {
|
|
console.log(route)
|
|
console.log(args)
|
|
var xhr = new XMLHttpRequest()
|
|
xhr.onload = function () {
|
|
console.log(route, args, 'done', xhr.status)
|
|
}
|
|
xhr.onerror = function () {
|
|
console.log(route, args, 'error with ' + xhr.status)
|
|
}
|
|
xhr.open('POST', 'http://localhost:7000/' + route)
|
|
xhr.setRequestHeader('Content-type', 'application/json')
|
|
xhr.send(JSON.stringify(args))
|
|
}
|
|
|
|
function reply(args) {
|
|
return callBackEnd('reply', args)
|
|
}
|
|
|
|
function sendError(error) {
|
|
return callBackEnd('error', error)
|
|
}
|
|
|
|
function testFs(dir) {
|
|
var contents = 'TAURI E2E TEST FILE'
|
|
var commandSuffix = (dir ? 'WithDir' : '')
|
|
|
|
var options = {
|
|
dir: dir || null
|
|
}
|
|
|
|
return window.__TAURI__.fs.writeFile({
|
|
file: 'tauri-test.txt',
|
|
contents: contents
|
|
}, options).then(function (res) {
|
|
reply({
|
|
cmd: 'writeFile' + commandSuffix
|
|
})
|
|
return window.__TAURI__.fs.readTextFile('tauri-test.txt', options).then(function (res) {
|
|
if (res === contents) {
|
|
reply({
|
|
cmd: 'readFile' + commandSuffix
|
|
})
|
|
|
|
return window.__TAURI__.fs.readDir('.', options).then(res => {
|
|
reply({
|
|
cmd: 'readDir' + commandSuffix
|
|
})
|
|
|
|
return window.__TAURI__.fs.copyFile('tauri-test.txt', 'tauri-test-copy.txt', options)
|
|
.then(function (res) {
|
|
reply({
|
|
cmd: 'copyFile' + commandSuffix
|
|
})
|
|
|
|
return window.__TAURI__.fs.createDir('tauri-test-dir', options).then(function (res) {
|
|
reply({
|
|
cmd: 'createDir' + commandSuffix
|
|
})
|
|
return window.__TAURI__.fs.removeDir('tauri-test-dir', options).then(function (res) {
|
|
reply({
|
|
cmd: 'removeDir' + commandSuffix
|
|
})
|
|
})
|
|
}).then(function (res) {
|
|
return window.__TAURI__.fs.renameFile('tauri-test.txt', 'tauri.testt.txt', options)
|
|
.then(function (res) {
|
|
reply({
|
|
cmd: 'renameFile' + commandSuffix
|
|
})
|
|
return Promise.all([
|
|
window.__TAURI__.fs.removeFile('tauri.testt.txt', options),
|
|
window.__TAURI__.fs.removeFile('tauri-test-copy.txt', options)
|
|
]).then(function (res) {
|
|
reply({
|
|
cmd: 'removeFile' + commandSuffix
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
} else {
|
|
sendError('expected "' + contents + '" found "' + res + '"')
|
|
}
|
|
})
|
|
}).catch(sendError)
|
|
}
|
|
|
|
window.__TAURI__.event.listen('reply', function (res) {
|
|
reply({
|
|
cmd: 'listen'
|
|
})
|
|
})
|
|
window.onTauriInit = function () {
|
|
window.__TAURI__.event.emit('hello')
|
|
}
|
|
|
|
testFs(null).then(function () {
|
|
testFs(window.__TAURI__.fs.Dir.Config)
|
|
})
|
|
|
|
setTimeout(function () {
|
|
window.__TAURI__.invoke({
|
|
cmd: 'exit'
|
|
})
|
|
}, 15000)
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|