Lucas Clemente
bb5a199467
Move Chrome tests and test server setup to separate packages
2017-08-18 12:06:37 +02:00
Lucas Clemente
56cbce35b3
Move proxy/ to new tools/ folder
2017-08-18 12:06:37 +02:00
Lucas Clemente
8ec11c0b53
Move testdata/ to internal/
2017-08-18 12:06:36 +02:00
Marten Seemann
1d1edfa615
use the gbytes.TimeoutReader in integration tests
2017-07-24 19:22:09 +07:00
Marten Seemann
e291066e48
increase RTT and make assertion more lenient in handshake test
2017-07-10 17:21:52 +08:00
Marten Seemann
32bc70ba0c
fix flaky proxy test
2017-07-07 12:23:34 +02:00
Marten Seemann
c776a35b68
bind proxy to random port in proxy tests
2017-07-07 12:23:34 +02:00
Lucas Clemente
b6b4283d3f
Retry starting Chrome if it doesn't hit the endpoints
2017-07-07 12:06:16 +02:00
Lucas Clemente
e0ba8b082d
Replace docker with a directly launched Chrome for integration tests
...
The benefits:
- Speed up chrome tests (from 160s to 34s on my machine).
- Allow us to remove docker, which caused quite a few headaches.
- Gets us a more current Chrome, so now we run tests against all
supported versions.
- We don't touch the FS anymore.
- We no longer depend on sudo for travis, which means we can use
their new container-based infrastructure. This also speeds up our
tests :)
Tests are now implemented in javascript; the server detects when
they are complete and kills Chrome.
Fixes #417 .
2017-07-07 12:05:48 +02:00
Lucas Clemente
bf8ae2bb50
Pass -v to ginkgo in integrationtests
2017-07-05 21:02:13 +02:00
Marten Seemann
a851aaacda
remove the tls.Config from the quic.Config
...
The tls.Config now is a separate parameter to all Listen and Dial
functions in the quic package.
2017-07-03 22:12:09 +02:00
Marten Seemann
9df3380bc6
rename the h2quic.QuicRoundTripper to h2quic.RoundTripper
2017-06-26 19:14:41 +02:00
twdkeule
d7ddadc7b7
Added test with large RTT ( #679 )
...
* Added test with large RTT
* Make RTT test for variable filesize
* Cleanup, don't log to new file
* Run RTT test with multiple RTT's (for only 500kB file)
2017-06-20 10:20:54 +02:00
Marten Seemann
45310d5898
Merge pull request #682 from lucas-clemente/fix-rtt-test
...
increase RTT and time constraints in handshake RTT tests
2017-06-16 15:06:55 +02:00
Marten Seemann
ab1aaf9355
fix flaky proxy tests
2017-06-16 13:24:13 +02:00
Marten Seemann
55dbc3c52f
increase RTT and time constraints in handshake RTT tests
2017-06-16 12:49:42 +02:00
Lucas Clemente
960a445ebe
Start a unique quic server per integration test case
...
This fixes a race condition that could lead to errors during version negotiation.
Fixes #676 .
2017-06-15 14:05:31 +02:00
Marten Seemann
987905149b
run gofmt to fix ordering of imports
2017-06-13 18:07:22 +02:00
Marten Seemann
c0b09c8646
make utils an internal package
2017-06-09 22:28:40 +02:00
Lucas Clemente
61c4faf4d1
Increase test timeouts
2017-06-09 16:56:14 +02:00
Lucas Clemente
f33e12831e
Improve drop test scopes
2017-06-06 11:45:18 +02:00
Lucas Clemente
4f93969101
Run gosimple on our tree
2017-06-06 09:33:46 +02:00
Marten Seemann
37366ef882
add a handshake integration test for the handshake timeout
2017-06-01 20:08:07 +02:00
Marten Seemann
a025e89f03
Merge pull request #626 from lucas-clemente/fix-538
...
add tests measuring how many RTTs a handshake takes
2017-06-01 19:35:48 +02:00
Thomas De Keulenaer
0e0d62e809
Drop focus
2017-05-31 15:40:29 +02:00
Thomas De Keulenaer
a07eaac1fd
Added possibility to drop multiple packets in a row.
2017-05-29 12:15:02 +02:00
Marten Seemann
f2ada4eef1
add tests using the source address validation
2017-05-27 18:53:28 +08:00
Marten Seemann
6b3165928f
add tests measuring how many RTTs a handshake takes
2017-05-27 13:28:44 +08:00
Marten Seemann
0dbbb8d1b3
use the standard library log package for logging
2017-05-25 20:31:45 +08:00
Marten Seemann
b305cd674f
make it possible to configure the QUIC versions for the server
2017-05-05 18:05:57 +08:00
Marten Seemann
b5ad169321
Merge pull request #586 from lucas-clemente/ginkgo-logfile-flag
...
introduce a logfile command line flag for the integrationtests
2017-05-05 16:40:25 +08:00
Marten Seemann
8b4042ddd1
introduce a logfile command line flag for the integrationtests
...
Use: ginkgo -failFast -- -logfile=log.txt
Ginkgo will create log.txt and set the log level to LogLevelDebug. Use
of -failFast is recommended to make sure that no other tests are run if
one test fails (the log file would be overwritten otherwise).
2017-04-30 15:13:29 +07:00
Marten Seemann
076e5a38d3
set ginkgo timeouts for client integrationtests
2017-04-30 14:02:37 +07:00
Marten Seemann
ff42100f1b
Merge pull request #571 from lucas-clemente/wip-quic37
...
add support for QUIC 37
2017-04-29 17:10:53 +07:00
Marten Seemann
0a2c37d42a
add QUIC 37 to supported versions
...
fixes #375
Chrome tests are disabled for QUIC 37, since the Chrome version in the
docker image doesn’t support this version yet.
2017-04-29 16:59:32 +07:00
Marten Seemann
40cdea8deb
remove stray fmt.Println in integrationtests
2017-04-27 18:41:31 +07:00
Marten Seemann
c62fa83248
Merge pull request #560 from lucas-clemente/new-proxy
...
rewrite the QUIC proxy used in the integrationtests
2017-04-25 23:25:58 +07:00
Marten Seemann
08cf78d2b0
rewrite the QUIC proxy used in the integrationtests
...
The new QUIC proxy allows to listen on “:0”, which allows us to get rid
of all “address already in use” errors. The constructor now takes an
Opts struct, which makes configuring it easier.
2017-04-25 23:09:45 +07:00
Marten Seemann
f9404ff646
fix flaky integration tests with the quic_server
...
Both the CA and the server certificate should already be valid when the
test is started.
2017-04-23 11:55:42 +07:00
Marten Seemann
fb127ecfd5
add integration tests with the quic_server
2017-04-18 16:58:20 +02:00
Lucas Clemente
a896e81cd9
Fix quic_client integration tests
...
Apparently the output format of the quic_client changed.
2017-04-17 15:31:51 +02:00
Lucas Clemente
013d7fdb30
Simplify code in a few places
...
Found by running `gosimple ./...`
2017-04-13 16:43:58 +02:00
Marten Seemann
28c115fee1
drop support for QUIC 34
...
fixes #368
2017-03-19 20:57:28 +07:00
Marten Seemann
901a724197
determine the path to the quic_clients at runtime in integration tests
2017-02-20 10:39:30 +07:00
Marten Seemann
bd452b35ca
support unset GOPATH in Go 1.8 in integrationtests
...
fixes #415
2017-02-18 13:40:28 +07:00
Marten Seemann
16448cb2db
run client integration tests with every QUIC version
2017-01-16 16:34:50 +07:00
Marten Seemann
99bc18efd8
explicitly fail tests if name resolution fails
2017-01-16 15:28:59 +07:00
Marten Seemann
06aa2489ba
add an integration test for uploading data with the client
2017-01-16 15:23:23 +07:00
Marten Seemann
1eeb249876
add more integration tests for downloading data with the client
2017-01-16 10:38:58 +07:00
Marten Seemann
cdcb4163c0
add a simple integration test for the client
2017-01-16 10:35:59 +07:00