2013-08-27 17:09:46 +02:00
|
|
|
/*
|
2014-03-30 12:09:21 +02:00
|
|
|
* nghttp2 - HTTP/2 C Library
|
2013-08-27 17:09:46 +02:00
|
|
|
*
|
|
|
|
* Copyright (c) 2013 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 UTIL_TEST_H
|
|
|
|
#define UTIL_TEST_H
|
|
|
|
|
2015-05-13 15:30:35 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif // HAVE_CONFIG_H
|
|
|
|
|
2013-08-27 17:09:46 +02:00
|
|
|
namespace shrpx {
|
|
|
|
|
|
|
|
void test_util_streq(void);
|
2014-01-16 15:41:13 +01:00
|
|
|
void test_util_strieq(void);
|
2013-08-27 17:09:46 +02:00
|
|
|
void test_util_inp_strlower(void);
|
2013-11-09 08:18:01 +01:00
|
|
|
void test_util_to_base64(void);
|
2015-02-10 14:35:10 +01:00
|
|
|
void test_util_to_token68(void);
|
2014-04-03 06:20:50 +02:00
|
|
|
void test_util_percent_encode_token(void);
|
2015-03-05 15:22:21 +01:00
|
|
|
void test_util_percent_encode_path(void);
|
2015-02-10 14:35:10 +01:00
|
|
|
void test_util_percent_decode(void);
|
2014-10-27 16:17:32 +01:00
|
|
|
void test_util_quote_string(void);
|
2014-05-14 15:39:28 +02:00
|
|
|
void test_util_utox(void);
|
2014-11-10 13:26:48 +01:00
|
|
|
void test_util_http_date(void);
|
2014-12-15 14:51:34 +01:00
|
|
|
void test_util_select_h2(void);
|
2015-01-10 13:33:53 +01:00
|
|
|
void test_util_ipv6_numeric_addr(void);
|
2016-03-10 15:50:04 +01:00
|
|
|
void test_util_utos(void);
|
2016-03-12 10:00:50 +01:00
|
|
|
void test_util_make_string_ref_uint(void);
|
2016-01-11 10:12:31 +01:00
|
|
|
void test_util_utos_unit(void);
|
|
|
|
void test_util_utos_funit(void);
|
2015-01-13 13:54:53 +01:00
|
|
|
void test_util_parse_uint_with_unit(void);
|
2015-01-15 15:07:25 +01:00
|
|
|
void test_util_parse_uint(void);
|
2015-01-29 15:28:47 +01:00
|
|
|
void test_util_parse_duration_with_unit(void);
|
|
|
|
void test_util_duration_str(void);
|
2015-01-31 10:13:07 +01:00
|
|
|
void test_util_format_duration(void);
|
2015-02-10 14:35:10 +01:00
|
|
|
void test_util_starts_with(void);
|
|
|
|
void test_util_ends_with(void);
|
2015-06-29 16:14:54 +02:00
|
|
|
void test_util_parse_http_date(void);
|
|
|
|
void test_util_localtime_date(void);
|
2015-07-25 15:22:17 +02:00
|
|
|
void test_util_get_uint64(void);
|
2015-09-14 15:33:48 +02:00
|
|
|
void test_util_parse_config_str_list(void);
|
2016-02-13 15:21:32 +01:00
|
|
|
void test_util_make_http_hostport(void);
|
|
|
|
void test_util_make_hostport(void);
|
2016-03-24 16:27:59 +01:00
|
|
|
void test_util_strifind(void);
|
2016-09-30 16:09:02 +02:00
|
|
|
void test_util_random_alpha_digit(void);
|
2016-10-01 17:19:50 +02:00
|
|
|
void test_util_format_hex(void);
|
2013-08-27 17:09:46 +02:00
|
|
|
|
|
|
|
} // namespace shrpx
|
|
|
|
|
|
|
|
#endif // UTIL_TEST_H
|