Changeset 757515a for tests


Ignore:
Timestamp:
2014-07-24T03:51:07Z (10 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
1783ab6
Parents:
778ea8a
git-author:
GRMrGecko <GRMrGecko@…> (24-07-14 03:51:07)
git-committer:
dequis <dx@…> (24-07-14 03:51:07)
Message:

Added jabber_compare_jid to fix JID comparison case sensitivity

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/check_jabber_util.c

    r778ea8a r757515a  
    9595}
    9696
     97static void check_compareJID(int l)
     98{
     99        fail_unless( jabber_compare_jid( "bugtest@google.com/B", "bugtest@google.com/A" ) );
     100        fail_if( jabber_compare_jid( "bugtest1@google.com/B", "bugtest@google.com/A" ) );
     101        fail_if( jabber_compare_jid( "bugtest@google.com/B", "bugtest1@google.com/A" ) );
     102        fail_if( jabber_compare_jid( "bugtest1@google.com/B", "bugtest2@google.com/A" ) );
     103        fail_unless( jabber_compare_jid( "bugtest@google.com/A", "bugtest@google.com/A" ) );
     104        fail_if( jabber_compare_jid( "", "bugtest@google.com/A" ) );
     105}
     106
    97107Suite *jabber_util_suite (void)
    98108{
     
    110120        suite_add_tcase (s, tc_core);
    111121        tcase_add_test (tc_core, check_buddy_add);
     122        tcase_add_test (tc_core, check_compareJID);
    112123        return s;
    113124}
Note: See TracChangeset for help on using the changeset viewer.