summaryrefslogtreecommitdiffstats
path: root/tests/ngtcp2_conn_test.h
blob: b3c2b3ad229bdcd5f2f0f11f04f7a42d0620de15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
 * ngtcp2
 *
 * Copyright (c) 2017 ngtcp2 contributors
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
#ifndef NGTCP2_CONN_TEST_H
#define NGTCP2_CONN_TEST_H

#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif /* HAVE_CONFIG_H */

void init_static_path(void);

void test_ngtcp2_conn_stream_open_close(void);
void test_ngtcp2_conn_stream_rx_flow_control(void);
void test_ngtcp2_conn_stream_rx_flow_control_error(void);
void test_ngtcp2_conn_stream_tx_flow_control(void);
void test_ngtcp2_conn_rx_flow_control(void);
void test_ngtcp2_conn_rx_flow_control_error(void);
void test_ngtcp2_conn_tx_flow_control(void);
void test_ngtcp2_conn_shutdown_stream_write(void);
void test_ngtcp2_conn_recv_reset_stream(void);
void test_ngtcp2_conn_recv_stop_sending(void);
void test_ngtcp2_conn_recv_conn_id_omitted(void);
void test_ngtcp2_conn_short_pkt_type(void);
void test_ngtcp2_conn_recv_stateless_reset(void);
void test_ngtcp2_conn_recv_retry(void);
void test_ngtcp2_conn_recv_delayed_handshake_pkt(void);
void test_ngtcp2_conn_recv_max_streams(void);
void test_ngtcp2_conn_handshake(void);
void test_ngtcp2_conn_handshake_error(void);
void test_ngtcp2_conn_retransmit_protected(void);
void test_ngtcp2_conn_send_max_stream_data(void);
void test_ngtcp2_conn_recv_stream_data(void);
void test_ngtcp2_conn_recv_ping(void);
void test_ngtcp2_conn_recv_max_stream_data(void);
void test_ngtcp2_conn_send_early_data(void);
void test_ngtcp2_conn_recv_early_data(void);
void test_ngtcp2_conn_recv_compound_pkt(void);
void test_ngtcp2_conn_pkt_payloadlen(void);
void test_ngtcp2_conn_writev_stream(void);
void test_ngtcp2_conn_writev_datagram(void);
void test_ngtcp2_conn_recv_datagram(void);
void test_ngtcp2_conn_recv_new_connection_id(void);
void test_ngtcp2_conn_recv_retire_connection_id(void);
void test_ngtcp2_conn_server_path_validation(void);
void test_ngtcp2_conn_client_connection_migration(void);
void test_ngtcp2_conn_recv_path_challenge(void);
void test_ngtcp2_conn_key_update(void);
void test_ngtcp2_conn_crypto_buffer_exceeded(void);
void test_ngtcp2_conn_handshake_probe(void);
void test_ngtcp2_conn_handshake_loss(void);
void test_ngtcp2_conn_recv_client_initial_retry(void);
void test_ngtcp2_conn_recv_client_initial_token(void);
void test_ngtcp2_conn_get_active_dcid(void);
void test_ngtcp2_conn_recv_version_negotiation(void);
void test_ngtcp2_conn_send_initial_token(void);
void test_ngtcp2_conn_set_remote_transport_params(void);
void test_ngtcp2_conn_write_connection_close(void);
void test_ngtcp2_conn_write_application_close(void);
void test_ngtcp2_conn_rtb_reclaim_on_pto(void);
void test_ngtcp2_conn_rtb_reclaim_on_pto_datagram(void);
void test_ngtcp2_conn_validate_ecn(void);
void test_ngtcp2_conn_path_validation(void);
void test_ngtcp2_conn_early_data_sync_stream_data_limit(void);
void test_ngtcp2_conn_early_data_rejected(void);
void test_ngtcp2_conn_keep_alive(void);
void test_ngtcp2_conn_retire_stale_bound_dcid(void);
void test_ngtcp2_conn_get_scid(void);
void test_ngtcp2_conn_stream_close(void);
void test_ngtcp2_conn_buffer_pkt(void);
void test_ngtcp2_conn_handshake_timeout(void);
void test_ngtcp2_conn_get_connection_close_error(void);
void test_ngtcp2_conn_version_negotiation(void);
void test_ngtcp2_conn_server_negotiate_version(void);
void test_ngtcp2_conn_pmtud_loss(void);
void test_ngtcp2_conn_amplification(void);
void test_ngtcp2_conn_new_failmalloc(void);
void test_ngtcp2_accept(void);
void test_ngtcp2_select_version(void);
void test_ngtcp2_pkt_write_connection_close(void);

#endif /* NGTCP2_CONN_TEST_H */