remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/test-browser/tests/remixd.js

118 lines
5.0 KiB

7 years ago
'use strict'
var init = require('../helpers/init')
var sauce = require('./sauce')
7 years ago
var assetsTestContract = `import "./contract.sol";
contract Assets {
uint[] proposals;
6 years ago
function add(uint8 _numProposals) public {
7 years ago
proposals.length = _numProposals;
}
}
`
6 years ago
var gmbhTestContract = `contract gmbh {
7 years ago
uint[] proposals;
6 years ago
function register(uint8 _numProposals) public {
7 years ago
proposals.length = _numProposals;
}
}
`
var sources = [
{
6 years ago
'localhost/folder1/contract2.sol': {content: 'contract test2 { function get () public returns (uint) { return 11; }}'}
7 years ago
},
{
'localhost/src/gmbh/company.sol': {content: assetsTestContract}
},
{
'localhost/src/gmbh/company.sol': {content: assetsTestContract},
'localhost/src/gmbh/contract.sol': {content: gmbhTestContract}
}
]
7 years ago
module.exports = {
before: function (browser, done) {
init(browser, done)
},
'@sources': function () {
return sources
},
'Remixd': function (browser) {
7 years ago
runTests(browser)
},
tearDown: sauce
}
function runTests (browser, testData) {
7 years ago
var browserName = browser.options.desiredCapabilities.browserName
if (browserName === 'safari' || browserName === 'internet explorer') {
console.log('do not run remixd test for ' + browserName + ': sauce labs doesn\'t seems to handle websocket')
7 years ago
browser.end()
return
}
if (browserName === 'firefox') {
console.log('do not run remixd test for ' + browserName + ': TODO to reenable later')
browser.end()
return
}
7 years ago
browser
5 years ago
.waitForElementVisible('#icon-panel', 2000)
.clickLaunchIcon('fileExplorers')
5 years ago
.clickLaunchIcon('pluginManager')
.click('#pluginManager article[id="remixPluginManagerListItem_remixd"] button')
.waitForElementVisible('#modal-footer-ok', 2000)
5 years ago
.pause(2000)
.click('#modal-footer-ok')
5 years ago
.clickLaunchIcon('fileExplorers')
7 years ago
.waitForElementVisible('[data-path="localhost/folder1"]')
7 years ago
.click('[data-path="localhost/folder1"]')
7 years ago
.waitForElementVisible('[data-path="localhost/contract1.sol"]')
7 years ago
.assert.containsText('[data-path="localhost/contract1.sol"]', 'contract1.sol')
.assert.containsText('[data-path="localhost/contract2.sol"]', 'contract2.sol')
7 years ago
.waitForElementVisible('[data-path="localhost/folder1/contract1.sol"]')
7 years ago
.assert.containsText('[data-path="localhost/folder1/contract1.sol"]', 'contract1.sol')
7 years ago
.assert.containsText('[data-path="localhost/folder1/contract2.sol"]', 'contract2.sol') // load and test sub folder
7 years ago
.click('[data-path="localhost/folder1/contract2.sol"]')
7 years ago
.click('[data-path="localhost/folder1/contract1.sol"]') // open localhost/folder1/contract1.sol
.pause(1000)
.testEditorValue('contract test1 { function get () returns (uint) { return 10; }}') // check the content and replace by another
.setEditorValue('contract test1Changed { function get () returns (uint) { return 10; }}')
.testEditorValue('contract test1Changed { function get () returns (uint) { return 10; }}')
.setEditorValue('contract test1 { function get () returns (uint) { return 10; }}')
7 years ago
.click('[data-path="localhost/folder1/contract_' + browserName + '.sol"]') // rename a file and check
.pause(1000)
.renameFile('localhost/folder1/contract_' + browserName + '.sol', 'renamed_contract_' + browserName + '.sol', 'localhost/folder1/renamed_contract_' + browserName + '.sol')
7 years ago
.pause(1000)
.removeFile('localhost/folder1/contract_' + browserName + '_toremove.sol')
7 years ago
.perform(function (done) {
testImportFromRemixd(browser, () => { done() })
})
.clickLaunchIcon('fileExplorers').click('[data-path="localhost"]') // collapse and expand
.waitForElementNotVisible('[data-path="localhost/folder1"]')
.click('[data-path="localhost"]')
.waitForElementVisible('[data-path="localhost/folder1"]')
.click('[data-path="localhost/folder1"]')
.waitForElementVisible('[data-path="localhost/folder1/contract1.sol"]')
.waitForElementVisible('[data-path="localhost/folder1/renamed_contract_' + browserName + '.sol"]') // check if renamed file is preset
.waitForElementNotPresent('[data-path="localhost/folder1/contract_' + browserName + '.sol"]') // check if renamed (old) file is not present
.waitForElementNotPresent('[data-path="localhost/folder1/contract_' + browserName + '_toremove.sol"]') // check if removed (old) file is not present
.click('[data-path="localhost/folder1/renamed_contract_' + browserName + '.sol"]')
.clickLaunchIcon('pluginManager')
.click('#pluginManager article[id="remixPluginManagerListItem_remixd"] button')
.end()
7 years ago
}
7 years ago
function testImportFromRemixd (browser, callback) {
browser
.waitForElementVisible('[data-path="localhost/src"]', 100000)
.click('[data-path="localhost/src"]')
.waitForElementVisible('[data-path="localhost/src/gmbh"]', 100000)
.click('[data-path="localhost/src/gmbh"]')
.waitForElementVisible('[data-path="localhost/src/gmbh/company.sol"]', 100000)
.click('[data-path="localhost/src/gmbh/company.sol"]')
.pause(1000)
.verifyContracts(['Assets', 'gmbh'])
.perform(() => { callback() })
7 years ago
}