]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Prop#329 Tests: Add tests for conflux cells.
authorDavid Goulet <dgoulet@torproject.org>
Wed, 1 Feb 2023 22:32:33 +0000 (22:32 +0000)
committerMike Perry <mikeperry-git@torproject.org>
Thu, 6 Apr 2023 15:57:10 +0000 (15:57 +0000)
Signed-off-by: David Goulet <dgoulet@torproject.org>
src/test/include.am
src/test/test.c
src/test/test.h
src/test/test_conflux_cell.c [new file with mode: 0644]

index 2765cf27d00521dc3fe9959d428bb0f15d0b67a3..1c2929c3ca2e6aa4d9ee33a972a0e19aa61a823c 100644 (file)
@@ -147,6 +147,7 @@ src_test_test_SOURCES += \
        src/test/test_circuitstats.c \
        src/test/test_compat_libevent.c \
        src/test/test_config.c \
+       src/test/test_conflux_cell.c \
        src/test/test_confmgr.c \
        src/test/test_confparse.c \
        src/test/test_connection.c \
index 6b7e0b64422a78e34328bdae5ef45e7b7ed93648..e1252eda661d2824d20dd1910d687e7dd06b18e9 100644 (file)
@@ -778,6 +778,7 @@ struct testgroup_t testgroups[] = {
   { "config/", config_tests },
   { "config/mgr/", confmgr_tests },
   { "config/parse/", confparse_tests },
+  { "conflux/cell/", conflux_cell_tests },
   { "connection/", connection_tests },
   { "conscache/", conscache_tests },
   { "consdiff/", consdiff_tests },
index e17bce427c57cfe24db9e6c9adc26a38d9bbe7bb..fb0ea98f936554cac6853047314c40c7ba7ae439 100644 (file)
@@ -107,6 +107,7 @@ extern struct testcase_t circuitstats_tests[];
 extern struct testcase_t circuituse_tests[];
 extern struct testcase_t compat_libevent_tests[];
 extern struct testcase_t config_tests[];
+extern struct testcase_t conflux_cell_tests[];
 extern struct testcase_t confmgr_tests[];
 extern struct testcase_t confparse_tests[];
 extern struct testcase_t connection_tests[];
diff --git a/src/test/test_conflux_cell.c b/src/test/test_conflux_cell.c
new file mode 100644 (file)
index 0000000..bb440d0
--- /dev/null
@@ -0,0 +1,60 @@
+/* Copyright (c) 2023, The Tor Project, Inc. */
+/* See LICENSE for licensing information */
+
+/**
+ * \file test_conflux_cell.
+ * \brief Test conflux cells.
+ */
+
+#include "test/test.h"
+#include "test/test_helpers.h"
+#include "test/log_test_helpers.h"
+
+#include "core/or/conflux_cell.h"
+#include "core/or/conflux_st.h"
+#include "trunnel/conflux.h"
+
+#include "lib/crypt_ops/crypto_rand.h"
+
+static void
+test_link(void *arg)
+{
+  cell_t cell;
+  conflux_cell_link_t link;
+  conflux_cell_link_t *decoded_link = NULL;
+
+  (void) arg;
+
+  memset(&link, 0, sizeof(link));
+
+  link.desired_ux = CONFLUX_UX_HIGH_THROUGHPUT;
+  link.last_seqno_recv = 0;
+  link.last_seqno_sent = 0;
+  link.version = 0x01;
+
+  crypto_rand((char *) link.nonce, sizeof(link.nonce));
+
+  ssize_t cell_len = build_link_cell(&link, cell.payload+RELAY_HEADER_SIZE);
+  tt_int_op(cell_len, OP_GT, 0);
+
+  decoded_link = conflux_cell_parse_link(&cell, cell_len);
+  tt_assert(decoded_link);
+
+  uint8_t buf[RELAY_PAYLOAD_SIZE];
+  ssize_t enc_cell_len = build_link_cell(decoded_link, buf);
+  tt_int_op(cell_len, OP_EQ, enc_cell_len);
+
+  /* Validate the original link object with the decoded one. */
+  tt_mem_op(&link, OP_EQ, decoded_link, sizeof(link));
+  tor_free(decoded_link);
+
+ done:
+  tor_free(decoded_link);
+}
+
+struct testcase_t conflux_cell_tests[] = {
+  { "link", test_link, TT_FORK, NULL, NULL },
+
+  END_OF_TESTCASES
+};
+