2018-06-20 14:13:28 +02:00
|
|
|
/* Copyright (c) 2017-2018, The Tor Project, Inc. */
|
2015-01-29 16:09:53 +01:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
|
|
|
|
#ifndef TOR_TEST_HELPERS_H
|
|
|
|
#define TOR_TEST_HELPERS_H
|
|
|
|
|
2018-09-15 15:33:05 +02:00
|
|
|
#define BUFFERS_PRIVATE
|
|
|
|
|
2018-07-05 22:34:59 +02:00
|
|
|
#include "core/or/or.h"
|
2017-05-02 15:36:59 +02:00
|
|
|
|
2015-01-29 16:09:53 +01:00
|
|
|
const char *get_yesterday_date_str(void);
|
|
|
|
|
2016-10-16 13:40:37 +02:00
|
|
|
circuit_t * dummy_origin_circuit_new(int num_cells);
|
|
|
|
|
2015-02-18 15:19:38 +01:00
|
|
|
/* Number of descriptors contained in test_descriptors.txt. */
|
|
|
|
#define HELPER_NUMBER_OF_DESCRIPTORS 8
|
|
|
|
|
|
|
|
void helper_setup_fake_routerlist(void);
|
|
|
|
|
2016-08-25 17:11:23 +02:00
|
|
|
#define GET(path) "GET " path " HTTP/1.0\r\n\r\n"
|
|
|
|
void connection_write_to_buf_mock(const char *string, size_t len,
|
2017-04-27 03:36:02 +02:00
|
|
|
connection_t *conn, int compressed);
|
2018-09-15 15:33:05 +02:00
|
|
|
char *buf_get_contents(buf_t *buf, size_t *sz_out);
|
2016-08-25 17:11:23 +02:00
|
|
|
|
2017-01-03 16:11:23 +01:00
|
|
|
int mock_tor_addr_lookup__fail_on_bad_addrs(const char *name,
|
|
|
|
uint16_t family, tor_addr_t *out);
|
|
|
|
|
2017-05-02 15:35:22 +02:00
|
|
|
connection_t *test_conn_get_connection(uint8_t state,
|
|
|
|
uint8_t type, uint8_t purpose);
|
2017-01-13 17:20:31 +01:00
|
|
|
or_options_t *helper_parse_options(const char *conf);
|
2017-05-02 15:35:22 +02:00
|
|
|
|
2015-02-18 15:19:38 +01:00
|
|
|
extern const char TEST_DESCRIPTORS[];
|
|
|
|
|
2017-09-15 22:24:44 +02:00
|
|
|
#endif /* !defined(TOR_TEST_HELPERS_H) */
|
2015-01-29 16:09:53 +01:00
|
|
|
|