Skip to content

Commit

Permalink
update tests to include 1 for checking if the console works
Browse files Browse the repository at this point in the history
  • Loading branch information
ryestew committed Jul 1, 2019
1 parent 32ae568 commit a13feb3
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ To run the Selenium tests via Nightwatch:
- npm run nightwatch_local_staticAnalysis
- npm run nightwatch_local_signingMessage

- npm run nightwatch_local_console
- npm run nightwatch_local_remixd # remixd needs to be run
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@
"nightwatch_local_staticAnalysis": "nightwatch ./test-browser/tests/staticanalysis.js --config nightwatch.js --env chrome ",
"nightwatch_local_signingMessage": "nightwatch ./test-browser/tests/signingMessage.js --config nightwatch.js --env chrome ",
"nightwatch_local_remixd": "nightwatch ./test-browser/tests/remix.js --config nightwatch.js --env chrome ",
"nightwatch_local_console": "nightwatch ./test-browser/tests/console.js --config nightwatch.js --env chrome ",
"onchange": "onchange build/app.js -- npm-run-all lint",
"prepublish": "mkdirp build; npm-run-all -ls downloadsolc_root build",
"remixd": "remixd -s ./contracts --remix-ide http://127.0.0.1:8080",
Expand Down
5 changes: 3 additions & 2 deletions src/app/panels/terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,16 +109,17 @@ class Terminal extends BaseApi {
render () {
var self = this
if (self._view.el) return self._view.el
self._view.journal = yo`<div class=${css.journal}></div>`
self._view.journal = yo`<div id="journal" class=${css.journal}></div>`
self._view.input = yo`
<span class=${css.input} onload=${() => { this.focus() }} onpaste=${paste} onkeydown=${change}></span>
`
self._view.input.setAttribute('spellcheck', 'false')
self._view.input.setAttribute('contenteditable', 'true')
self._view.input.setAttribute('id', 'terminalCliInput')

self._view.input.innerText = '\n'
self._view.cli = yo`
<div class="${css.cli}">
<div id="terminalCli" class="${css.cli}">
<span class=${css.prompt}>${'>'}</span>
${self._view.input}
</div>
Expand Down
15 changes: 15 additions & 0 deletions test-browser/commands/executeScript.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
const EventEmitter = require('events')

class ExecuteScript extends EventEmitter {
command (script) {
this.api
.click('#terminalCli')
.keys(script)
.perform(() => {
this.emit('complete')
})
return this
}
}

module.exports = ExecuteScript
13 changes: 13 additions & 0 deletions test-browser/commands/journalLastChild.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const EventEmitter = require('events')

class JournalLastChild extends EventEmitter {
command (val) {

this.api.assert.containsText('#journal div:last-child span.text-info', val).perform(() => {
this.emit('complete')
})
return this
}
}

module.exports = JournalLastChild
18 changes: 18 additions & 0 deletions test-browser/tests/console.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
'use strict'
var init = require('../helpers/init')
var sauce = require('./sauce')

module.exports = {
before: function (browser, done) {
init(browser, done)
},
'SimpleExecutionConsole': function (browser) {
browser
.waitForElementVisible('#terminalCli', 10000)
.executeScript(['\uE01B','\uE025','\uE01B','\uE006','\uE006','\uE006'])
.waitForElementVisible('#journal div:last-child span.text-info', 10000)
.journalLastChild('2')
.end()
},
tearDown: sauce
}

0 comments on commit a13feb3

Please sign in to comment.