mirror of
https://github.com/status-im/nim-chronos.git
synced 2025-02-12 19:26:42 +00:00
* Initial commit. * Some refactoring. * Allow boundstream to accept uint64. Fix httpserver and asyncstream tests to follow new uint64 requirement. * send() and getBodyBytes() implementations. * Add closeWait for response and request. Refactor finish/close flow. * Changes in state machine Add first test. * Missing test file. * Fixed tests Add http leaking trackers and tests. * Some fixes in multipart. Fix automatic Content-Length header for requests with body. Fix getBodyBytes() assertions. Merging tests to main suite. * Post rebase fixes. * Fix tests big message generation. * Fix response state management and leaks for getBodyXXX() procedures. * Add redirection support to client and server. Add fetch(url) procedure with redirection support. Add tests for redirection.
12 lines
490 B
Nim
12 lines
490 B
Nim
# Chronos Test Suite
|
|
# (c) Copyright 2018-Present
|
|
# Status Research & Development GmbH
|
|
#
|
|
# Licensed under either of
|
|
# Apache License, version 2.0, (LICENSE-APACHEv2)
|
|
# MIT license (LICENSE-MIT)
|
|
import testmacro, testsync, testsoon, testtime, testfut, testsignal,
|
|
testaddress, testdatagram, teststream, testserver, testbugs, testnet,
|
|
testasyncstream, testhttpserver, testshttpserver, testhttpclient
|
|
import testutils
|