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
|
/*
* libssc: Library to expose Qualcomm Sensor Core sensors
* Copyright (C) 2022-2026 Dylan Van Assche
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <glib.h>
#include <locale.h>
#include "libssc-client-private.h"
#include "libssc-sensor.h"
#include "libssc-sensor-proximity.h"
static void
test_libssc_sensor_no_service(void)
{
g_autoptr (GError) error = NULL;
/* Test information */
g_test_summary ("Test `no SSC service available`");
/* Create sensor */
SSCSensorProximity *sensor = ssc_sensor_proximity_new_sync (NULL, &error);
g_assert_true(error != NULL);
g_assert_true(sensor == NULL);
}
int main (int argc, char *argv[])
{
GLogLevelFlags mask;
setlocale (LC_ALL, "");
/* Initialize test framework */
g_test_init (&argc, &argv, NULL);
/* Allow warnings */
mask = (GLogLevelFlags) g_log_set_always_fatal ((GLogLevelFlags) G_LOG_FATAL_MASK);
mask = (GLogLevelFlags) (mask & (~G_LOG_LEVEL_WARNING));
g_log_set_always_fatal ((GLogLevelFlags) mask);
/* Tests */
g_test_add_func("/libssc/sensor/no-service", test_libssc_sensor_no_service);
/* Execute tests */
return g_test_run();
}
|