2024-10-24 14:48:55 +00:00
|
|
|
#include "filetape.h"
|
|
|
|
#include <catch2/catch_test_macros.hpp>
|
|
|
|
|
2024-10-26 01:23:11 +00:00
|
|
|
const static std::string TEST_DATA = "0000000001\n"
|
|
|
|
"0000012345\n"
|
|
|
|
"0000000000\n"
|
|
|
|
"2222222222\n"
|
|
|
|
"4294967295";
|
|
|
|
|
|
|
|
tape::FileTape prepare_test_filetape() {
|
|
|
|
tape::FileTape tape(0);
|
|
|
|
|
|
|
|
return tape;
|
|
|
|
}
|
|
|
|
|
2024-10-24 14:48:55 +00:00
|
|
|
// NOLINTBEGIN(readability-function-cognitive-complexity)
|
|
|
|
TEST_CASE("Reading data from a FileTape", "[filetape]") {
|
2024-10-25 03:56:52 +00:00
|
|
|
tape::FileTape tape(FILETAPE_TEST_FILE);
|
2024-10-24 14:48:55 +00:00
|
|
|
|
|
|
|
SECTION("Read all data sequentially") {
|
|
|
|
REQUIRE(tape.read() == 1);
|
|
|
|
REQUIRE(tape.seek_forward() == true);
|
|
|
|
REQUIRE(tape.read() == 2);
|
|
|
|
REQUIRE(tape.seek_forward() == true);
|
|
|
|
REQUIRE(tape.read() == 3);
|
|
|
|
REQUIRE(tape.seek_forward() == true);
|
|
|
|
REQUIRE(tape.read() == 4);
|
|
|
|
REQUIRE(tape.seek_forward() == true);
|
|
|
|
REQUIRE(tape.read() == 5);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Read data non-sequentially") {
|
|
|
|
REQUIRE(tape.read() == 1);
|
|
|
|
REQUIRE(tape.seek_forward() == true);
|
|
|
|
REQUIRE(tape.read() == 2);
|
|
|
|
REQUIRE(tape.seek_backwards() == true);
|
|
|
|
REQUIRE(tape.read() == 1);
|
|
|
|
REQUIRE(tape.seek_forward() == true);
|
|
|
|
REQUIRE(tape.seek_forward() == true);
|
|
|
|
REQUIRE(tape.seek_forward() == true);
|
|
|
|
REQUIRE(tape.read() == 4);
|
|
|
|
REQUIRE(tape.seek_backwards() == true);
|
|
|
|
REQUIRE(tape.seek_backwards() == true);
|
|
|
|
REQUIRE(tape.read() == 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("Seeking forward and backwards", "[filetape]") {
|
2024-10-25 03:56:52 +00:00
|
|
|
tape::FileTape tape(FILETAPE_TEST_FILE);
|
2024-10-24 14:48:55 +00:00
|
|
|
|
|
|
|
SECTION("Rewinding at the beginning of a file tape") {
|
|
|
|
REQUIRE(tape.seek_backwards() == false);
|
|
|
|
REQUIRE(tape.read() == 1);
|
|
|
|
REQUIRE(tape.seek_forward() == true);
|
|
|
|
REQUIRE(tape.read() == 2);
|
|
|
|
REQUIRE(tape.seek_backwards() == true);
|
|
|
|
REQUIRE(tape.seek_backwards() == false);
|
|
|
|
REQUIRE(tape.read() == 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Seeking at the end of a file tape") {
|
|
|
|
const int size = 5;
|
|
|
|
// seek to end of a file tape
|
|
|
|
for (int i = 0; i < size - 1; i++) {
|
|
|
|
REQUIRE(tape.seek_forward() == true);
|
|
|
|
}
|
|
|
|
REQUIRE(tape.seek_forward() == false);
|
|
|
|
REQUIRE(tape.read() == 5);
|
|
|
|
REQUIRE(tape.seek_backwards() == true);
|
|
|
|
REQUIRE(tape.read() == 4);
|
|
|
|
REQUIRE(tape.seek_forward() == true);
|
|
|
|
REQUIRE(tape.seek_forward() == false);
|
|
|
|
REQUIRE(tape.read() == 5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_CASE("Writing to a file tape", "[filetape]") {
|
2024-10-25 03:56:52 +00:00
|
|
|
tape::FileTape tape(3);
|
|
|
|
|
|
|
|
tape.write(0);
|
|
|
|
REQUIRE(tape.read() == 0);
|
|
|
|
tape.seek_forward();
|
|
|
|
tape.write(1);
|
|
|
|
REQUIRE(tape.read() == 1);
|
|
|
|
tape.seek_forward();
|
|
|
|
tape.write(2);
|
|
|
|
REQUIRE(tape.read() == 2);
|
|
|
|
tape.write(3);
|
|
|
|
REQUIRE(tape.read() == 3);
|
|
|
|
tape.seek_backwards();
|
|
|
|
tape.write(4);
|
|
|
|
REQUIRE(tape.read() == 4);
|
2024-10-24 14:48:55 +00:00
|
|
|
}
|
|
|
|
// NOLINTEND(readability-function-cognitive-complexity)
|