mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
test_pt_configure_proxy(): verify the internals of the managed proxy.
This commit is contained in:
parent
920f5aba1a
commit
00a7d1af9f
@ -321,7 +321,7 @@ get_or_state_replacement(void)
|
|||||||
static void
|
static void
|
||||||
test_pt_configure_proxy(void *arg)
|
test_pt_configure_proxy(void *arg)
|
||||||
{
|
{
|
||||||
int i;
|
int i, retval;
|
||||||
managed_proxy_t *mp = NULL;
|
managed_proxy_t *mp = NULL;
|
||||||
(void) arg;
|
(void) arg;
|
||||||
|
|
||||||
@ -346,9 +346,21 @@ test_pt_configure_proxy(void *arg)
|
|||||||
times while it is uninitialized and then finally finalizing its
|
times while it is uninitialized and then finally finalizing its
|
||||||
configuration. */
|
configuration. */
|
||||||
for (i = 0 ; i < 5 ; i++) {
|
for (i = 0 ; i < 5 ; i++) {
|
||||||
test_assert(configure_proxy(mp) == 0);
|
retval = configure_proxy(mp);
|
||||||
|
/* retval should be zero because proxy hasn't finished configuring yet */
|
||||||
|
test_assert(retval == 0);
|
||||||
|
/* check the number of registered transports */
|
||||||
|
test_assert(smartlist_len(mp->transports) == i+1);
|
||||||
|
/* check that the mp is still waiting for transports */
|
||||||
|
test_assert(mp->conf_state == PT_PROTO_ACCEPTING_METHODS);
|
||||||
}
|
}
|
||||||
test_assert(configure_proxy(mp) == 1);
|
|
||||||
|
/* this last configure_proxy() should finalize the proxy configuration. */
|
||||||
|
retval = configure_proxy(mp);
|
||||||
|
/* retval should be 1 since the proxy finished configuring */
|
||||||
|
test_assert(retval == 1);
|
||||||
|
/* check the mp state */
|
||||||
|
test_assert(mp->conf_state == PT_PROTO_COMPLETED);
|
||||||
|
|
||||||
done:
|
done:
|
||||||
tor_free(dummy_state);
|
tor_free(dummy_state);
|
||||||
|
Loading…
Reference in New Issue
Block a user