[tor-commits] [tor/master] Add test for HiddenServiceAuthorizeClient and v3 onion services

dgoulet at torproject.org dgoulet at torproject.org
Tue Oct 30 15:14:51 UTC 2018


commit cd9914d9f91a2fd1f56e1c0f89bee57b9a49bbc6
Author: Neel Chauhan <neel at neelc.org>
Date:   Wed Oct 24 12:20:10 2018 -0400

    Add test for HiddenServiceAuthorizeClient and v3 onion services
---
 src/test/test_hs_config.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/src/test/test_hs_config.c b/src/test/test_hs_config.c
index 553b96758..b6ab0c21f 100644
--- a/src/test/test_hs_config.c
+++ b/src/test/test_hs_config.c
@@ -366,6 +366,22 @@ test_invalid_service_v3(void *arg)
     teardown_capture_of_logs();
   }
 
+  /* v2-specific HiddenServiceAuthorizeClient set. */
+  {
+    const char *conf =
+      "HiddenServiceDir /tmp/tor-test-hs-RANDOM/hs1\n"
+      "HiddenServiceVersion 3\n"
+      "HiddenServiceAuthorizeClient stealth client1\n";
+    setup_full_capture_of_logs(LOG_WARN);
+    ret = helper_config_service(conf, validate_only);
+    tt_int_op(ret, OP_EQ, -1);
+    expect_log_msg_containing("Hidden service option "
+                              "HiddenServiceAuthorizeClient is incompatible "
+                              "with version 3 of service in "
+                              "/tmp/tor-test-hs-RANDOM/hs1");
+    teardown_capture_of_logs();
+  }
+
  done:
   ;
 }





More information about the tor-commits mailing list