pidgin/pidgin

Bump the versions for the next round of development
release-2.x.y
2021-05-13, Gary Kramlich
47988aaeaf57
Bump the versions for the next round of development

Testing Done:
Configured and built.

Reviewed at https://reviews.imfreedom.org/r/642/
#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;
}