oxen-core/tests
2017-09-19 15:09:38 -06:00
..
core_proxy Add a --fluffy-blocks option to relay blocks as fluffy blocks 2017-09-03 11:11:11 +01:00
core_tests core_tests: fix tests failing due to new txpool code requitring batch transactions 2017-06-09 20:49:59 +01:00
crypto changed crypto to cncrypto so it generated libcncrypto 2017-05-23 07:45:40 -04:00
daemon_tests changed crypto to cncrypto so it generated libcncrypto 2017-05-23 07:45:40 -04:00
data Add fuzz testing using american fuzzy lop 2017-06-24 16:46:18 +01:00
difficulty update copyright year, fix occasional lack of newline at line end 2017-02-21 19:38:18 +02:00
functional_tests changed crypto to cncrypto so it generated libcncrypto 2017-05-23 07:45:40 -04:00
fuzz Revert "Cleanup test impact of moving blockchain_db_types()" 2017-08-29 13:28:16 +01:00
gtest updated gtest (added missing files) 2016-01-25 21:19:57 +02:00
hash changed crypto to cncrypto so it generated libcncrypto 2017-05-23 07:45:40 -04:00
libwallet_api_tests update copyright year, fix occasional lack of newline at line end 2017-02-21 19:38:18 +02:00
net_load_tests update copyright year, fix occasional lack of newline at line end 2017-02-21 19:38:18 +02:00
performance_tests changed crypto to cncrypto so it generated libcncrypto 2017-05-23 07:45:40 -04:00
unit_tests Added test documentation & Keccak unit test 2017-09-19 15:08:38 -06:00
CMakeLists.txt Add fuzz testing using american fuzzy lop 2017-06-24 16:46:18 +01:00
cryptolib.pl update copyright year, fix occasional lack of newline at line end 2017-02-21 19:38:18 +02:00
cryptotest.pl update copyright year, fix occasional lack of newline at line end 2017-02-21 19:38:18 +02:00
hash-target.cpp update copyright year, fix occasional lack of newline at line end 2017-02-21 19:38:18 +02:00
io.h update copyright year, fix occasional lack of newline at line end 2017-02-21 19:38:18 +02:00
README.md Added test documentation & Keccak unit test 2017-09-19 15:09:38 -06:00

Crypto tests

Running crypto Perl tests

Crypto tests require the Math::GMP Perl library, make sure it is installed on you system before running the tests.

Installing dependencies (using cpan):

cpan
cpan> install Math::BigInt::GMP
cpan> install Digest::Keccak

Running tests:

TESTPATH=/path/to/monero/tests
cd $TESTPATH
perl -I $TESTPATH cryptotest.pl

Important: must include test path for perl to import cryptolib.pl

Writing new crypto tests

[TODO]

Core tests

Running core tests

Monero uses the Google C++ Testing Framework (gtest) to write unit, integration and functional tests for core and other features of the project. gtest runs on top of cmake, and you can run all tests by:

cd /path/to/monero
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.

One can also run individual test suites by building monero, then running ctest in test suite folders.

Run only the hash tests:

cd /path/to/monero
make [-j#] debug
cd build/debug/tests/hash
ctest

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

Writing new tests

Based on local tests and Google's guide on creating simple tests with gtest

Tests consist of a test harness (defined with the TEST() macro), and the test body consisting of gtest assertions.

Example of a test harness:

TEST(test_case_name, test_name) {
 ... test body ...

}

As an example in Monero's crypto unit test:

TEST(Crypto, Ostream)
{
  EXPECT_TRUE(is_formatted<crypto::hash8>());
  EXPECT_TRUE(is_formatted<crypto::hash>());
  EXPECT_TRUE(is_formatted<crypto::public_key>());
  EXPECT_TRUE(is_formatted<crypto::secret_key>());
  EXPECT_TRUE(is_formatted<crypto::signature>());
  EXPECT_TRUE(is_formatted<crypto::key_derivation>());
  EXPECT_TRUE(is_formatted<crypto::key_image>());
}

The assertions inside the test harness are a bit complex, but fairly straightforward.

  • is_formatted<T>() is a polymorphic function that accepts the various types of structs defined in crypto/hash.h.

Just above the test harness, we have the definition for is_formatted:

  template<typename T>
  bool is_formatted()
  {
    T value{};

    static_assert(alignof(T) == 1, "T must have 1 byte alignment");
    static_assert(sizeof(T) <= sizeof(source), "T is too large for source");
    static_assert(sizeof(T) * 2 <= sizeof(expected), "T is too large for destination");
    std::memcpy(std::addressof(value), source, sizeof(T));

    std::stringstream out;
    out << "BEGIN" << value << "END";
    return out.str() == "BEGIN<" + std::string{expected, sizeof(T) * 2} + ">END";
  }

T value {} produces the data member of the struct (hash8 has char data[8]), which runs a number of tests to ensure well structured hash data.

Let's write a new test for the keccak function:

  bool keccak_harness()
  {
      size_t inlen = sizeof(source);
      int mdlen = (int)sizeof(md);
      int ret = keccak(source, inlen, md, mdlen);
      if (md[0] != 0x00)
      {
          return true;
      }
      else if (!ret)
      {
          return true;
      }
      else
      {
          return false;
      }
  }

This is a basic test that ensures keccak() returns successfully when given proper input. It reuses the source array for input, and a new byte array md for storing the hash digest. Full source is in the crypto unit test.

Now let's create a new test harness:

TEST(Crypto, Keccak)
{
  # ...
  EXPECT_TRUE(keccak_harness());
}

This creates a new test under the Crypto test case named Keccak. The harness includes one assertion EXPECT_TRUE(keccak_harness()), which invokes keccak_harness(). More complex logic can be added to test various functionality of the Keccak library.

To run the new test:

cd /path/to/monero
make -jn debug # if no debug build exists
cd build/debug/tests/unit_test
make -jn
make -jn test

Fuzz tests

Running fuzz tests

cd /path/to/monero
make [-jn] fuzz # where n is number of compiler processes

or

cd path/to/monero
./contrib/fuzz_testing/fuzz.sh

Writing fuzz tests

[TODO]