2012-01-19 13:36:13 +01:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2012-01-19 13:36:13 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <CUnit/Basic.h>
|
|
|
|
/* include test cases' include files here */
|
2013-07-12 17:19:03 +02:00
|
|
|
#include "nghttp2_pq_test.h"
|
|
|
|
#include "nghttp2_map_test.h"
|
|
|
|
#include "nghttp2_queue_test.h"
|
|
|
|
#include "nghttp2_session_test.h"
|
|
|
|
#include "nghttp2_frame_test.h"
|
|
|
|
#include "nghttp2_stream_test.h"
|
2013-07-19 09:50:31 +02:00
|
|
|
#include "nghttp2_hd_test.h"
|
2013-07-12 17:19:03 +02:00
|
|
|
#include "nghttp2_npn_test.h"
|
|
|
|
#include "nghttp2_gzip_test.h"
|
2013-08-08 17:58:52 +02:00
|
|
|
#include "nghttp2_helper_test.h"
|
2014-03-14 13:40:14 +01:00
|
|
|
#include "nghttp2_buf_test.h"
|
2012-01-19 13:36:13 +01:00
|
|
|
|
2012-03-22 18:17:48 +01:00
|
|
|
static int init_suite1(void)
|
2012-01-19 13:36:13 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-22 18:17:48 +01:00
|
|
|
static int clean_suite1(void)
|
2012-01-19 13:36:13 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-03 01:31:11 +01:00
|
|
|
int main(int argc, char* argv[])
|
2012-01-19 13:36:13 +01:00
|
|
|
{
|
|
|
|
CU_pSuite pSuite = NULL;
|
2012-05-31 14:55:21 +02:00
|
|
|
unsigned int num_tests_failed;
|
2012-01-19 13:36:13 +01:00
|
|
|
|
|
|
|
/* initialize the CUnit test registry */
|
|
|
|
if (CUE_SUCCESS != CU_initialize_registry())
|
|
|
|
return CU_get_error();
|
|
|
|
|
|
|
|
/* add a suite to the registry */
|
2013-07-12 17:19:03 +02:00
|
|
|
pSuite = CU_add_suite("libnghttp2_TestSuite", init_suite1, clean_suite1);
|
2012-01-19 13:36:13 +01:00
|
|
|
if (NULL == pSuite) {
|
|
|
|
CU_cleanup_registry();
|
|
|
|
return CU_get_error();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add the tests to the suite */
|
2013-07-12 17:19:03 +02:00
|
|
|
if(!CU_add_test(pSuite, "pq", test_nghttp2_pq) ||
|
2013-08-09 16:40:41 +02:00
|
|
|
!CU_add_test(pSuite, "pq_update", test_nghttp2_pq_update) ||
|
2013-07-12 17:19:03 +02:00
|
|
|
!CU_add_test(pSuite, "map", test_nghttp2_map) ||
|
|
|
|
!CU_add_test(pSuite, "map_functional", test_nghttp2_map_functional) ||
|
|
|
|
!CU_add_test(pSuite, "map_each_free", test_nghttp2_map_each_free) ||
|
|
|
|
!CU_add_test(pSuite, "queue", test_nghttp2_queue) ||
|
|
|
|
!CU_add_test(pSuite, "npn", test_nghttp2_npn) ||
|
|
|
|
!CU_add_test(pSuite, "session_recv", test_nghttp2_session_recv) ||
|
2012-01-25 13:31:28 +01:00
|
|
|
!CU_add_test(pSuite, "session_recv_invalid_stream_id",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_recv_invalid_stream_id) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "session_recv_invalid_frame",
|
|
|
|
test_nghttp2_session_recv_invalid_frame) ||
|
|
|
|
!CU_add_test(pSuite, "session_recv_eof",
|
|
|
|
test_nghttp2_session_recv_eof) ||
|
|
|
|
!CU_add_test(pSuite, "session_recv_data",
|
|
|
|
test_nghttp2_session_recv_data) ||
|
2014-01-26 12:31:28 +01:00
|
|
|
!CU_add_test(pSuite, "session_recv_continuation",
|
|
|
|
test_nghttp2_session_recv_continuation) ||
|
2014-03-25 18:04:24 +01:00
|
|
|
!CU_add_test(pSuite, "session_recv_headers_with_priority",
|
|
|
|
test_nghttp2_session_recv_headers_with_priority) ||
|
2014-02-11 08:00:59 +01:00
|
|
|
!CU_add_test(pSuite, "session_recv_premature_headers",
|
|
|
|
test_nghttp2_session_recv_premature_headers) ||
|
2013-09-28 10:59:24 +02:00
|
|
|
!CU_add_test(pSuite, "session_continue", test_nghttp2_session_continue) ||
|
2012-01-24 14:02:24 +01:00
|
|
|
!CU_add_test(pSuite, "session_add_frame",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_add_frame) ||
|
2013-07-25 14:07:38 +02:00
|
|
|
!CU_add_test(pSuite, "session_on_request_headers_received",
|
|
|
|
test_nghttp2_session_on_request_headers_received) ||
|
|
|
|
!CU_add_test(pSuite, "session_on_response_headers_received",
|
|
|
|
test_nghttp2_session_on_response_headers_received) ||
|
2012-01-27 11:10:13 +01:00
|
|
|
!CU_add_test(pSuite, "session_on_headers_received",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_on_headers_received) ||
|
2013-07-25 14:07:38 +02:00
|
|
|
!CU_add_test(pSuite, "session_on_push_response_headers_received",
|
|
|
|
test_nghttp2_session_on_push_response_headers_received) ||
|
2013-07-22 17:11:39 +02:00
|
|
|
!CU_add_test(pSuite, "session_on_priority_received",
|
|
|
|
test_nghttp2_session_on_priority_received) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "session_on_rst_stream_received",
|
|
|
|
test_nghttp2_session_on_rst_stream_received) ||
|
|
|
|
!CU_add_test(pSuite, "session_on_settings_received",
|
|
|
|
test_nghttp2_session_on_settings_received) ||
|
2013-07-24 18:49:05 +02:00
|
|
|
!CU_add_test(pSuite, "session_on_push_promise_received",
|
|
|
|
test_nghttp2_session_on_push_promise_received) ||
|
2012-01-27 15:05:29 +01:00
|
|
|
!CU_add_test(pSuite, "session_on_ping_received",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_on_ping_received) ||
|
2012-01-28 11:22:38 +01:00
|
|
|
!CU_add_test(pSuite, "session_on_goaway_received",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_on_goaway_received) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "session_on_window_update_received",
|
|
|
|
test_nghttp2_session_on_window_update_received) ||
|
2012-01-29 08:27:00 +01:00
|
|
|
!CU_add_test(pSuite, "session_on_data_received",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_on_data_received) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "session_send_headers_start_stream",
|
|
|
|
test_nghttp2_session_send_headers_start_stream) ||
|
|
|
|
!CU_add_test(pSuite, "session_send_headers_reply",
|
|
|
|
test_nghttp2_session_send_headers_reply) ||
|
2013-07-23 15:47:15 +02:00
|
|
|
!CU_add_test(pSuite, "session_send_headers_header_comp_error",
|
|
|
|
test_nghttp2_session_send_headers_header_comp_error) ||
|
2013-07-24 18:49:05 +02:00
|
|
|
!CU_add_test(pSuite, "session_send_headers_push_reply",
|
|
|
|
test_nghttp2_session_send_headers_push_reply) ||
|
2012-02-02 15:19:01 +01:00
|
|
|
!CU_add_test(pSuite, "session_send_rst_stream",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_send_rst_stream) ||
|
2013-07-24 18:49:05 +02:00
|
|
|
!CU_add_test(pSuite, "session_send_push_promise",
|
|
|
|
test_nghttp2_session_send_push_promise) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "session_is_my_stream_id",
|
|
|
|
test_nghttp2_session_is_my_stream_id) ||
|
2013-08-03 11:05:14 +02:00
|
|
|
!CU_add_test(pSuite, "session_upgrade", test_nghttp2_session_upgrade) ||
|
2013-08-09 16:40:41 +02:00
|
|
|
!CU_add_test(pSuite, "session_reprioritize_stream",
|
|
|
|
test_nghttp2_session_reprioritize_stream) ||
|
2014-03-05 16:19:02 +01:00
|
|
|
!CU_add_test(pSuite, "submit_data", test_nghttp2_submit_data) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "submit_request_with_data",
|
|
|
|
test_nghttp2_submit_request_with_data) ||
|
|
|
|
!CU_add_test(pSuite, "submit_request_without_data",
|
|
|
|
test_nghttp2_submit_request_without_data) ||
|
2013-12-08 13:19:33 +01:00
|
|
|
!CU_add_test(pSuite, "submit_response_with_data",
|
|
|
|
test_nghttp2_submit_response_with_data) ||
|
|
|
|
!CU_add_test(pSuite, "submit_response_without_data",
|
|
|
|
test_nghttp2_submit_response_without_data) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "submit_headers_start_stream",
|
|
|
|
test_nghttp2_submit_headers_start_stream) ||
|
|
|
|
!CU_add_test(pSuite, "submit_headers_reply",
|
|
|
|
test_nghttp2_submit_headers_reply) ||
|
2013-07-24 18:49:05 +02:00
|
|
|
!CU_add_test(pSuite, "submit_headers_push_reply",
|
|
|
|
test_nghttp2_submit_headers_push_reply) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "submit_headers", test_nghttp2_submit_headers) ||
|
2014-01-26 14:01:27 +01:00
|
|
|
!CU_add_test(pSuite, "submit_headers_continuation",
|
|
|
|
test_nghttp2_submit_headers_continuation) ||
|
2013-07-22 17:11:39 +02:00
|
|
|
!CU_add_test(pSuite, "submit_priority", test_nghttp2_submit_priority) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "session_submit_settings",
|
|
|
|
test_nghttp2_submit_settings) ||
|
2013-08-08 17:58:52 +02:00
|
|
|
!CU_add_test(pSuite, "session_submit_settings_update_local_window_size",
|
|
|
|
test_nghttp2_submit_settings_update_local_window_size) ||
|
2013-07-24 18:49:05 +02:00
|
|
|
!CU_add_test(pSuite, "session_submit_push_promise",
|
|
|
|
test_nghttp2_submit_push_promise) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "submit_window_update",
|
|
|
|
test_nghttp2_submit_window_update) ||
|
2013-08-08 17:58:52 +02:00
|
|
|
!CU_add_test(pSuite, "submit_window_update_local_window_size",
|
|
|
|
test_nghttp2_submit_window_update_local_window_size) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "submit_invalid_nv",
|
|
|
|
test_nghttp2_submit_invalid_nv) ||
|
2013-07-24 18:49:05 +02:00
|
|
|
!CU_add_test(pSuite, "session_open_stream",
|
|
|
|
test_nghttp2_session_open_stream) ||
|
2012-02-05 16:14:19 +01:00
|
|
|
!CU_add_test(pSuite, "session_get_next_ob_item",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_get_next_ob_item) ||
|
2012-02-05 16:14:19 +01:00
|
|
|
!CU_add_test(pSuite, "session_pop_next_ob_item",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_pop_next_ob_item) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "session_reply_fail",
|
|
|
|
test_nghttp2_session_reply_fail) ||
|
2012-02-08 15:45:48 +01:00
|
|
|
!CU_add_test(pSuite, "session_max_concurrent_streams",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_max_concurrent_streams) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "session_stream_close_on_headers_push",
|
|
|
|
test_nghttp2_session_stream_close_on_headers_push) ||
|
2012-02-12 11:01:23 +01:00
|
|
|
!CU_add_test(pSuite, "session_stop_data_with_rst_stream",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_stop_data_with_rst_stream) ||
|
2012-02-19 15:42:25 +01:00
|
|
|
!CU_add_test(pSuite, "session_defer_data",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_defer_data) ||
|
2012-02-25 16:12:32 +01:00
|
|
|
!CU_add_test(pSuite, "session_flow_control",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_flow_control) ||
|
2013-08-07 15:02:30 +02:00
|
|
|
!CU_add_test(pSuite, "session_flow_control_data_recv",
|
|
|
|
test_nghttp2_session_flow_control_data_recv) ||
|
2014-02-11 13:30:44 +01:00
|
|
|
!CU_add_test(pSuite, "session_flow_control_data_with_padding_recv",
|
|
|
|
test_nghttp2_session_flow_control_data_with_padding_recv) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "session_data_read_temporal_failure",
|
|
|
|
test_nghttp2_session_data_read_temporal_failure) ||
|
|
|
|
!CU_add_test(pSuite, "session_on_stream_close",
|
|
|
|
test_nghttp2_session_on_stream_close) ||
|
2012-03-07 16:18:18 +01:00
|
|
|
!CU_add_test(pSuite, "session_on_ctrl_not_send",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_on_ctrl_not_send) ||
|
2012-03-15 15:06:28 +01:00
|
|
|
!CU_add_test(pSuite, "session_get_outbound_queue_size",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_get_outbound_queue_size) ||
|
2013-10-29 17:58:38 +01:00
|
|
|
!CU_add_test(pSuite, "session_get_effective_local_window_size",
|
|
|
|
test_nghttp2_session_get_effective_local_window_size) ||
|
2012-05-08 15:59:34 +02:00
|
|
|
!CU_add_test(pSuite, "session_set_option",
|
2013-07-12 17:19:03 +02:00
|
|
|
test_nghttp2_session_set_option) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "session_data_backoff_by_high_pri_frame",
|
|
|
|
test_nghttp2_session_data_backoff_by_high_pri_frame) ||
|
2014-02-07 15:22:17 +01:00
|
|
|
!CU_add_test(pSuite, "session_pack_data_with_padding",
|
|
|
|
test_nghttp2_session_pack_data_with_padding) ||
|
2014-02-14 17:34:04 +01:00
|
|
|
!CU_add_test(pSuite, "session_pack_headers_with_padding",
|
|
|
|
test_nghttp2_session_pack_headers_with_padding) ||
|
2014-03-10 17:47:38 +01:00
|
|
|
!CU_add_test(pSuite, "session_pack_headers_with_padding2",
|
|
|
|
test_nghttp2_session_pack_headers_with_padding2) ||
|
|
|
|
!CU_add_test(pSuite, "session_pack_headers_with_padding3",
|
|
|
|
test_nghttp2_session_pack_headers_with_padding3) ||
|
|
|
|
!CU_add_test(pSuite, "session_pack_headers_with_padding4",
|
|
|
|
test_nghttp2_session_pack_headers_with_padding4) ||
|
2013-08-03 11:05:14 +02:00
|
|
|
!CU_add_test(pSuite, "pack_settings_payload",
|
|
|
|
test_nghttp2_pack_settings_payload) ||
|
2014-03-25 18:04:24 +01:00
|
|
|
!CU_add_test(pSuite, "session_stream_dep_add",
|
|
|
|
test_nghttp2_session_stream_dep_add) ||
|
|
|
|
!CU_add_test(pSuite, "session_stream_dep_remove",
|
|
|
|
test_nghttp2_session_stream_dep_remove) ||
|
|
|
|
!CU_add_test(pSuite, "session_stream_dep_add_subtree",
|
|
|
|
test_nghttp2_session_stream_dep_add_subtree) ||
|
|
|
|
!CU_add_test(pSuite, "session_stream_dep_remove_subtree",
|
|
|
|
test_nghttp2_session_stream_dep_remove_subtree) ||
|
|
|
|
!CU_add_test(pSuite, "session_stream_attach_data",
|
|
|
|
test_nghttp2_session_stream_attach_data) ||
|
|
|
|
!CU_add_test(pSuite, "session_stream_attach_data_subtree",
|
|
|
|
test_nghttp2_session_stream_attach_data_subtree) ||
|
2014-03-30 10:41:54 +02:00
|
|
|
!CU_add_test(pSuite, "session_stream_keep_closed_stream",
|
|
|
|
test_nghttp2_session_keep_closed_stream) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "frame_pack_headers",
|
|
|
|
test_nghttp2_frame_pack_headers) ||
|
|
|
|
!CU_add_test(pSuite, "frame_pack_headers_frame_too_large",
|
|
|
|
test_nghttp2_frame_pack_headers_frame_too_large) ||
|
|
|
|
!CU_add_test(pSuite, "frame_pack_priority",
|
|
|
|
test_nghttp2_frame_pack_priority) ||
|
|
|
|
!CU_add_test(pSuite, "frame_pack_rst_stream",
|
|
|
|
test_nghttp2_frame_pack_rst_stream) ||
|
|
|
|
!CU_add_test(pSuite, "frame_pack_settings",
|
|
|
|
test_nghttp2_frame_pack_settings) ||
|
2013-07-24 18:49:05 +02:00
|
|
|
!CU_add_test(pSuite, "frame_pack_push_promise",
|
|
|
|
test_nghttp2_frame_pack_push_promise) ||
|
2013-07-15 14:45:59 +02:00
|
|
|
!CU_add_test(pSuite, "frame_pack_ping", test_nghttp2_frame_pack_ping) ||
|
|
|
|
!CU_add_test(pSuite, "frame_pack_goaway",
|
|
|
|
test_nghttp2_frame_pack_goaway) ||
|
|
|
|
!CU_add_test(pSuite, "frame_pack_window_update",
|
|
|
|
test_nghttp2_frame_pack_window_update) ||
|
2013-09-10 17:55:35 +02:00
|
|
|
!CU_add_test(pSuite, "nv_array_copy", test_nghttp2_nv_array_copy) ||
|
2013-08-17 16:41:04 +02:00
|
|
|
!CU_add_test(pSuite, "iv_check", test_nghttp2_iv_check) ||
|
2013-07-19 09:50:31 +02:00
|
|
|
!CU_add_test(pSuite, "hd_deflate", test_nghttp2_hd_deflate) ||
|
2013-08-23 16:38:28 +02:00
|
|
|
!CU_add_test(pSuite, "hd_deflate_same_indexed_repr",
|
|
|
|
test_nghttp2_hd_deflate_same_indexed_repr) ||
|
2013-09-06 14:53:28 +02:00
|
|
|
!CU_add_test(pSuite, "hd_deflate_common_header_eviction",
|
|
|
|
test_nghttp2_hd_deflate_common_header_eviction) ||
|
2013-11-16 09:05:18 +01:00
|
|
|
!CU_add_test(pSuite, "hd_deflate_clear_refset",
|
|
|
|
test_nghttp2_hd_deflate_clear_refset) ||
|
2013-11-03 10:30:57 +01:00
|
|
|
!CU_add_test(pSuite, "hd_inflate_indname_noinc",
|
|
|
|
test_nghttp2_hd_inflate_indname_noinc) ||
|
2013-07-19 09:50:31 +02:00
|
|
|
!CU_add_test(pSuite, "hd_inflate_indname_inc",
|
|
|
|
test_nghttp2_hd_inflate_indname_inc) ||
|
|
|
|
!CU_add_test(pSuite, "hd_inflate_indname_inc_eviction",
|
|
|
|
test_nghttp2_hd_inflate_indname_inc_eviction) ||
|
2013-11-03 10:30:57 +01:00
|
|
|
!CU_add_test(pSuite, "hd_inflate_newname_noinc",
|
|
|
|
test_nghttp2_hd_inflate_newname_noinc) ||
|
2013-07-19 09:50:31 +02:00
|
|
|
!CU_add_test(pSuite, "hd_inflate_newname_inc",
|
|
|
|
test_nghttp2_hd_inflate_newname_inc) ||
|
2013-08-28 16:16:23 +02:00
|
|
|
!CU_add_test(pSuite, "hd_inflate_clearall_inc",
|
|
|
|
test_nghttp2_hd_inflate_clearall_inc) ||
|
2013-12-19 15:19:14 +01:00
|
|
|
!CU_add_test(pSuite, "hd_inflate_zero_length_huffman",
|
|
|
|
test_nghttp2_hd_inflate_zero_length_huffman) ||
|
2013-10-25 18:01:28 +02:00
|
|
|
!CU_add_test(pSuite, "hd_change_table_size",
|
|
|
|
test_nghttp2_hd_change_table_size) ||
|
2013-07-27 11:59:30 +02:00
|
|
|
!CU_add_test(pSuite, "hd_deflate_inflate",
|
|
|
|
test_nghttp2_hd_deflate_inflate) ||
|
2013-08-08 17:58:52 +02:00
|
|
|
!CU_add_test(pSuite, "gzip_inflate", test_nghttp2_gzip_inflate) ||
|
|
|
|
!CU_add_test(pSuite, "adjust_local_window_size",
|
2014-02-01 11:31:50 +01:00
|
|
|
test_nghttp2_adjust_local_window_size) ||
|
|
|
|
!CU_add_test(pSuite, "check_header_name",
|
|
|
|
test_nghttp2_check_header_name) ||
|
|
|
|
!CU_add_test(pSuite, "check_header_value",
|
2014-03-14 13:40:14 +01:00
|
|
|
test_nghttp2_check_header_value) ||
|
|
|
|
!CU_add_test(pSuite, "bufs_add", test_nghttp2_bufs_add) ||
|
|
|
|
!CU_add_test(pSuite, "bufs_addb", test_nghttp2_bufs_addb) ||
|
|
|
|
!CU_add_test(pSuite, "bufs_orb", test_nghttp2_bufs_orb) ||
|
|
|
|
!CU_add_test(pSuite, "bufs_remove", test_nghttp2_bufs_remove) ||
|
|
|
|
!CU_add_test(pSuite, "bufs_reset", test_nghttp2_bufs_reset) ||
|
|
|
|
!CU_add_test(pSuite, "bufs_advance", test_nghttp2_bufs_advance) ||
|
|
|
|
!CU_add_test(pSuite, "bufs_seek_present",
|
|
|
|
test_nghttp2_bufs_seek_last_present) ||
|
|
|
|
!CU_add_test(pSuite, "bufs_next_present",
|
|
|
|
test_nghttp2_bufs_next_present)
|
2013-07-15 14:45:59 +02:00
|
|
|
) {
|
2012-01-19 13:36:13 +01:00
|
|
|
CU_cleanup_registry();
|
|
|
|
return CU_get_error();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Run all tests using the CUnit Basic interface */
|
|
|
|
CU_basic_set_mode(CU_BRM_VERBOSE);
|
|
|
|
CU_basic_run_tests();
|
2012-05-31 14:55:21 +02:00
|
|
|
num_tests_failed = CU_get_number_of_tests_failed();
|
2012-01-19 13:36:13 +01:00
|
|
|
CU_cleanup_registry();
|
2012-05-31 14:55:21 +02:00
|
|
|
if(CU_get_error() == CUE_SUCCESS) {
|
|
|
|
return num_tests_failed;
|
|
|
|
} else {
|
|
|
|
printf("CUnit Error: %s\n", CU_get_error_msg());
|
|
|
|
return CU_get_error();
|
|
|
|
}
|
2012-01-19 13:36:13 +01:00
|
|
|
}
|