Using Retesteth

Command Line Options

Note

There has to be a double dash (--) between the -t option that sets the suite and all the other options.

Set The Suite

Option Meaning
-t <TestSuite> Run all the tests in that suite
-t <TestSuite>/<Test Case Folder> Run a specific test case folder (for GeneralStateTests)
-t <TestSuite>/<Test Type>/<Test Case Folder> Run a specific test case folder (for BlockchainTests)

Note

In BlockchainTests there are three possible values for the test type:

  • ValidBlocks
  • InvalidBlocks
  • TransitionTests

Retesteth Options

Option Meaning
-j <ThreadNumber> Run test execution using threads
--clients client1, client2 Use following configurations from datadir path (default: ~/.retesteth)
--datadir Path to configs (default: ~/.retesteth)
--nodes List of client tcp ports (“addr:ip, addr:ip”)
--help -h Display list of command arguments
--version -v Display build information
--list Display available test suites
--testfolder Use to create a new test folder inside the suite. Not compatible with using a test case folder

Note

Setting --nodes overrides the socketAddress section of the config file, documented here.

Setting the Test Suite and Test

Option Meaning
--testpath <PathToTheTestRepo> Set path to the test repo
--filloutdated Run only those tests that have changed fillers
--testfile <TestFile> Run tests from a file. Requires -t <TestSuite>
--singletest <TestName> Run on a single test. Testname is the filename without Filler.<type> (either json or yml)
--singletest <TestName>/<Subtest> Subtest is a test name inside the file.

Note

<Subtest> is only relevant in BlockchainTests. Other test suites do not support files with multiple test names.

Debugging

Option Meaning
-d <index> Set the transaction data array index when running GeneralStateTests
-g <index> Set the transaction gas array index when running GeneralStateTests
-v <index> Set the transaction value array index when running GeneralStateTests
--vmtraceraw [<folder>] Trace transaction execution (see note)
--vmtrace Trace transaction execution, simplified version
--limitblocks <num> Limit the block execution in blockchain tests for debugging to the first <num> blocks
--limitrpc Limit the rpc execution in tests for debug
--verbosity <level> Set logs verbosity. 0 - silent, 1 - only errors, 2 - informative, >2 - detailed
--exectimelog Output execution time for each test suite
--stderr Redirect ipc client stderr to stdout
--travisout Output `.` to stdout
--statediff State changes between before and after the test

Note

Normally the --vmtraceraw output goes to standard output. However, you could specify a directory name and it would get written there (under a different file name for every fork, data value, etc.). If you are using docker that directory is in the folder, so it is easiest to use a directory such as /tests/results (because /tests on the docker is the tests repository on a file system outside the docker).

Blockchain test debugging

Blockchain tests contain multiple transactions, so to debug them it is useful to look between transactions.

Option Meaning
--statediff <a>to<c> State changes from just after block a to just after block c. The first block is numbered 1
--statediff <a>:<b>to<c>:<d> State changes from just after tx b on block a to just before tx d on block c. The first transaction in a block is numbered zero.
--poststate <a> The state changes just after block a
--poststate <a>:<b> The state just after tx b on block a
--vmtrace[raw] <a>:<b> Trace a specific transaction

Note

You can only view the state in the middle of a block (--statediff --poststate when you use --filltests. Otherwise only the state at the end of blocks is available.

Test Generation

Option Meaning
--filltests Run test fillers
--fillchain When filling the state tests, fill tests as blockchain instead
--showhash Show filler hash debug information
--poststate [<folder>] Show post state hash or fullstate Normally goes to output, but if a folder is specified written to that folder. If you use Docker, those are on the image, so it’s best to use /test/….
--fullstate Do not compress large states to hash

Note

Normally the --poststate output goes to standard output. However, you could specify a directory name and it would get written there (under a different file name for every fork, data value, etc.). If you are using docker that directory is in the folder, so it is easiest to use a directory such as /tests/results (because /tests on the docker is the tests repository on a file system outside the docker).

Examples

These examples assume you configured your environment the way it was shown in the tutorial and that you are in your home directory. If you used different directories, or did not use docker, the commands will be slightly different.

  1. Run state tests:

    ./dretesteth.sh -t GeneralStateTests -- --testpath ~/tests
    

    Run multiple tests simultaneously:

    ./dretesteth.sh -t GeneralStateTests -- --testpath ~/tests -j 8
    
  2. Run blockchain tests:

    ./dretesteth.sh -t BlockchainTests -- --testpath ~/tests
    

    Run only the valid blocks tests:

    ./dretesteth.sh -t BlockchainTests/ValidBlocks -- --testpath ~/tests
    

    Run only the invalid blocks tests:

    ./dretesteth.sh -t BlockchainTests/InvalidBlocks -- --testpath ~/tests
    

    Run only a specific suite of tests:

    ./dretesteth.sh -t BlockchainTests/ValidBlocks/bcGasPricerTest \
         -- --testpath ~/tests
    

    Run only the tests in a specific file (typically there would only be one):

    ./dretesteth.sh -t BlockchainTests/ValidBlocks/bcGasPricerTest \
         -- --testpath ~/tests --singletest highGasUsage
    

    Run a specific test from a specific file:

    ./dretesteth.sh -t BlockchainTests/InvalidBlocks/bcForgedTest \
         -- --testpath ~/tests \
         --singletest bcBlockRLPAsList/BLOCK_difficulty_GivenAsList_Byzantium
    
  3. Run transition tests (tests that verify the transition from one fork to the next is implemented correctly):

    ./dretesteth.sh -t BlockchainTests/TransitionTests -- --testpath ~/tests
    

    Run the tests for a specific transition (in this case Byzantium to ConstantinopleFix):

    ./dretesteth.sh -t \
      BlockchainTests/TransitionTests/bcByzantiumToConstantinopleFix -- \
      --testpath ~/tests
    

    Note

    Not all transitions have associated test cases. To see which test cases are available, run:

    ls tests/BlockchainTests/TransitionTests
    
  4. Run a test from your own file:

    ./dretesteth.sh -t GeneralStateTests -- --testpath ~/tests \
        --testfile tests/GeneralStateTests/stExample/add11.json
    

    Note

    In this case the test is part of the test suite and there are easier ways to run it. However, you can use --testfile for files that are located elsewhere. You can mount any directory inside the docker (using --testpath), and it will appear in the docker as /tests.

  5. Fill tests. So far all of the examples have been using the generated, filled test files. However, you can also use the test source code (a.k.a. the filler version).

    Fill (and run) a test that is part of the test suite (in this case, tests/GeneralStateTests/stExample/add11, whose source code is tests/src/GeneralStateTestsFiller/stExample/add11Filler.json):

    ./dretesteth.sh -t GeneralStateTests/stExample -- \
      --testpath ~/tests --singletest add11 --filltests
    

    Combine this option with --testfile to fill and run your own tests:

    ./dretesteth.sh -t GeneralStateTests -- --testpath ~ --filltests \
        --testfile tests/tests/docs/tutorial_samples/01_add22Filler.yml
    
  6. Run a test on a specific network (fork, such as Istanbul or Berlin):

    ./dretesteth.sh -t BlockchainTests/ValidBlocks/bcStateTests -- \
        --testpath ~/tests --singletest simpleSuicide --filltests  \
        --singlenet Berlin
    

    Note

    The generated files usually contain tests for the current fork. If you want to test a different fork, as we do here, it may be necessary to use --filltests.

  7. Run a single test from a multitest file. The actual values come from the test file, the parameters you specify (-d, -g, and -v) are indexes into their respective lists (data, gas, and transaction value):

    ./dretesteth.sh -t GeneralStateTests -- --testpath ~/tests --filltests \
       --testfile /tests/docs/tutorial_samples/04_multitestFiller.yml -d 1
    
  8. Run a test and produce a trace of the Ethererum Virtual Machine::

    ./dretesteth.sh -t GeneralStateTests/stExample -- \
         --testpath ~/tests --vmtrace
    

    Produce a more detailed, but less readable, trace:

    ./dretesteth.sh -t GeneralStateTests/stExample -- \
         --testpath ~/tests --vmtraceraw
    
  9. Run a test and dump the state (accounts balances, storage, etc.) at the end of it:

    ./dretesteth.sh -t GeneralStateTests/stExample -- --testpath ~/tests --poststate