mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-02 18:30:40 +00:00

The buildds can't write to /var/cache/fwupd, and for that matter fwupd shouldn't be writing during tests anyway.
103 lines
2.9 KiB
C
103 lines
2.9 KiB
C
/*
|
|
* Copyright (C) 2018 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <fwupd.h>
|
|
|
|
#include "fu-context-private.h"
|
|
#include "fu-device-private.h"
|
|
#include "fu-nvme-device.h"
|
|
|
|
static void
|
|
fu_nvme_cns_func(void)
|
|
{
|
|
gboolean ret;
|
|
gsize sz;
|
|
const gchar *ci = g_getenv("CI_NETWORK");
|
|
g_autofree gchar *data = NULL;
|
|
g_autofree gchar *path = NULL;
|
|
g_autoptr(FuContext) ctx = fu_context_new();
|
|
g_autoptr(FuNvmeDevice) dev = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
ret = fu_context_load_quirks(ctx, FU_QUIRKS_LOAD_FLAG_NO_CACHE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
|
|
path = g_test_build_filename(G_TEST_DIST, "tests", "TOSHIBA_THNSN5512GPU7.bin", NULL);
|
|
|
|
if (!g_file_test(path, G_FILE_TEST_EXISTS) && ci == NULL) {
|
|
g_test_skip("Missing TOSHIBA_THNSN5512GPU7.bin");
|
|
return;
|
|
}
|
|
ret = g_file_get_contents(path, &data, &sz, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
dev = fu_nvme_device_new_from_blob(ctx, (guint8 *)data, sz, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(dev);
|
|
fu_device_convert_instance_ids(FU_DEVICE(dev));
|
|
g_assert_cmpstr(fu_device_get_name(FU_DEVICE(dev)), ==, "THNSN5512GPU7 TOSHIBA");
|
|
g_assert_cmpstr(fu_device_get_version(FU_DEVICE(dev)), ==, "410557LA");
|
|
g_assert_cmpstr(fu_device_get_serial(FU_DEVICE(dev)), ==, "37RSDEADBEEF");
|
|
g_assert_cmpstr(fu_device_get_guid_default(FU_DEVICE(dev)),
|
|
==,
|
|
"e1409b09-50cf-5aef-8ad8-760b9022f88d");
|
|
}
|
|
|
|
static void
|
|
fu_nvme_cns_all_func(void)
|
|
{
|
|
const gchar *fn;
|
|
g_autofree gchar *path = NULL;
|
|
g_autoptr(FuContext) ctx = fu_context_new();
|
|
g_autoptr(GDir) dir = NULL;
|
|
|
|
/* may or may not exist */
|
|
path = g_test_build_filename(G_TEST_DIST, "tests", "blobs", NULL);
|
|
if (!g_file_test(path, G_FILE_TEST_EXISTS))
|
|
return;
|
|
dir = g_dir_open(path, 0, NULL);
|
|
while ((fn = g_dir_read_name(dir)) != NULL) {
|
|
gsize sz;
|
|
g_autofree gchar *data = NULL;
|
|
g_autofree gchar *filename = NULL;
|
|
g_autoptr(FuNvmeDevice) dev = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
filename = g_build_filename(path, fn, NULL);
|
|
g_print("parsing %s... ", filename);
|
|
if (!g_file_get_contents(filename, &data, &sz, &error)) {
|
|
g_print("failed to load %s: %s\n", filename, error->message);
|
|
continue;
|
|
}
|
|
dev = fu_nvme_device_new_from_blob(ctx, (guint8 *)data, sz, &error);
|
|
if (dev == NULL) {
|
|
g_print("failed to load %s: %s\n", filename, error->message);
|
|
continue;
|
|
}
|
|
g_assert_cmpstr(fu_device_get_name(FU_DEVICE(dev)), !=, NULL);
|
|
g_assert_cmpstr(fu_device_get_version(FU_DEVICE(dev)), !=, NULL);
|
|
g_assert_cmpstr(fu_device_get_serial(FU_DEVICE(dev)), !=, NULL);
|
|
g_print("done\n");
|
|
}
|
|
}
|
|
|
|
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);
|
|
|
|
/* tests go here */
|
|
g_test_add_func("/fwupd/cns", fu_nvme_cns_func);
|
|
g_test_add_func("/fwupd/cns{all}", fu_nvme_cns_all_func);
|
|
return g_test_run();
|
|
}
|