upload local files

pull/1/head
ioedeveloper 5 years ago
parent ee1878f03d
commit b914b225fa
  1. 2
      src/app/files/file-explorer.js
  2. 15
      test-browser/tests/fileExplorer.js

@ -627,7 +627,7 @@ fileExplorer.prototype.renderMenuItems = function () {
class="${icon} ${css.newFile}" class="${icon} ${css.newFile}"
title="${title}" title="${title}"
> >
<input type="file" onchange=${(event) => { <input id="fileUpload" type="file" onchange=${(event) => {
event.stopPropagation() event.stopPropagation()
this.uploadFile(event) this.uploadFile(event)
}} multiple /> }} multiple />

@ -1,6 +1,12 @@
'use strict' 'use strict'
const init = require('../helpers/init') const init = require('../helpers/init')
const sauce = require('./sauce') const sauce = require('./sauce')
const path = require('path')
const testData = {
testFile1: path.resolve(__dirname + '/editor.js'),
testFile2: path.resolve(__dirname + '/fileExplorer.js'),
testFile3: path.resolve(__dirname + '/generalSettings.js')
}
module.exports = { module.exports = {
@ -88,6 +94,7 @@ module.exports = {
if (runtimeBrowser === 'chrome') { if (runtimeBrowser === 'chrome') {
browser.switchBrowserTab(1) browser.switchBrowserTab(1)
.assert.urlContains('https://gist.github.com') .assert.urlContains('https://gist.github.com')
.switchBrowserTab(0)
} }
done() done()
}) })
@ -95,8 +102,12 @@ module.exports = {
'Should open local filesystem explorer': function (browser) { 'Should open local filesystem explorer': function (browser) {
browser.waitForElementVisible('*[data-id="filePanelFileExplorerTree"]') browser.waitForElementVisible('*[data-id="filePanelFileExplorerTree"]')
.waitForElementNotPresent('*[data-id="fileExplorerUploadFileuploadFile"]') .setValue('input#fileUpload', testData.testFile1)
.click('*[data-id="fileExplorerUploadFileuploadFile"]') .setValue('input#fileUpload', testData.testFile2)
.setValue('input#fileUpload', testData.testFile3)
.waitForElementVisible('*[key="browser/editor.js"]')
.waitForElementVisible('*[key="browser/fileExplorer.js"]')
.waitForElementVisible('*[key="browser/generalSettings.js"]')
.end() .end()
}, },

Loading…
Cancel
Save