[svn-commits] russell: trunk r245345 - /trunk/tests/test_sha1.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sun Feb 7 18:42:24 CST 2010


Author: russell
Date: Sun Feb  7 18:42:21 2010
New Revision: 245345

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=245345
Log:
Add a SHA1 test module.

Review: https://reviewboard.asterisk.org/r/492/

Added:
    trunk/tests/test_sha1.c   (with props)

Added: trunk/tests/test_sha1.c
URL: http://svnview.digium.com/svn/asterisk/trunk/tests/test_sha1.c?view=auto&rev=245345
==============================================================================
--- trunk/tests/test_sha1.c (added)
+++ trunk/tests/test_sha1.c Sun Feb  7 18:42:21 2010
@@ -1,0 +1,100 @@
+/*
+ * Asterisk -- An open source telephony toolkit.
+ *
+ * Copyright (C) 2010, Digium, Inc.
+ *
+ * Russell Bryant <russell at digium.com>
+ *
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2. See the LICENSE file
+ * at the top of the source tree.
+ */
+
+/*!
+ * \file
+ * \brief SHA1 test
+ *
+ * \author Russell Bryant <russell at digium.com>
+ *
+ * \ingroup tests
+ */
+
+/*** MODULEINFO
+	<depend>TEST_FRAMEWORK</depend>
+ ***/
+
+#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
+#include "asterisk/utils.h"
+#include "asterisk/module.h"
+#include "asterisk/test.h"
+
+AST_TEST_DEFINE(sha1_test)
+{
+	static const struct {
+		const char *input;
+		const char *expected_output;
+	} tests[] = {
+		{ "giraffe",
+			"fac8f1a31d2998734d6a5253e49876b8e6a08239" },
+		{ "platypus",
+			"1dfb21b7a4d35e90d943e3a16107ccbfabd064d5" },
+		{ "ParastratiosphecomyiaStratiosphecomyioides",
+			"58af4e8438676f2bd3c4d8df9e00ee7fe06945bb" },
+	};
+	enum ast_test_result_state res = AST_TEST_PASS;
+	int i;
+
+	switch (cmd) {
+	case TEST_INIT:
+		info->name = "sha1_test";
+		info->category = "main/";
+		info->summary = "SHA1 test";
+		info->description =
+			"This test exercises SHA1 calculations.\n"
+			"";
+		return AST_TEST_NOT_RUN;
+	case TEST_EXECUTE:
+		break;
+	}
+
+	ast_test_status_update(&args->status_update, "Testing SHA1 ...\n");
+
+	for (i = 0; i < ARRAY_LEN(tests); i++) {
+		char sha1_hash[64];
+		ast_sha1_hash(sha1_hash, tests[i].input);
+		if (strcasecmp(sha1_hash, tests[i].expected_output)) {
+			ast_test_status_update(&args->status_update,
+					"input: '%s'  hash: '%s'  expected hash: '%s'\n",
+					tests[i].input, sha1_hash, tests[i].expected_output);
+			ast_str_append(&args->ast_test_error_str, 0,
+					"input: '%s'  hash: '%s'  expected hash: '%s'\n",
+					tests[i].input, sha1_hash, tests[i].expected_output);
+			res = AST_TEST_FAIL;
+		}
+	}
+
+	return res;
+}
+
+static int unload_module(void)
+{
+	AST_TEST_UNREGISTER(sha1_test);
+	return 0;
+}
+
+static int load_module(void)
+{
+	AST_TEST_REGISTER(sha1_test);
+	return AST_MODULE_LOAD_SUCCESS;
+}
+
+AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "SHA1 Test");

Propchange: trunk/tests/test_sha1.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: trunk/tests/test_sha1.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: trunk/tests/test_sha1.c
------------------------------------------------------------------------------
    svn:mime-type = text/plain




More information about the svn-commits mailing list