/* * Copyright (C) 2020 Richard Hughes * * SPDX-License-Identifier: LGPL-2.1+ */ #include "config.h" #include #include #include "fu-common.h" #include "fu-bcm57xx-common.h" #include "fu-bcm57xx-firmware.h" static void fu_bcm57xx_create_verbuf (guint8 *bufver, const gchar *version) { memcpy (bufver, version, strlen (version) + 1); } static void fu_bcm57xx_common_veritem_func (void) { g_autoptr(Bcm57xxVeritem) veritem1 = NULL; g_autoptr(Bcm57xxVeritem) veritem2 = NULL; g_autoptr(Bcm57xxVeritem) veritem3 = NULL; guint8 bufver[16] = { 0x0 }; fu_bcm57xx_create_verbuf (bufver, "5719-v1.43"); veritem1 = fu_bcm57xx_veritem_new (bufver, sizeof(bufver)); g_assert_nonnull (veritem1); g_assert_cmpstr (veritem1->version, ==, "1.43"); g_assert_cmpstr (veritem1->branch, ==, BCM_FW_BRANCH_UNKNOWN); g_assert_cmpint (veritem1->verfmt, ==, FWUPD_VERSION_FORMAT_PAIR); fu_bcm57xx_create_verbuf (bufver, "stage1-0.4.391"); veritem2 = fu_bcm57xx_veritem_new (bufver, sizeof(bufver)); g_assert_nonnull (veritem2); g_assert_cmpstr (veritem2->version, ==, "0.4.391"); g_assert_cmpstr (veritem2->branch, ==, BCM_FW_BRANCH_OSS_FIRMWARE); g_assert_cmpint (veritem2->verfmt, ==, FWUPD_VERSION_FORMAT_TRIPLET); fu_bcm57xx_create_verbuf (bufver, "RANDOM-7"); veritem3 = fu_bcm57xx_veritem_new (bufver, sizeof(bufver)); g_assert_nonnull (veritem3); g_assert_cmpstr (veritem3->version, ==, "RANDOM-7"); g_assert_cmpstr (veritem3->branch, ==, BCM_FW_BRANCH_UNKNOWN); g_assert_cmpint (veritem3->verfmt, ==, FWUPD_VERSION_FORMAT_UNKNOWN); } static void fu_bcm57xx_firmware_talos_func (void) { gboolean ret; g_autofree gchar *fn = NULL; g_autofree gchar *fn_out = NULL; g_autoptr(GBytes) blob = NULL; g_autoptr(GBytes) blob_out = NULL; g_autoptr(GError) error = NULL; g_autoptr(GPtrArray) images = NULL; g_autoptr(FuFirmware) firmware = fu_bcm57xx_firmware_new (); /* load file */ fn = g_test_build_filename (G_TEST_DIST, "tests", "Bcm5719_talos.bin", NULL); if (!g_file_test (fn, G_FILE_TEST_EXISTS)) { g_test_skip ("missing file"); return; } blob = fu_common_get_contents_bytes (fn, &error); g_assert_no_error (error); g_assert_nonnull (blob); ret = fu_firmware_parse (firmware, blob, FWUPD_INSTALL_FLAG_NONE, &error); g_assert_no_error (error); g_assert_true (ret); images = fu_firmware_get_images (firmware); g_assert_cmpint (images->len, ==, 6); blob_out = fu_firmware_write (firmware, &error); g_assert_no_error (error); g_assert_nonnull (blob_out); fn_out = g_test_build_filename (G_TEST_BUILT, "tests", "Bcm5719_talos.bin", NULL); ret = fu_common_set_contents_bytes (fn_out, blob_out, &error); g_assert_no_error (error); g_assert_true (ret); ret = fu_common_bytes_compare (blob, blob_out, &error); g_assert_no_error (error); g_assert_true (ret); } 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/bcm57xx/firmware{talos}", fu_bcm57xx_firmware_talos_func); g_test_add_func ("/fwupd/bcm57xx/common{veritem}", fu_bcm57xx_common_veritem_func); return g_test_run (); }