[tor-commits] [tor/release-0.2.4] Add unit test for encoding ntor key in routerinfo
arma at torproject.org
arma at torproject.org
Sat May 25 03:58:40 UTC 2013
commit 4b15606fa2848f5112599865eb7b15ef2178e66a
Author: Nick Mathewson <nickm at torproject.org>
Date: Tue Apr 2 14:54:54 2013 -0400
Add unit test for encoding ntor key in routerinfo
---
src/test/test_dir.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/src/test/test_dir.c b/src/test/test_dir.c
index 6bcb6f0..8e498e4 100644
--- a/src/test/test_dir.c
+++ b/src/test/test_dir.c
@@ -131,6 +131,9 @@ test_dir_formats(void)
r2->or_port = 9005;
r2->dir_port = 0;
r2->onion_pkey = crypto_pk_dup_key(pk2);
+ r2->onion_curve25519_pkey = tor_malloc_zero(sizeof(curve25519_public_key_t));
+ curve25519_public_from_base64(r2->onion_curve25519_pkey,
+ "skyinAnvardNostarsNomoonNowindormistsorsnow");
r2->identity_pkey = crypto_pk_dup_key(pk1);
r2->bandwidthrate = r2->bandwidthburst = r2->bandwidthcapacity = 3000;
r2->exit_policy = smartlist_new();
@@ -211,6 +214,8 @@ test_dir_formats(void)
strlcat(buf2, "signing-key\n", sizeof(buf2));
strlcat(buf2, pk1_str, sizeof(buf2));
strlcat(buf2, "hidden-service-dir\n", sizeof(buf2));
+ strlcat(buf2, "ntor-onion-key "
+ "skyinAnvardNostarsNomoonNowindormistsorsnow=\n", sizeof(buf2));
strlcat(buf2, "accept *:80\nreject 18.0.0.0/8:24\n", sizeof(buf2));
strlcat(buf2, "router-signature\n", sizeof(buf2));
@@ -230,6 +235,9 @@ test_dir_formats(void)
test_eq(rp2->bandwidthrate, r2->bandwidthrate);
test_eq(rp2->bandwidthburst, r2->bandwidthburst);
test_eq(rp2->bandwidthcapacity, r2->bandwidthcapacity);
+ test_memeq(rp2->onion_curve25519_pkey->public_key,
+ r2->onion_curve25519_pkey->public_key,
+ CURVE25519_PUBKEY_LEN);
test_assert(crypto_pk_cmp_keys(rp2->onion_pkey, pk2) == 0);
test_assert(crypto_pk_cmp_keys(rp2->identity_pkey, pk1) == 0);
More information about the tor-commits
mailing list