Default compile all tests and binaries with TRACE log level (#549)

In order to avoid unused warning and more importantly to make
sure all log statements work.
This commit is contained in:
Kim De Mey 2022-11-10 09:01:58 +01:00 committed by GitHub
parent 10870d8b15
commit 86b37bf72e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 59 additions and 40 deletions

View File

@ -24,25 +24,28 @@ let styleCheckStyle =
else:
"error"
let commonParams = " --verbosity:0 --hints:off --skipUserCfg:on " &
"--warning[ObservableStores]:off --styleCheck:usages --styleCheck:" &
styleCheckStyle & " " & getEnv("NIMFLAGS") & " "
let commonParams =
" --skipUserCfg:on" &
" --verbosity:0 --hints:off" &
" --warning[ObservableStores]:off " &
" --styleCheck:usages --styleCheck:" & styleCheckStyle &
" " & getEnv("NIMFLAGS") &
" -d:chronosStrictException" &
" -d:chronicles_log_level=TRACE"
proc runTest(path: string, release: bool = true, chronosStrict = true) =
proc runTest(path: string, release: bool = true) =
echo "\nBuilding and running: ", path
let releaseMode = if release: " -d:release" else: ""
let chronosMode =
if chronosStrict: "-d:chronosStrictException" else: ""
exec "nim c -r " & releaseMode & " " & chronosMode &
" -d:chronicles_log_level=ERROR " & commonParams & path
exec "nim c -r" &
releaseMode & commonParams & " " & path
rmFile path
proc buildBinary(path: string) =
echo "\nBuilding: ", path
exec "nim c -d:release -d:chronosStrictException " &
"-d:chronicles_log_level=TRACE --threads:on " & commonParams &
"--warning[CaseTransition]:off --warning[ObservableStores]:off " &
path
exec "nim c -d:release" & commonParams &
" --warning[CaseTransition]:off" &
" " & path
task test_keyfile, "Run keyfile tests":
runTest("tests/keyfile/all_tests")

View File

@ -1 +1,3 @@
--threads:on
-d:"chronicles_runtime_filtering=on"

View File

@ -3,6 +3,8 @@
# rocksdb init does this type of assignment
--define:nimOldCaseObjects
-d:"chronicles_runtime_filtering=on"
# Avoid some rare stack corruption while using exceptions with a SEH-enabled
# toolchain: https://github.com/status-im/nimbus-eth2/issues/3121
@if windows and not vcc:

View File

@ -12,7 +12,8 @@
import
std/sequtils,
chronos, stew/byteutils, nimcrypto, testutils/unittests,
../../eth/keys, ../../eth/p2p/[discovery, kademlia, enode]
../../eth/keys, ../../eth/p2p/[discovery, kademlia, enode],
../stubloglevel
proc localAddress(port: int): Address =
let port = Port(port)

View File

@ -8,6 +8,7 @@ import
../../eth/p2p/discoveryv5/[enr, node, routing_table, encoding, sessions,
messages, nodes_verification],
../../eth/p2p/discoveryv5/protocol as discv5_protocol,
../stubloglevel,
./discv5_test_helper
suite "Discovery v5 Tests":

View File

@ -5,7 +5,8 @@ import
unittest2,
stint, stew/byteutils, stew/shims/net,
../../eth/keys,
../../eth/p2p/discoveryv5/[messages_encoding, encoding, enr, node, sessions]
../../eth/p2p/discoveryv5/[messages_encoding, encoding, enr, node, sessions],
../stubloglevel
let rng = newRng()

View File

@ -13,6 +13,7 @@ import
std/tables,
chronos, testutils/unittests,
../../eth/p2p,
../stubloglevel,
./p2p_test_helper
type

View File

@ -5,6 +5,7 @@ import
unittest2, stint,
chronos, stew/byteutils,
../../eth/[p2p, common],
../stubloglevel,
./p2p_test_helper,
./eth_protocol

6
tests/stubloglevel.nim Normal file
View File

@ -0,0 +1,6 @@
import chronicles
{.used.}
when defined(chronicles_runtime_filtering):
setLogLevel(ERROR)

View File

@ -11,7 +11,6 @@ import
unittest2,
../../eth/utp/growable_buffer
type TestObj = object
foo: string

View File

@ -16,7 +16,8 @@ import
../../eth/utp/utp_discv5_protocol,
../../eth/keys,
../../eth/utp/utp_router as rt,
../p2p/discv5_test_helper
../p2p/discv5_test_helper,
../stubloglevel
procSuite "Utp protocol over discovery v5 tests":
let rng = newRng()

View File

@ -12,11 +12,8 @@ import
../../eth/utp/packets,
../../eth/keys
suite "Utp packets encoding/decoding":
let rng = newRng()
test "Encode/decode syn packet":
suite "uTP Packet Encoding":
test "Encode/decode SYN packet":
let synPacket = synPacket(5, 10, 20)
let encoded = encodePacket(synPacket)
let decoded = decodePacket(encoded)
@ -30,7 +27,7 @@ suite "Utp packets encoding/decoding":
check:
synPacketDec == synPacket
test "Encode/decode fin packet":
test "Encode/decode FIN packet":
let finPacket = finPacket(5, 10, 20, 30, 40)
let encoded = encodePacket(finPacket)
let decoded = decodePacket(encoded)
@ -44,7 +41,7 @@ suite "Utp packets encoding/decoding":
check:
finPacketDec == finPacket
test "Encode/decode reset packet":
test "Encode/decode RESET packet":
let resetPacket = resetPacket(5, 10, 20)
let encoded = encodePacket(resetPacket)
let decoded = decodePacket(encoded)
@ -58,7 +55,7 @@ suite "Utp packets encoding/decoding":
check:
resetPacketDec == resetPacket
test "Encode/decode ack packet without extensions":
test "Encode/decode ACK packet: without extensions":
let ackPacket = ackPacket(5, 10, 20, 30, 40)
let encoded = encodePacket(ackPacket)
let decoded = decodePacket(encoded)
@ -72,7 +69,7 @@ suite "Utp packets encoding/decoding":
check:
ackPacketDec == ackPacket
test "Encode/decode ack packet with extensions":
test "Encode/decode ACK packet: with extensions":
let bitMask: array[4, byte] = [1'u8, 2, 3, 4]
let ackPacket = ackPacket(5, 10, 20, 30, 40, some(bitMask))
let encoded = encodePacket(ackPacket)
@ -117,7 +114,6 @@ suite "Utp packets encoding/decoding":
err3.isErr()
err3.error() == "Packet too short for selective ack extension"
var encoded4 = encodePacket(ackPacket)
# change change extension field to something other than 0 or 1
encoded4[1] = 2
@ -126,11 +122,11 @@ suite "Utp packets encoding/decoding":
err4.isErr()
err4.error() == "Invalid extension type"
test "Decode state packet":
test "Decode STATE packet":
# Packet obtained by interaction with c reference implementation
let pack: array[20, uint8] = [
0x21'u8, 0x0, 0x15, 0x72, 0x00, 0xBA, 0x4D, 0x71, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0,
0x0, 0x41, 0xA7, 0x00, 0x01]
0x21'u8, 0x0, 0x15, 0x72, 0x00, 0xBA, 0x4D, 0x71, 0x0, 0x0,
0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x41, 0xA7, 0x00, 0x01]
let decoded = decodePacket(pack)
check:

View File

@ -13,7 +13,8 @@ import
./test_utils,
../../eth/utp/utp_router as rt,
../../eth/utp/utp_protocol,
../../eth/keys
../../eth/keys,
../stubloglevel
proc setAcceptedCallback(event: AsyncEvent): AcceptConnectionCallback[TransportAddress] =
return (

View File

@ -13,7 +13,8 @@ import
../../eth/utp/utp_router,
../../eth/utp/utp_protocol,
../../eth/keys,
../../eth/p2p/discoveryv5/random2
../../eth/p2p/discoveryv5/random2,
../stubloglevel
proc connectTillSuccess(p: UtpProtocol, to: TransportAddress, maxTries: int = 20): Future[UtpSocket[TransportAddress]] {.async.} =
var i = 0

View File

@ -13,7 +13,8 @@ import
./test_utils,
../../eth/utp/utp_router,
../../eth/utp/packets,
../../eth/keys
../../eth/keys,
../stubloglevel
proc hash*(x: UtpSocketKey[int]): Hash =
var h = 0

View File

@ -14,7 +14,8 @@ import
../../eth/utp/utp_router,
../../eth/utp/utp_socket,
../../eth/utp/packets,
../../eth/keys
../../eth/keys,
../stubloglevel
procSuite "Utp socket unit test":
let rng = newRng()

View File

@ -15,7 +15,8 @@ import
../../eth/utp/utp_router,
../../eth/utp/utp_socket,
../../eth/utp/packets,
../../eth/keys
../../eth/keys,
../stubloglevel
procSuite "Utp socket selective acks unit test":
let rng = newRng()