aboutsummaryrefslogtreecommitdiff
path: root/kernel/src/filesystem/open_file_descriptor.tests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/src/filesystem/open_file_descriptor.tests.cpp')
-rw-r--r--kernel/src/filesystem/open_file_descriptor.tests.cpp13
1 files changed, 4 insertions, 9 deletions
diff --git a/kernel/src/filesystem/open_file_descriptor.tests.cpp b/kernel/src/filesystem/open_file_descriptor.tests.cpp
index 095e203..53835ba 100644
--- a/kernel/src/filesystem/open_file_descriptor.tests.cpp
+++ b/kernel/src/filesystem/open_file_descriptor.tests.cpp
@@ -1,4 +1,5 @@
#include <kernel/filesystem/open_file_descriptor.hpp>
+
#include <kernel/filesystem/vfs.hpp>
#include <kernel/test_support/filesystem/inode.hpp>
#include <kernel/test_support/filesystem/storage_boot_module_vfs_fixture.hpp>
@@ -83,17 +84,11 @@ SCENARIO_METHOD(kernel::tests::filesystem::storage_boot_module_vfs_fixture, "Ope
{
kstd::vector<std::byte> buffer(32);
auto bytes_read = ofd->read(buffer.data(), buffer.size());
- REQUIRE(bytes_read == 32);
- REQUIRE(ofd->offset() == 32);
+ REQUIRE(bytes_read == 7);
+ REQUIRE(ofd->offset() == 7);
std::string_view buffer_as_str{reinterpret_cast<char *>(buffer.data()), static_cast<size_t>(bytes_read)};
- auto const content_end = buffer_as_str.find('\0');
- REQUIRE(buffer_as_str.substr(0, content_end) == "info_1\n");
-
- for (auto i = content_end; i < buffer_as_str.size(); ++i)
- {
- REQUIRE(buffer_as_str[i] == '\0');
- }
+ REQUIRE(buffer_as_str == "info_1\n");
}
THEN("the file can be read multiple times")