Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
307715b4
Commit
307715b4
authored
Aug 03, 2020
by
ioedeveloper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added solidityImport tests
parent
4cd6f80f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
111 additions
and
11 deletions
+111
-11
addAtAddressInstance.ts
apps/remix-ide-e2e/src/commands/addAtAddressInstance.ts
+1
-1
setEditorValue.ts
apps/remix-ide-e2e/src/commands/setEditorValue.ts
+1
-1
setSolidityCompilerVersion.ts
.../remix-ide-e2e/src/commands/setSolidityCompilerVersion.ts
+16
-0
solidityImport.test.ts
apps/remix-ide-e2e/src/tests/solidityImport.test.ts
+89
-0
index.d.ts
apps/remix-ide-e2e/src/types/index.d.ts
+3
-7
tsconfig.json
apps/remix-ide-e2e/tsconfig.json
+1
-2
No files found.
apps/remix-ide-e2e/src/commands/addAtAddressInstance.ts
View file @
307715b4
...
...
@@ -3,7 +3,7 @@ import EventEmitter from "events"
class
addAtAddressInstance
extends
EventEmitter
{
command
(
this
:
NightwatchBrowser
,
address
:
string
,
isValidFormat
:
boolean
,
isValidChecksum
:
boolean
):
NightwatchBrowser
{
this
.
api
.
perform
((
done
)
=>
{
this
.
api
.
perform
((
done
:
VoidFunction
)
=>
{
addInstance
(
this
.
api
,
address
,
isValidFormat
,
isValidChecksum
,
()
=>
{
done
()
this
.
emit
(
'complete'
)
...
...
apps/remix-ide-e2e/src/commands/setEditorValue.ts
View file @
307715b4
import
{
NightwatchBrowser
}
from
'nightwatch'
import
EventEmitter
from
"events"
import
EventEmitter
from
'events'
class
SetEditorValue
extends
EventEmitter
{
command
(
this
:
NightwatchBrowser
,
value
:
string
,
callback
?:
VoidFunction
):
NightwatchBrowser
{
...
...
apps/remix-ide-e2e/src/commands/setSolidityCompilerVersion.ts
0 → 100644
View file @
307715b4
import
{
NightwatchBrowser
}
from
'nightwatch'
import
EventEmitter
from
'events'
class
SetSolidityCompilerVersion
extends
EventEmitter
{
command
(
this
:
NightwatchBrowser
,
version
:
string
):
NightwatchBrowser
{
this
.
api
.
click
(
`#compileTabView #versionSelector [value="
${
version
}
"]`
)
.
pause
(
5000
)
.
perform
(()
=>
{
this
.
emit
(
'complete'
)
})
return
this
}
}
module
.
exports
=
SetSolidityCompilerVersion
apps/remix-ide-e2e/src/tests/solidityImport.test.ts
0 → 100644
View file @
307715b4
'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
sources
},
'Test Simple Contract'
:
function
(
browser
:
NightwatchBrowser
)
{
browser
.
testContracts
(
'Untitled.sol'
,
sources
[
0
][
'browser/Untitled.sol'
],
[
'test1'
,
'test2'
])
},
'Test Success Import'
:
function
(
browser
:
NightwatchBrowser
)
{
browser
.
addFile
(
'Untitled1.sol'
,
sources
[
1
][
'browser/Untitled1.sol'
])
.
addFile
(
'Untitled2.sol'
,
sources
[
1
][
'browser/Untitled2.sol'
])
.
openFile
(
'browser/Untitled1.sol'
)
.
verifyContracts
([
'test6'
,
'test4'
,
'test5'
])
},
'Test Failed Import'
:
function
(
browser
:
NightwatchBrowser
)
{
browser
.
addFile
(
'Untitled3.sol'
,
sources
[
2
][
'browser/Untitled3.sol'
])
.
clickLaunchIcon
(
'solidity'
)
.
assert
.
containsText
(
'#compileTabView .error pre'
,
'not found browser/Untitled11.sol'
)
},
'Test Github Import - from master branch'
:
function
(
browser
:
NightwatchBrowser
)
{
browser
.
setSolidityCompilerVersion
(
'soljson-v0.6.2+commit.bacdbe57.js'
)
// open-zeppelin moved to pragma ^0.6.0 (master branch)
.
addFile
(
'Untitled4.sol'
,
sources
[
3
][
'browser/Untitled4.sol'
])
.
clickLaunchIcon
(
'fileExplorers'
)
.
verifyContracts
([
'test7'
,
'ERC20'
,
'SafeMath'
],
{
wait
:
10000
})
},
'Test Github Import - from other branch'
:
function
(
browser
:
NightwatchBrowser
)
{
browser
.
setSolidityCompilerVersion
(
'soljson-v0.5.0+commit.1d4f565a.js'
)
// switch back to 0.5.0 : release-v2.3.0 branch is not solidity 0.6 compliant
.
addFile
(
'Untitled5.sol'
,
sources
[
4
][
'browser/Untitled5.sol'
])
.
clickLaunchIcon
(
'fileExplorers'
)
.
verifyContracts
([
'test8'
,
'ERC20'
,
'SafeMath'
],
{
wait
:
10000
})
},
'Test Github Import - no branch specified'
:
function
(
browser
:
NightwatchBrowser
)
{
browser
.
setSolidityCompilerVersion
(
'soljson-v0.6.2+commit.bacdbe57.js'
)
// open-zeppelin moved to pragma ^0.6.0 (master branch)
.
addFile
(
'Untitled6.sol'
,
sources
[
5
][
'browser/Untitled6.sol'
])
.
clickLaunchIcon
(
'fileExplorers'
)
.
verifyContracts
([
'test10'
,
'ERC20'
,
'SafeMath'
],
{
wait
:
10000
})
},
'Test Github Import - raw URL'
:
function
(
browser
:
NightwatchBrowser
)
{
browser
.
addFile
(
'Untitled7.sol'
,
sources
[
6
][
'browser/Untitled7.sol'
])
.
clickLaunchIcon
(
'fileExplorers'
)
.
verifyContracts
([
'test11'
,
'ERC20'
,
'SafeMath'
],
{
wait
:
10000
})
.
end
()
},
tearDown
:
sauce
}
const
sources
=
[
{
'browser/Untitled.sol'
:
{
content
:
'contract test1 {} contract test2 {}'
}
},
{
'browser/Untitled1.sol'
:
{
content
:
'import "./Untitled2.sol"; contract test6 {}'
},
'browser/Untitled2.sol'
:
{
content
:
'contract test4 {} contract test5 {}'
}
},
{
'browser/Untitled3.sol'
:
{
content
:
'import "./Untitled11.sol"; contract test6 {}'
}
},
{
'browser/Untitled4.sol'
:
{
content
:
'import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol"; contract test7 {}'
}
},
{
'browser/Untitled5.sol'
:
{
content
:
'import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v2.3.0/contracts/token/ERC20/ERC20.sol"; contract test8 {}'
}
},
{
'browser/Untitled6.sol'
:
{
content
:
'import "https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; contract test10 {}'
}
},
{
'browser/Untitled7.sol'
:
{
content
:
'import "https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC20/ERC20.sol"; contract test11 {}'
}
}
]
apps/remix-ide-e2e/src/types/index.d.ts
View file @
307715b4
...
...
@@ -11,7 +11,7 @@ declare module "nightwatch" {
testContracts
(
fileName
:
string
,
contractCode
:
NightwatchContractContent
,
compiledContractNames
:
string
[]):
NightwatchBrowser
,
setEditorValue
(
value
:
string
,
callback
?:
()
=>
void
):
NightwatchBrowser
,
addFile
(
name
:
string
,
content
:
NightwatchContractContent
):
NightwatchBrowser
,
verifyContracts
(
compiledContractNames
:
string
[],
opts
?:
{
wait
:
number
,
version
:
string
}):
NightwatchBrowser
,
verifyContracts
(
compiledContractNames
:
string
[],
opts
?:
{
wait
:
number
,
version
?
:
string
}):
NightwatchBrowser
,
selectAccount
(
account
?:
string
):
NightwatchBrowser
,
clickFunction
(
fnFullName
:
string
,
expectedInput
?:
NightwatchClickFunctionExpectedInput
):
NightwatchBrowser
,
testFunction
(
txHash
:
string
,
expectedInput
:
NightwatchTestFunctionExpectedInput
):
NightwatchBrowser
,
...
...
@@ -44,7 +44,8 @@ declare module "nightwatch" {
removeFile
(
path
:
string
):
NightwatchBrowser
,
switchBrowserWindow
(
url
:
string
,
windowName
:
string
,
cb
:
(
browser
:
NightwatchBrowser
,
window
?:
NightwatchCallbackResult
<
Window
>
)
=>
void
):
NightwatchBrowser
,
setupMetamask
(
passphrase
:
string
,
password
:
string
):
NightwatchBrowser
,
signMessage
(
msg
:
string
,
callback
:
(
hash
:
{
value
:
string
},
signature
:
{
value
:
string
})
=>
void
):
NightwatchBrowser
signMessage
(
msg
:
string
,
callback
:
(
hash
:
{
value
:
string
},
signature
:
{
value
:
string
})
=>
void
):
NightwatchBrowser
,
setSolidityCompilerVersion
(
version
:
string
):
NightwatchBrowser
}
export
interface
NightwatchBrowser
{
...
...
@@ -58,11 +59,6 @@ declare module "nightwatch" {
content
:
string
;
}
export
interface
NightwatchVerifyContractOpts
{
wait
:
number
,
version
?:
string
}
export
interface
NightwatchClickFunctionExpectedInput
{
types
:
string
,
values
:
string
...
...
apps/remix-ide-e2e/tsconfig.json
View file @
307715b4
...
...
@@ -2,8 +2,7 @@
"extends"
:
"../../tsconfig.json"
,
"compilerOptions"
:
{
"types"
:
[
"node"
,
"nightwatch"
],
"esModuleInterop"
:
true
,
"strict"
:
true
"esModuleInterop"
:
true
},
"include"
:
[
"**/*.ts"
,
"**/*.js"
]
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment