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
aa87e728
Commit
aa87e728
authored
Oct 08, 2021
by
Aniket-Engg
Committed by
Aniket
Oct 11, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable back remix-tests CLI unit tests
parent
6588aea6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
8 deletions
+21
-8
assert_ok_without_console_test.sol
...tests/tests/examples_0/assert_ok_without_console_test.sol
+13
-0
testRunner.cli.spec.ts
libs/remix-tests/tests/testRunner.cli.spec.ts
+8
-8
No files found.
libs/remix-tests/tests/examples_0/assert_ok_without_console_test.sol
0 → 100644
View file @
aa87e728
import "remix_tests.sol"; // this import is automatically injected by Remix.
contract AssertOkTest {
function okPassTest() public {
Assert.ok(true, "okPassTest passes");
}
function okFailTest() public {
Assert.ok(false, "okFailTest fails");
}
}
\ No newline at end of file
libs/remix-tests/tests/testRunner.cli.spec
_disabled
.ts
→
libs/remix-tests/tests/testRunner.cli.spec.ts
View file @
aa87e728
...
@@ -40,7 +40,7 @@ Commands:
...
@@ -40,7 +40,7 @@ Commands:
})
})
test
(
'remix-tests running a test file'
,
()
=>
{
test
(
'remix-tests running a test file'
,
()
=>
{
const
res
=
spawnSync
(
executablePath
,
[
resolve
(
__dirname
+
'/examples_0/assert_ok_test.sol'
)])
const
res
=
spawnSync
(
executablePath
,
[
resolve
(
__dirname
+
'/examples_0/assert_ok_
without_console_
test.sol'
)])
// match initial lines
// match initial lines
expect
(
res
.
stdout
.
toString
().
trim
()).
toMatch
(
/:: Running remix-tests - Unit testing for solidity ::/
)
expect
(
res
.
stdout
.
toString
().
trim
()).
toMatch
(
/:: Running remix-tests - Unit testing for solidity ::/
)
expect
(
res
.
stdout
.
toString
().
trim
()).
toMatch
(
/creation of library remix_tests.sol:Assert pending.../
)
expect
(
res
.
stdout
.
toString
().
trim
()).
toMatch
(
/creation of library remix_tests.sol:Assert pending.../
)
...
@@ -55,7 +55,7 @@ Commands:
...
@@ -55,7 +55,7 @@ Commands:
})
})
test
(
'remix-tests running a test file with custom compiler version'
,
()
=>
{
test
(
'remix-tests running a test file with custom compiler version'
,
()
=>
{
const
res
=
spawnSync
(
executablePath
,
[
'--compiler'
,
'0.7.4'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_test.sol'
)])
const
res
=
spawnSync
(
executablePath
,
[
'--compiler'
,
'0.7.4'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_
without_console_
test.sol'
)])
// match initial lines
// match initial lines
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Compiler version set to 0.7.4. Latest version is'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Compiler version set to 0.7.4. Latest version is'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Loading remote solc version v0.7.4+commit.3f05b770 ...'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Loading remote solc version v0.7.4+commit.3f05b770 ...'
)).
toBeTruthy
()
...
@@ -69,13 +69,13 @@ Commands:
...
@@ -69,13 +69,13 @@ Commands:
})
})
test
(
'remix-tests running a test file with unavailable custom compiler version (should fail)'
,
()
=>
{
test
(
'remix-tests running a test file with unavailable custom compiler version (should fail)'
,
()
=>
{
const
res
=
spawnSync
(
executablePath
,
[
'--compiler'
,
'1.10.4'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_test.sol'
)])
const
res
=
spawnSync
(
executablePath
,
[
'--compiler'
,
'1.10.4'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_
without_console_
test.sol'
)])
// match initial lines
// match initial lines
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'No compiler found in releases with version 1.10.4'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'No compiler found in releases with version 1.10.4'
)).
toBeTruthy
()
})
})
test
(
'remix-tests running a test file with custom EVM'
,
()
=>
{
test
(
'remix-tests running a test file with custom EVM'
,
()
=>
{
const
res
=
spawnSync
(
executablePath
,
[
'--evm'
,
'petersburg'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_test.sol'
)])
const
res
=
spawnSync
(
executablePath
,
[
'--evm'
,
'petersburg'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_
without_console_
test.sol'
)])
// match initial lines
// match initial lines
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'EVM set to petersburg'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'EVM set to petersburg'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
()).
toMatch
(
/:: Running remix-tests - Unit testing for solidity ::/
)
expect
(
res
.
stdout
.
toString
().
trim
()).
toMatch
(
/:: Running remix-tests - Unit testing for solidity ::/
)
...
@@ -88,7 +88,7 @@ Commands:
...
@@ -88,7 +88,7 @@ Commands:
})
})
test
(
'remix-tests running a test file by enabling optimization'
,
()
=>
{
test
(
'remix-tests running a test file by enabling optimization'
,
()
=>
{
const
res
=
spawnSync
(
executablePath
,
[
'--optimize'
,
'true'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_test.sol'
)])
const
res
=
spawnSync
(
executablePath
,
[
'--optimize'
,
'true'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_
without_console_
test.sol'
)])
// match initial lines
// match initial lines
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Optimization is enabled'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Optimization is enabled'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
()).
toMatch
(
/:: Running remix-tests - Unit testing for solidity ::/
)
expect
(
res
.
stdout
.
toString
().
trim
()).
toMatch
(
/:: Running remix-tests - Unit testing for solidity ::/
)
...
@@ -101,7 +101,7 @@ Commands:
...
@@ -101,7 +101,7 @@ Commands:
})
})
test
(
'remix-tests running a test file by enabling optimization and setting runs'
,
()
=>
{
test
(
'remix-tests running a test file by enabling optimization and setting runs'
,
()
=>
{
const
res
=
spawnSync
(
executablePath
,
[
'--optimize'
,
'true'
,
'--runs'
,
'300'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_test.sol'
)])
const
res
=
spawnSync
(
executablePath
,
[
'--optimize'
,
'true'
,
'--runs'
,
'300'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_
without_console_
test.sol'
)])
// match initial lines
// match initial lines
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Optimization is enabled'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Optimization is enabled'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Runs set to 300'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Runs set to 300'
)).
toBeTruthy
()
...
@@ -115,13 +115,13 @@ Commands:
...
@@ -115,13 +115,13 @@ Commands:
})
})
test
(
'remix-tests running a test file without enabling optimization and setting runs (should fail)'
,
()
=>
{
test
(
'remix-tests running a test file without enabling optimization and setting runs (should fail)'
,
()
=>
{
const
res
=
spawnSync
(
executablePath
,
[
'--runs'
,
'300'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_test.sol'
)])
const
res
=
spawnSync
(
executablePath
,
[
'--runs'
,
'300'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_
without_console_
test.sol'
)])
// match initial lines
// match initial lines
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Optimization should be enabled for runs'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Optimization should be enabled for runs'
)).
toBeTruthy
()
})
})
test
(
'remix-tests running a test file with all options'
,
()
=>
{
test
(
'remix-tests running a test file with all options'
,
()
=>
{
const
res
=
spawnSync
(
executablePath
,
[
'--compiler'
,
'0.7.5'
,
'--evm'
,
'istanbul'
,
'--optimize'
,
'true'
,
'--runs'
,
'250'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_test.sol'
)])
const
res
=
spawnSync
(
executablePath
,
[
'--compiler'
,
'0.7.5'
,
'--evm'
,
'istanbul'
,
'--optimize'
,
'true'
,
'--runs'
,
'250'
,
resolve
(
__dirname
+
'/examples_0/assert_ok_
without_console_
test.sol'
)])
// match initial lines
// match initial lines
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Compiler version set to 0.7.5. Latest version is'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Compiler version set to 0.7.5. Latest version is'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Loading remote solc version v0.7.5+commit.eb77ed08 ...'
)).
toBeTruthy
()
expect
(
res
.
stdout
.
toString
().
trim
().
includes
(
'Loading remote solc version v0.7.5+commit.eb77ed08 ...'
)).
toBeTruthy
()
...
...
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