/
githubmirror
/
nvme-cli
Обзор
Документация
Войти
/
githubmirror
/
nvme-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
shared/test/test-uuid-util.c
66 строк
1 KB
Daniel Wagner
shared: move util_uuid_to_string/util_fw_to_string to shared/uuid-util
07 авг 2026, 16:15
07 авг 2026, 16:15
bb07b9a
Код
Авторство
О чём код?
// SPDX-License-Identifier: LGPL-2.1-or-later /* * This file is part of nvme-cli. */ #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <uuid-util.h> static bool check_str(const char *name, const char *got, const char *want) { bool eq = got && !strcmp(got, want); if (eq) { printf(" - %s [PASS]\n", name); return true; } printf(" - %s: got \"%s\", want \"%s\" [FAIL]\n", name, got ? got : "(null)", want); return false; } static bool test_uuid_to_string(void) { bool pass = true; unsigned char uuid[SHR_UUID_LEN] = { 0x1b, 0x4e, 0x28, 0xba, 0x2f, 0xa1, 0x11, 0xd2, 0x88, 0x3f, 0x00, 0x16, 0xd3, 0xcc, 0xa4, 0x27, }; printf("test_uuid_to_string:\n"); pass &= check_str("canonical uuid", shr_uuid_to_string(uuid), "1b4e28ba-2fa1-11d2-883f-0016d3cca427"); return pass; } static bool test_fw_to_string(void) { bool pass = true; char printable[8] = "1B2C3D4E"; char with_junk[8] = { 0x00, 0x20, 0x21, 0x7e, 0x7f, (char)0xff, 'X', 'Y' }; printf("test_fw_to_string:\n"); pass &= check_str("printable revision", shr_fw_to_string(printable), "1B2C3D4E"); pass &= check_str("non-printable replaced with '.'", shr_fw_to_string(with_junk), "..!~..XY"); return pass; } int main(void) { bool pass = true; pass &= test_uuid_to_string(); pass &= test_fw_to_string(); fflush(stdout); exit(pass ? EXIT_SUCCESS : EXIT_FAILURE); }