1
0
Fork 0
gnome-software/plugins/fwupd/gs-self-test.c
Daniel Baumann 68ee05b3fd
Adding upstream version 48.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 21:00:23 +02:00

106 lines
3.6 KiB
C

/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
* vi:set noexpandtab tabstop=8 shiftwidth=8:
*
* Copyright (C) 2013-2017 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "config.h"
#include <fwupd.h>
#include "gnome-software-private.h"
#include "gs-test.h"
static void
gs_plugins_fwupd_func (GsPluginLoader *plugin_loader)
{
g_autofree gchar *fn = NULL;
g_autoptr(GError) error = NULL;
g_autoptr(GFile) file = NULL;
g_autoptr(GsApp) app = NULL;
g_autoptr(GsPluginJob) plugin_job = NULL;
GsSizeType size_download_type;
guint64 size_download_bytes;
/* no fwupd, abort */
if (!gs_plugin_loader_get_enabled (plugin_loader, "fwupd")) {
g_test_skip ("not enabled");
return;
}
/* load local file */
fn = gs_test_get_filename (TESTDATADIR, "chiron-0.2.cab");
g_assert_nonnull (fn);
file = g_file_new_for_path (fn);
plugin_job = gs_plugin_job_file_to_app_new (file, GS_PLUGIN_FILE_TO_APP_FLAGS_NONE);
app = gs_plugin_loader_job_process_app (plugin_loader, plugin_job, NULL, &error);
gs_test_flush_main_context ();
g_assert_no_error (error);
g_assert_nonnull (app);
g_assert_cmpint (gs_app_get_kind (app), ==, AS_COMPONENT_KIND_FIRMWARE);
g_assert_nonnull (gs_app_get_license (app));
g_assert_true (gs_app_has_category (app, "System"));
g_assert_cmpstr (gs_app_get_id (app), ==, "com.test.chiron.firmware");
g_assert_cmpstr (gs_app_get_url (app, AS_URL_KIND_HOMEPAGE), ==, "http://127.0.0.1/");
g_assert_cmpstr (gs_app_get_name (app), ==, "Chiron");
g_assert_cmpstr (gs_app_get_summary (app), ==, "Single line synopsis");
g_assert_cmpstr (gs_app_get_version (app), ==, "0.2");
size_download_type = gs_app_get_size_download (app, &size_download_bytes);
g_assert_cmpint (size_download_type, ==, GS_SIZE_TYPE_VALID);
g_assert_cmpuint (size_download_bytes, ==, 32784);
#if FWUPD_CHECK_VERSION(1, 7, 1) && !FWUPD_CHECK_VERSION(1, 8, 0)
/* Changes introduced in fwupd commit d3706e0e0b0fc210796da839b84ac391f7a251f8 and
removed for 1.8.0 with https://github.com/fwupd/fwupd/commit/0eeaad76ec79562ea3790bb377d847d5be02182f */
g_assert_cmpstr (gs_app_get_update_details_markup (app), ==,
"Some of the platform secrets may be invalidated when "
"updating this firmware. Please ensure you have the "
"volume recovery key before continuing.\n\nLatest "
"firmware release.");
#else
g_assert_cmpstr (gs_app_get_update_details_markup (app), ==,
"Latest firmware release.");
#endif
/* seems wrong, but this is only set if the update is available */
g_assert_cmpint (gs_app_get_state (app), ==, GS_APP_STATE_UNKNOWN);
}
int
main (int argc, char **argv)
{
gboolean ret;
g_autoptr(GError) error = NULL;
g_autoptr(GsPluginLoader) plugin_loader = NULL;
const gchar * const allowlist[] = {
"fwupd",
NULL
};
/* While we use %G_TEST_OPTION_ISOLATE_DIRS to create temporary directories
* for each of the tests, we want to use the system MIME registry, assuming
* that it exists and correctly has shared-mime-info installed. */
g_content_type_set_mime_dirs (NULL);
gs_test_init (&argc, &argv);
/* we can only load this once per process */
plugin_loader = gs_plugin_loader_new (NULL, NULL);
gs_plugin_loader_add_location (plugin_loader, LOCALPLUGINDIR);
ret = gs_plugin_loader_setup (plugin_loader,
allowlist,
NULL,
NULL,
&error);
g_assert_no_error (error);
g_assert_true (ret);
/* plugin tests go here */
g_test_add_data_func ("/gnome-software/plugins/fwupd",
plugin_loader,
(GTestDataFunc) gs_plugins_fwupd_func);
return g_test_run ();
}