[tor-commits] [tor/release-0.3.4] Bug 23512: Mock assert_circuit_ok in tests.

teor at torproject.org teor at torproject.org
Wed Mar 13 23:06:43 UTC 2019


commit dfd3823047d05a878a7a559ab6fc539dcad240fc
Author: Mike Perry <mikeperry-git at torproject.org>
Date:   Fri Sep 14 20:28:47 2018 +0000

    Bug 23512: Mock assert_circuit_ok in tests.
    
    This mocking was not available in 0.2.9.
---
 src/test/test_relay.c | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/src/test/test_relay.c b/src/test/test_relay.c
index ce8ff1a91..f18de805f 100644
--- a/src/test/test_relay.c
+++ b/src/test/test_relay.c
@@ -48,12 +48,6 @@ new_fake_orcirc(channel_t *nchan, channel_t *pchan)
   circ->deliver_window = CIRCWINDOW_START_MAX;
   circ->n_chan_create_cell = NULL;
 
-  /* for assert_circ_ok */
-  orcirc->p_crypto = (void*)1;
-  orcirc->n_crypto = (void*)1;
-  orcirc->n_digest = (void*)1;
-  orcirc->p_digest = (void*)1;
-
   circuit_set_p_circid_chan(orcirc, get_unique_circ_id_by_chan(pchan), pchan);
   cell_queue_init(&(orcirc->p_chan_cells));
 
@@ -61,6 +55,13 @@ new_fake_orcirc(channel_t *nchan, channel_t *pchan)
 }
 
 static void
+assert_circuit_ok_mock(const circuit_t *c)
+{
+  (void) c;
+  return;
+}
+
+static void
 test_relay_close_circuit(void *arg)
 {
   channel_t *nchan = NULL, *pchan = NULL;
@@ -95,6 +96,8 @@ test_relay_close_circuit(void *arg)
 
   MOCK(scheduler_channel_has_waiting_cells,
        scheduler_channel_has_waiting_cells_mock);
+  MOCK(assert_circuit_ok,
+       assert_circuit_ok_mock);
 
   /* Append it */
   old_count = get_mock_scheduler_has_waiting_cells_count();
@@ -146,6 +149,7 @@ test_relay_close_circuit(void *arg)
   tor_free(orcirc);
   free_fake_channel(nchan);
   free_fake_channel(pchan);
+  UNMOCK(assert_circuit_ok);
 
   return;
 }





More information about the tor-commits mailing list