2012-01-24 08:02:24 -05:00
|
|
|
/*
|
|
|
|
* Spdylay - SPDY Library
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 Tatsuhiro Tsujikawa
|
|
|
|
*
|
|
|
|
* 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 SPDYLAY_SESSION_TEST_H
|
|
|
|
#define SPDYLAY_SESSION_TEST_H
|
|
|
|
|
|
|
|
void test_spdylay_session_recv();
|
2012-01-25 07:31:28 -05:00
|
|
|
void test_spdylay_session_recv_invalid_stream_id();
|
2012-01-24 08:02:24 -05:00
|
|
|
void test_spdylay_session_add_frame();
|
2012-01-25 09:46:07 -05:00
|
|
|
void test_spdylay_session_on_syn_stream_received();
|
2012-02-01 10:19:31 -05:00
|
|
|
void test_spdylay_session_on_syn_stream_received_with_push();
|
2012-01-25 09:46:07 -05:00
|
|
|
void test_spdylay_session_on_syn_reply_received();
|
2012-01-25 11:04:01 -05:00
|
|
|
void test_spdylay_session_send_syn_stream();
|
|
|
|
void test_spdylay_session_send_syn_reply();
|
2012-01-27 09:35:23 -05:00
|
|
|
void test_spdylay_submit_response();
|
2012-02-21 08:04:24 -05:00
|
|
|
void test_spdylay_submit_response_with_null_data_read_callback();
|
2012-01-29 05:07:31 -05:00
|
|
|
void test_spdylay_submit_request_with_data();
|
2012-02-20 16:12:13 -05:00
|
|
|
void test_spdylay_submit_request_with_null_data_read_callback();
|
2012-01-27 03:09:40 -05:00
|
|
|
void test_spdylay_session_reply_fail();
|
2012-01-27 05:10:13 -05:00
|
|
|
void test_spdylay_session_on_headers_received();
|
2012-01-27 09:05:29 -05:00
|
|
|
void test_spdylay_session_on_ping_received();
|
2012-01-28 05:22:38 -05:00
|
|
|
void test_spdylay_session_on_goaway_received();
|
2012-01-29 02:27:00 -05:00
|
|
|
void test_spdylay_session_on_data_received();
|
2012-02-02 09:19:01 -05:00
|
|
|
void test_spdylay_session_on_rst_received();
|
|
|
|
void test_spdylay_session_is_my_stream_id();
|
|
|
|
void test_spdylay_session_send_rst_stream();
|
2012-02-05 10:14:19 -05:00
|
|
|
void test_spdylay_session_get_next_ob_item();
|
|
|
|
void test_spdylay_session_pop_next_ob_item();
|
2012-02-07 10:10:23 -05:00
|
|
|
void test_spdylay_session_on_request_recv_callback();
|
2012-02-07 17:17:38 -05:00
|
|
|
void test_spdylay_session_on_stream_close();
|
2012-02-08 09:45:48 -05:00
|
|
|
void test_spdylay_session_max_concurrent_streams();
|
2012-02-12 04:30:19 -05:00
|
|
|
void test_spdylay_session_data_backoff_by_high_pri_frame();
|
2012-02-12 05:01:23 -05:00
|
|
|
void test_spdylay_session_stop_data_with_rst_stream();
|
2012-02-14 10:45:09 -05:00
|
|
|
void test_spdylay_session_stream_close_on_syn_stream();
|
2012-02-18 07:55:40 -05:00
|
|
|
void test_spdylay_session_recv_invalid_frame();
|
2012-02-19 09:42:25 -05:00
|
|
|
void test_spdylay_session_defer_data();
|
2012-01-24 08:02:24 -05:00
|
|
|
|
|
|
|
#endif // SPDYLAY_SESSION_TEST_H
|