1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/*
* SPDX-FileCopyrightText: 2021 Red Hat Inc.
* SPDX-License-Identifier: LGPL-2.1-or-later
*
* Author: Bastien Nocera <hadess@hadess.net>
*/
#include <locale.h>
#include <unistd.h>
#include <stdio.h>
#include <sys/wait.h>
#include <glib.h>
#include <gio/gio.h>
#include <umockdev.h>
#include <langinfo.h>
#include <gudev/gudev.h>
#define GNU_SKIP_RETURNCODE 77
typedef struct {
UMockdevTestbed *testbed;
} Fixture;
static void
fixture_setup (Fixture *f, G_GNUC_UNUSED const void *data)
{
f->testbed = umockdev_testbed_new ();
g_assert (umockdev_in_mock_environment ());
}
static void
fixture_teardown (Fixture *f, G_GNUC_UNUSED const void *data)
{
g_clear_object (&f->testbed);
}
static void
test_double (Fixture *f, G_GNUC_UNUSED const void *data)
{
g_assert_cmpstr (nl_langinfo(RADIXCHAR), ==, ",");
umockdev_testbed_add_device (f->testbed, "platform", "dev1", NULL,
"in_accel_scale", "0.0000098", NULL,
"ID_MODEL", "KoolGadget", "SCALE", "0.0000098", NULL);
/* Check the number of items in GUdevClient */
const gchar *subsystems[] = { "platform", NULL};
GUdevClient *client = g_udev_client_new (subsystems);
GUdevDevice *dev;
g_autofree char *path = NULL;
gdouble scale;
GList *devices = g_udev_client_query_by_subsystem (client, NULL);
g_assert_cmpint (g_list_length (devices), ==, 1);
dev = devices->data;
scale = g_udev_device_get_sysfs_attr_as_double (dev, "in_accel_scale");
g_assert_cmpfloat (scale, ==, 0.0000098);
scale = g_udev_device_get_property_as_double (dev, "SCALE");
g_assert_cmpfloat (scale, ==, 0.0000098);
g_list_free_full (devices, g_object_unref);
}
int main(int argc, char **argv)
{
setlocale (LC_ALL, NULL);
/* Skip if locale is unavailable */
if (setlocale (LC_NUMERIC, "fr_FR.UTF-8") == NULL)
return GNU_SKIP_RETURNCODE;
g_test_init (&argc, &argv, NULL);
g_test_add ("/gudev/double", Fixture, NULL,
fixture_setup,
test_double,
fixture_teardown);
return g_test_run ();
}
|