1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-08 19:34:14 -04:00
profanity/tests/otr/mock_otr.c

50 lines
926 B
C
Raw Normal View History

2014-02-16 14:14:15 -05:00
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <stdlib.h>
#include <string.h>
#include <glib.h>
#include "otr/otr.h"
#include "config/account.h"
static void
_mock_otr_keygen(ProfAccount *account)
{
check_expected(account);
}
static char *
_mock_otr_libotr_version(void)
{
return (char *)mock();
}
2014-02-17 16:52:42 -05:00
static char *
_mock_otr_get_my_fingerprint(void)
2014-02-16 14:14:15 -05:00
{
2014-02-17 16:52:42 -05:00
return (char *)mock();
2014-02-16 14:14:15 -05:00
}
void
otr_keygen_expect(ProfAccount *account)
{
2014-02-16 14:35:40 -05:00
otr_keygen = _mock_otr_keygen;
2014-02-16 14:14:15 -05:00
expect_memory(_mock_otr_keygen, account, account, sizeof(ProfAccount));
}
void
otr_libotr_version_returns(char *version)
{
2014-02-17 16:52:42 -05:00
otr_libotr_version = _mock_otr_libotr_version;
2014-02-16 14:14:15 -05:00
will_return(_mock_otr_libotr_version, version);
}
2014-02-17 16:52:42 -05:00
void
otr_get_my_fingerprint_returns(char *fingerprint)
{
otr_get_my_fingerprint = _mock_otr_get_my_fingerprint;
will_return(_mock_otr_get_my_fingerprint, fingerprint);
}