view libpurple/tests/test_jabber_digest_md5.c @ 32778:1c0d9e817dcc

New branch for GSoC2012 project: Gadu-Gadu protocol plugin improvements. This commit makes trunk usable again - tunning default theme to match legacy Pidgin look&feel.
author tomkiewicz@cpw.pidgin.im
date Sat, 19 May 2012 16:38:38 +0000
parents e743507b3767
children
line wrap: on
line source

#include <string.h>

#include "tests.h"
#include "../util.h"
#include "../protocols/jabber/auth_digest_md5.h"
#include "../protocols/jabber/jutil.h"

START_TEST(test_parsing)
{
	GHashTable *table;

	table = jabber_auth_digest_md5_parse("r=\"realm\",token=   \"   asdf\"");
	fail_if(g_hash_table_lookup(table, "r") == NULL);
	assert_string_equal("realm", g_hash_table_lookup(table, "r"));
	fail_if(g_hash_table_lookup(table, "token") == NULL);
	assert_string_equal("asdf", g_hash_table_lookup(table, "token"));
	g_hash_table_destroy(table);

	table = jabber_auth_digest_md5_parse("r=\"a\", token=   \"   asdf\"");
	fail_if(g_hash_table_lookup(table, "r") == NULL);
	assert_string_equal("a", g_hash_table_lookup(table, "r"));
	fail_if(g_hash_table_lookup(table, "token") == NULL);
	assert_string_equal("asdf", g_hash_table_lookup(table, "token"));
	g_hash_table_destroy(table);

	table = jabber_auth_digest_md5_parse("r=\"\", token=   \"   asdf\"");
	fail_if(g_hash_table_lookup(table, "r") == NULL);
	assert_string_equal("", g_hash_table_lookup(table, "r"));
	fail_if(g_hash_table_lookup(table, "token") == NULL);
	assert_string_equal("asdf", g_hash_table_lookup(table, "token"));
	g_hash_table_destroy(table);

	table = jabber_auth_digest_md5_parse("realm=\"somerealm\",nonce=\"OA6MG9tEQGm2hh\",qop=\"auth\",charset=utf-8,algorithm=md5-sess");
	fail_if(g_hash_table_lookup(table, "realm") == NULL);
	assert_string_equal("somerealm", g_hash_table_lookup(table, "realm"));
	fail_if(g_hash_table_lookup(table, "nonce") == NULL);
	assert_string_equal("OA6MG9tEQGm2hh", g_hash_table_lookup(table, "nonce"));
	fail_if(g_hash_table_lookup(table, "qop") == NULL);
	assert_string_equal("auth", g_hash_table_lookup(table, "qop"));
	fail_if(g_hash_table_lookup(table, "charset") == NULL);
	assert_string_equal("utf-8", g_hash_table_lookup(table, "charset"));
	fail_if(g_hash_table_lookup(table, "algorithm") == NULL);
	assert_string_equal("md5-sess", g_hash_table_lookup(table, "algorithm"));

	g_hash_table_destroy(table);

}
END_TEST

Suite *
jabber_digest_md5_suite(void)
{
	Suite *s = suite_create("Jabber SASL DIGEST-MD5 functions");

	TCase *tc = tcase_create("Parsing Functionality");
	tcase_add_test(tc, test_parsing);
	suite_add_tcase(s, tc);
	return s;
}