mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-17 19:04:13 +00:00

We don't actually need either of the things it provides (looking up in source and built, and converting to an absolute path) so just replace it with g_build_filename() instead. This also has the advantage that it does the right thing on Windows.
49 lines
1.3 KiB
C
49 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2019 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <fwupd.h>
|
|
|
|
#include "fu-ata-device.h"
|
|
|
|
static void
|
|
fu_ata_id_func (void)
|
|
{
|
|
gboolean ret;
|
|
gsize sz;
|
|
g_autofree gchar *data = NULL;
|
|
g_autofree gchar *path = NULL;
|
|
g_autoptr(FuAtaDevice) dev = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
path = g_build_filename (TESTDATADIR, "StarDrive-SBFM61.2.bin", NULL);
|
|
ret = g_file_get_contents (path, &data, &sz, &error);
|
|
g_assert_no_error (error);
|
|
g_assert (ret);
|
|
dev = fu_ata_device_new_from_blob ((guint8 *)data, sz, &error);
|
|
g_assert_no_error (error);
|
|
g_assert_nonnull (dev);
|
|
g_assert_cmpint (fu_ata_device_get_transfer_mode (dev), ==, 0xe);
|
|
g_assert_cmpint (fu_ata_device_get_transfer_blocks (dev), ==, 0x1);
|
|
g_assert_cmpstr (fu_device_get_serial (FU_DEVICE (dev)), ==, "A45A078A198600476509");
|
|
g_assert_cmpstr (fu_device_get_name (FU_DEVICE (dev)), ==, "SATA SSD");
|
|
g_assert_cmpstr (fu_device_get_version (FU_DEVICE (dev)), ==, "SBFM61.2");
|
|
}
|
|
|
|
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/id", fu_ata_id_func);
|
|
return g_test_run ();
|
|
}
|