mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-12 21:38:25 +00:00
115 lines
3.4 KiB
C
115 lines
3.4 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
|
|
*
|
|
* Copyright (C) 2017 Mario Limonciello <mario.limonciello@dell.com>
|
|
*
|
|
* Licensed under the GNU General Public License Version 2
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <fwupd.h>
|
|
#include <glib-object.h>
|
|
#include <glib/gstdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "fu-plugin-private.h"
|
|
|
|
static void
|
|
_plugin_status_changed_cb (FuPlugin *plugin, FwupdStatus status, gpointer user_data)
|
|
{
|
|
guint *cnt = (guint *) user_data;
|
|
(*cnt)++;
|
|
}
|
|
|
|
static void
|
|
_plugin_device_added_cb (FuPlugin *plugin, FuDevice *device, gpointer user_data)
|
|
{
|
|
GPtrArray **devices = (GPtrArray **) user_data;
|
|
g_ptr_array_add (*devices, device);
|
|
}
|
|
|
|
static void
|
|
fu_plugin_synapticsmst_func (void)
|
|
{
|
|
gboolean ret;
|
|
gint cnt = 0;
|
|
guint device_count;
|
|
GPtrArray *devices = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
FuDevice *device = NULL;
|
|
g_autoptr(FuPlugin) plugin = NULL;
|
|
const gchar *test_directory;
|
|
|
|
devices = g_ptr_array_new ();
|
|
|
|
plugin = fu_plugin_new ();
|
|
g_signal_connect (plugin, "device-added",
|
|
G_CALLBACK (_plugin_device_added_cb),
|
|
&devices);
|
|
g_signal_connect (plugin, "status-changed",
|
|
G_CALLBACK (_plugin_status_changed_cb),
|
|
&cnt);
|
|
ret = fu_plugin_open (plugin, PLUGINBUILDDIR "/libfu_plugin_synapticsmst.so", &error);
|
|
g_assert_no_error (error);
|
|
g_assert (ret);
|
|
ret = fu_plugin_runner_startup (plugin, &error);
|
|
g_assert_no_error (error);
|
|
g_assert (ret);
|
|
|
|
/* Test with no Synaptics MST devices */
|
|
test_directory = "./tests/no_devices";
|
|
if (g_file_test (test_directory, G_FILE_TEST_IS_DIR)) {
|
|
g_setenv ("FWUPD_SYNAPTICSMST_FW_DIR", test_directory, TRUE);
|
|
ret = fu_plugin_runner_coldplug (plugin, &error);
|
|
g_assert_no_error (error);
|
|
g_assert (ret);
|
|
}
|
|
|
|
/* Emulate adding/removing a Dell TB16 dock */
|
|
test_directory = "./tests/tb16_dock";
|
|
if (g_file_test (test_directory, G_FILE_TEST_IS_DIR)) {
|
|
g_setenv ("FWUPD_SYNAPTICSMST_FW_DIR", test_directory, TRUE);
|
|
ret = fu_plugin_runner_coldplug (plugin, &error);
|
|
g_assert_no_error (error);
|
|
g_assert (ret);
|
|
|
|
device_count = devices->len;
|
|
for (guint i = 0; i < device_count; i++) {
|
|
device = g_ptr_array_index (devices, i);
|
|
g_assert_cmpstr (fu_device_get_version (device), ==, "3.10.002");
|
|
g_ptr_array_remove (devices, device);
|
|
fu_plugin_device_remove (plugin, device);
|
|
}
|
|
}
|
|
g_ptr_array_unref (devices);
|
|
}
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
g_test_init (&argc, &argv, NULL);
|
|
|
|
/* only critical and error are fatal */
|
|
g_log_set_fatal_mask (NULL, G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL);
|
|
|
|
g_assert_cmpint (g_mkdir_with_parents ("/tmp/fwupd-self-test/var/lib/fwupd", 0755), ==, 0);
|
|
|
|
/* tests go here */
|
|
g_test_add_func ("/fwupd/plugin{synapticsmst}", fu_plugin_synapticsmst_func);
|
|
return g_test_run ();
|
|
}
|