Make dir servers include a "Date:" http header more often
[tor.git] / src / test / test_helpers.h
blob847104a40a9839df318fb2f893290283d9286266
1 /* Copyright (c) 2017, The Tor Project, Inc. */
2 /* See LICENSE for licensing information */
4 #ifndef TOR_TEST_HELPERS_H
5 #define TOR_TEST_HELPERS_H
7 #include "or.h"
9 const char *get_yesterday_date_str(void);
11 circuit_t * dummy_origin_circuit_new(int num_cells);
13 /* Number of descriptors contained in test_descriptors.txt. */
14 #define HELPER_NUMBER_OF_DESCRIPTORS 8
16 void helper_setup_fake_routerlist(void);
18 #define GET(path) "GET " path " HTTP/1.0\r\n\r\n"
19 void connection_write_to_buf_mock(const char *string, size_t len,
20 connection_t *conn, int compressed);
22 int mock_tor_addr_lookup__fail_on_bad_addrs(const char *name,
23 uint16_t family, tor_addr_t *out);
25 connection_t *test_conn_get_connection(uint8_t state,
26 uint8_t type, uint8_t purpose);
27 or_options_t *helper_parse_options(const char *conf);
29 extern const char TEST_DESCRIPTORS[];
31 #endif /* TOR_TEST_HELPERS_H */