[parted-devel] [PATCH 2/5] tests: Add a libparted test for reading the disk with read_only=1
Brian C. Lane
bcl at redhat.com
Fri Feb 10 01:18:58 GMT 2023
Make sure the disk can be read, using gpt and msdos disklabels it
verifies that it can read the gpt partition name, and the partition
geometry.
---
libparted/tests/Makefile.am | 6 +-
libparted/tests/read_only.c | 133 +++++++++++++++++++++++++++++
libparted/tests/t1002-read_only.sh | 23 +++++
3 files changed, 160 insertions(+), 2 deletions(-)
create mode 100644 libparted/tests/read_only.c
create mode 100755 libparted/tests/t1002-read_only.sh
diff --git a/libparted/tests/Makefile.am b/libparted/tests/Makefile.am
index 260b692..4a5321e 100644
--- a/libparted/tests/Makefile.am
+++ b/libparted/tests/Makefile.am
@@ -3,10 +3,11 @@
#
# This file may be modified and/or distributed without restriction.
-TESTS = t1000-label.sh t1001-flags.sh t2000-disk.sh t2100-zerolen.sh \
+TESTS = t1000-label.sh t1001-flags.sh t1002-read_only.sh \
+ t2000-disk.sh t2100-zerolen.sh \
t3000-symlink.sh t4000-volser.sh
EXTRA_DIST = $(TESTS)
-check_PROGRAMS = label disk zerolen symlink volser flags
+check_PROGRAMS = label disk zerolen symlink volser flags read_only
AM_CFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
LDADD = \
@@ -26,6 +27,7 @@ zerolen_SOURCES = common.h common.c zerolen.c
symlink_SOURCES = common.h common.c symlink.c
volser_SOURCES = common.h common.c volser.c
flags_SOURCES = common.h common.c flags.c
+read_only_SOURCES = common.h common.c read_only.c
# Arrange to symlink to tests/init.sh.
CLEANFILES = init.sh
diff --git a/libparted/tests/read_only.c b/libparted/tests/read_only.c
new file mode 100644
index 0000000..fbb77b1
--- /dev/null
+++ b/libparted/tests/read_only.c
@@ -0,0 +1,133 @@
+#include <config.h>
+#include <unistd.h>
+
+#include <check.h>
+
+#include <parted/parted.h>
+
+#include "common.h"
+#include "progname.h"
+
+#define STREQ(a, b) (strcmp (a, b) == 0)
+
+static char* temporary_disk;
+
+static void
+create_disk (void)
+{
+ temporary_disk = _create_disk (80 * 1024 * 1024);
+ ck_assert_msg(temporary_disk != NULL, "Failed to create temporary disk");
+}
+
+static void
+destroy_disk (void)
+{
+ unlink (temporary_disk);
+ free (temporary_disk);
+}
+
+/* TEST: Test reading gpt disk partitin in read_only mode */
+START_TEST (test_read_only_gpt)
+{
+ PedDevice* dev = ped_device_get (temporary_disk);
+ if (dev == NULL)
+ return;
+
+ PedDisk* disk = ped_disk_new_fresh (dev, ped_disk_type_get ("gpt"));
+ PedConstraint *constraint = ped_constraint_any (dev);
+ PedPartition *part = ped_partition_new (disk, PED_PARTITION_NORMAL,
+ ped_file_system_type_get("ext4"), 2048, 4096);
+ ped_partition_set_name(part, "read-only-test");
+ ped_disk_add_partition (disk, part, constraint);
+ ped_disk_commit (disk);
+ ped_constraint_destroy (constraint);
+
+ ped_disk_destroy (disk);
+ ped_device_destroy (dev);
+
+ // Now open it with read only mode
+ dev = ped_device_get (temporary_disk);
+ if (dev == NULL)
+ return;
+
+ dev->read_only = 1;
+ disk = ped_disk_new(dev);
+ ck_assert_ptr_nonnull(disk);
+ part = ped_disk_get_partition(disk, 1);
+ ck_assert_ptr_nonnull(disk);
+ ck_assert_str_eq(ped_partition_get_name(part), "read-only-test");
+ ck_assert_int_eq(part->geom.start, 2048);
+ ck_assert_int_eq(part->geom.length, 2049);
+ ck_assert_int_eq(part->geom.end, 4096);
+ ped_disk_destroy (disk);
+ ped_device_destroy (dev);
+}
+END_TEST
+
+/* TEST: Test reading msdos disk partitin in read_only mode */
+START_TEST (test_read_only_msdos)
+{
+ PedDevice* dev = ped_device_get (temporary_disk);
+ if (dev == NULL)
+ return;
+
+ PedDisk* disk = ped_disk_new_fresh (dev, ped_disk_type_get ("msdos"));
+ PedConstraint *constraint = ped_constraint_any (dev);
+ PedPartition *part = ped_partition_new (disk, PED_PARTITION_NORMAL,
+ ped_file_system_type_get("ext4"), 2048, 4096);
+ ped_disk_add_partition (disk, part, constraint);
+ ped_disk_commit (disk);
+ ped_constraint_destroy (constraint);
+ ped_disk_destroy (disk);
+ ped_device_destroy (dev);
+
+ // Now open it with read only mode
+ dev = ped_device_get (temporary_disk);
+ if (dev == NULL)
+ return;
+
+ dev->read_only = 1;
+ disk = ped_disk_new(dev);
+ ck_assert_ptr_nonnull(disk);
+ part = ped_disk_get_partition(disk, 1);
+ ck_assert_ptr_nonnull(disk);
+ ck_assert_int_eq(part->geom.start, 2048);
+ ck_assert_int_eq(part->geom.length, 2049);
+ ck_assert_int_eq(part->geom.end, 4096);
+ ped_disk_destroy (disk);
+ ped_device_destroy (dev);
+}
+END_TEST
+
+int
+main (int argc, char **argv)
+{
+ set_program_name (argv[0]);
+ int number_failed;
+ Suite* suite = suite_create ("Partition Flags");
+ TCase* tcase_gpt = tcase_create ("GPT");
+ TCase* tcase_msdos = tcase_create ("MSDOS");
+
+ /* Fail when an exception is raised */
+ ped_exception_set_handler (_test_exception_handler);
+
+ tcase_add_checked_fixture (tcase_gpt, create_disk, destroy_disk);
+ tcase_add_test (tcase_gpt, test_read_only_gpt);
+ /* Disable timeout for this test */
+ tcase_set_timeout (tcase_gpt, 0);
+ suite_add_tcase (suite, tcase_gpt);
+
+ tcase_add_checked_fixture (tcase_msdos, create_disk, destroy_disk);
+ tcase_add_test (tcase_msdos, test_read_only_msdos);
+ /* Disable timeout for this test */
+ tcase_set_timeout (tcase_msdos, 0);
+ suite_add_tcase (suite, tcase_msdos);
+
+ SRunner* srunner = srunner_create (suite);
+ srunner_run_all (srunner, CK_VERBOSE);
+
+ number_failed = srunner_ntests_failed (srunner);
+ srunner_free (srunner);
+
+ return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
+}
diff --git a/libparted/tests/t1002-read_only.sh b/libparted/tests/t1002-read_only.sh
new file mode 100755
index 0000000..7ac3896
--- /dev/null
+++ b/libparted/tests/t1002-read_only.sh
@@ -0,0 +1,23 @@
+#!/bin/sh
+# run the flags unittest
+
+# Copyright (C) 2007-2014, 2019-2022 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+. "${top_srcdir=../..}/tests/init.sh"; path_prepend_ .
+
+read_only || fail=1
+
+Exit $fail
--
2.39.1
More information about the parted-devel
mailing list