parent
aa46b4eb7f
commit
91ff8e8c98
@ -0,0 +1,66 @@ |
||||
'use strict' |
||||
import { NightwatchBrowser } from "nightwatch" |
||||
import init from '../helpers/init' |
||||
import sauce from './sauce' |
||||
|
||||
module.exports = { |
||||
before: function (browser: NightwatchBrowser, done: VoidFunction) { |
||||
init(browser, done) |
||||
}, |
||||
|
||||
'@sources': function () { |
||||
return [] |
||||
}, |
||||
|
||||
'Publish on IPFS': function (browser: NightwatchBrowser) { |
||||
browser |
||||
.waitForElementVisible('#icon-panel', 10000) |
||||
.clickLaunchIcon('fileExplorers') |
||||
.openFile('browser/3_Ballot.sol') |
||||
.verifyContracts(['Ballot']) |
||||
.click('#publishOnIpfs') |
||||
.getModalBody((value, done) => { |
||||
if (value.indexOf('Metadata of "ballot" was published successfully.') === -1) browser.assert.fail('ipfs deploy failed', '', '') |
||||
if (value.indexOf('dweb:/ipfs') === -1) browser.assert.fail('ipfs deploy failed', '', '') |
||||
done() |
||||
}) |
||||
.modalFooterOKClick() |
||||
}, |
||||
|
||||
'Publish on Swarm': '' + function (browser: NightwatchBrowser) { |
||||
browser |
||||
.click('#publishOnSwarm') |
||||
.getModalBody((value, done) => { |
||||
if (value.indexOf('Metadata of "ballot" was successfully.') === -1) browser.assert.fail('swarm deploy failed', '', '') |
||||
if (value.indexOf('bzz') === -1) browser.assert.fail('swarm deploy failed', '', '') |
||||
done() |
||||
}) |
||||
.modalFooterOKClick() |
||||
}, |
||||
|
||||
'Should publish contract metadata to ipfs on deploy': function (browser: NightwatchBrowser) { |
||||
browser |
||||
.waitForElementVisible('#icon-panel') |
||||
.clickLaunchIcon('fileExplorers') |
||||
.openFile('browser/1_Storage.sol') |
||||
.clickLaunchIcon('udapp') |
||||
.waitForElementVisible('*[data-id="contractDropdownIpfsCheckbox"]') |
||||
.click('*[data-id="contractDropdownIpfsCheckbox"]') |
||||
.click('*[data-id="Deploy - transact (not payable)"]') |
||||
.pause(5000) |
||||
.assert.containsText('*[data-id="modalDialogModalBody"]', 'Metadata of "storage" was published successfully.') |
||||
.modalFooterOKClick() |
||||
}, |
||||
|
||||
'Should remember choice after page refresh': function (browser: NightwatchBrowser) { |
||||
browser |
||||
.refresh() |
||||
.openFile('browser/1_Storage.sol') |
||||
.clickLaunchIcon('udapp') |
||||
.waitForElementVisible('*[data-id="contractDropdownIpfsCheckbox"]') |
||||
.verify.elementPresent('*[data-id="contractDropdownIpfsCheckbox"]:checked') |
||||
.end() |
||||
}, |
||||
|
||||
tearDown: sauce |
||||
} |
Loading…
Reference in new issue