tests: Move tod context creation into test-utils-tod library

This commit is contained in:
Marco Trevisan (Treviño)
2020-12-03 02:39:33 +01:00
parent 99063246b7
commit d83453de02
4 changed files with 85 additions and 32 deletions
+1 -31
View File
@@ -19,37 +19,7 @@
#include <libfprint/fprint.h>
#include "test-utils.h"
static FptContext *
fpt_context_new_with_fake_dev (void)
{
FptContext *tctx;
GPtrArray *devices;
unsigned int i;
tctx = fpt_context_new ();
devices = fp_context_get_devices (tctx->fp_context);
g_assert_nonnull (devices);
g_assert_cmpuint (devices->len, ==, 1);
for (i = 0; i < devices->len; ++i)
{
FpDevice *device = devices->pdata[i];
if (g_strcmp0 (fp_device_get_driver (device), "fake_test_dev") == 0)
{
tctx->device = device;
break;
}
}
g_assert_true (FP_IS_DEVICE (tctx->device));
g_object_add_weak_pointer (G_OBJECT (tctx->device), (gpointer) & tctx->device);
return tctx;
}
#include "test-utils-tod.h"
static void
on_device_opened (FpDevice *dev, GAsyncResult *res, FptContext *tctx)