wownero/tests
moneromooo-monero 34884a4b00 store outPk/8 in the tx for speed
It avoids dividing by 8 when deserializing a tx, which is a slow
operation, and multiplies by 8 when verifying and extracing the
amount, which is much faster as well as less frequent
2021-08-30 00:18:45 +03:00
..
block_weight Update copyright year to 2020 2020-05-06 22:36:54 -04:00
core_proxy protocol: more sanity checks in new chain block hashes 2020-12-31 23:34:26 +00:00
core_tests store outPk/8 in the tx for speed 2021-08-30 00:18:45 +03:00
crypto crypto: fix non zero scalar being 0 after reducing 2020-12-04 01:00:22 +00:00
daemon_tests Update copyright year to 2020 2020-05-06 22:36:54 -04:00
data replace most boost serialization with existing monero serialization 2020-08-17 16:23:58 +00:00
difficulty initial commit 2021-08-29 23:56:47 +03:00
functional_tests Merge pull request #6111 2020-09-06 15:49:37 +02:00
fuzz fix serialization being different on mac 2021-03-05 23:41:19 +00:00
gtest Made code block usage consistent across all .md files 2019-05-12 05:16:26 +01:00
hash Update copyright year to 2020 2020-05-06 22:36:54 -04:00
libwallet_api_tests Update copyright year to 2020 2020-05-06 22:36:54 -04:00
net_load_tests add a max levin packet size by command type 2021-01-03 14:07:58 +00:00
performance_tests Bulletproofs+ 2021-08-30 00:11:56 +03:00
trezor enable CLSAG support for Trezor client 2020-09-04 01:24:58 +02:00
unit_tests plug bulletproofs plus into consensus 2021-08-30 00:17:37 +03:00
CMakeLists.txt Support for supercop ASM in wallet, and benchmark for supercop 2020-05-16 10:25:17 +00:00
README.md initial commit 2021-08-29 23:56:47 +03:00
benchmark.cpp Support for supercop ASM in wallet, and benchmark for supercop 2020-05-16 10:25:17 +00:00
benchmark.h.in Support for supercop ASM in wallet, and benchmark for supercop 2020-05-16 10:25:17 +00:00
cryptolib.pl Update copyright year to 2020 2020-05-06 22:36:54 -04:00
cryptotest.pl Update copyright year to 2020 2020-05-06 22:36:54 -04:00
hash-target.cpp Update copyright year to 2020 2020-05-06 22:36:54 -04:00
io.h Update copyright year to 2020 2020-05-06 22:36:54 -04:00

README.md

Running all tests

To run all tests, run:

cd /path/to/wownero
make [-jn] debug-test # where n is number of compiler processes

To test a release build, replace debug-test with release-test in the previous command.

Core tests

Core tests take longer than any other Wownero tests, due to the high amount of computational work involved in validating core components.

Tests are located in tests/core_tests/, and follow a straightforward naming convention. Most cases cover core functionality (block_reward.cpp, chaingen.cpp, rct.cpp, etc.), while some cover basic security tests (double_spend.cpp & integer_overflow.cpp).

To run only Wownero's core tests (after building):

cd build/debug/tests/core_tests
ctest

To run the same tests on a release build, replace debug with release.

Crypto Tests

Crypto tests are located under the tests/crypto directory.

  • crypto-tests.h contains test harness headers
  • main.cpp implements the driver for the crypto tests

Tests correspond to components under src/crypto/. A quick comparison reveals the pattern, and new tests should continue the naming convention.

To run only Wownero's crypto tests (after building):

cd build/debug/tests/crypto
ctest

To run the same tests on a release build, replace debug with release.

Daemon tests

[TODO]

Functional tests

[TODO] Functional tests are located under the tests/functional directory.

First, run a regtest daemon in the offline mode and with a fixed difficulty:

wownerod --regtest --offline --fixed-difficulty 1

Alternatively, you can run multiple daemons and let them connect with each other by using --add-exclusive-node. In this case, make sure that the same fixed difficulty is given to all the daemons.

Next, restore a mainnet wallet with the following seed and restore height 0 (the file path doesn't matter):

velvet lymph giddy number token physics poetry unquoted nibs useful sabotage limits benches lifestyle eden nitrogen anvil fewest avoid batch vials washing fences goat unquoted

Open the wallet file with monero-wallet-rpc with RPC port 18083. Finally, start tests by invoking ./blockchain.py or ./speed.py

Fuzz tests

Fuzz tests are written using American Fuzzy Lop (AFL), and located under the tests/fuzz directory.

An additional helper utility is provided contrib/fuzz_testing/fuzz.sh. AFL must be installed, and some additional setup may be necessary for the script to run properly.

Hash tests

Hash tests exist under tests/hash, and include a set of target hashes in text files.

To run only Wownero's hash tests (after building):

cd build/debug/tests/hash
ctest

To run the same tests on a release build, replace debug with release.

Libwallet API tests

[TODO]

Net Load tests

[TODO]

Performance tests

Performance tests are located in tests/performance_tests, and test features for performance metrics on the host machine.

To run only Wownero's performance tests (after building):

cd build/debug/tests/performance_tests
./performance_tests

The path may be build/Linux/master/debug (adapt as necessary for your platform).

If the performance_tests binary does not exist, try running make in the build/debug/tests/performance_tests directory.

To run the same tests on a release build, replace debug with release.

Unit tests

Unit tests are defined under the tests/unit_tests directory. Independent components are tested individually to ensure they work properly on their own.

To run only Wownero's unit tests (after building):

cd build/debug/tests/unit_tests
ctest

To run the same tests on a release build, replace debug with release.

Writing new tests

Test hygiene

When writing new tests, please implement all functions in .cpp or .c files, and only put function headers in .h files. This will help keep the fairly complex test suites somewhat sane going forward.

Writing fuzz tests

[TODO]