mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
08194af424
- Moved C++ code to cpp/ from src/raspberrypi - Related updates to Makefile, easyinstall.sh, and the github build rules - Removed the native X68k C code in src/x68k from the repo
129 lines
3.8 KiB
C++
129 lines
3.8 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include "mocks.h"
|
|
#include "protobuf_util.h"
|
|
#include "rascsi_interface.pb.h"
|
|
#include "rascsi/rascsi_image.h"
|
|
|
|
using namespace rascsi_interface;
|
|
using namespace protobuf_util;
|
|
|
|
TEST(RascsiImageTest, SetGetDepth)
|
|
{
|
|
RascsiImage image;
|
|
|
|
image.SetDepth(1);
|
|
EXPECT_EQ(1, image.GetDepth());
|
|
}
|
|
|
|
TEST(RascsiImageTest, SetGetDefaultFolder)
|
|
{
|
|
RascsiImage image;
|
|
|
|
EXPECT_NE(string::npos, image.GetDefaultFolder().find("/images"));
|
|
|
|
EXPECT_TRUE(!image.SetDefaultFolder("").empty());
|
|
EXPECT_TRUE(!image.SetDefaultFolder("/not_in_home").empty());
|
|
}
|
|
|
|
TEST(RascsiImageTest, CreateImage)
|
|
{
|
|
MockCommandContext context;
|
|
PbCommand command;
|
|
RascsiImage image;
|
|
|
|
EXPECT_FALSE(image.CreateImage(context, command)) << "Filename must be reported as missing";
|
|
|
|
SetParam(command, "file", "/a/b/c/filename");
|
|
EXPECT_FALSE(image.CreateImage(context, command)) << "Depth must be reported as invalid";
|
|
|
|
SetParam(command, "file", "filename");
|
|
SetParam(command, "size", "-1");
|
|
EXPECT_FALSE(image.CreateImage(context, command)) << "Size must be reported as invalid";
|
|
|
|
SetParam(command, "size", "1");
|
|
EXPECT_FALSE(image.CreateImage(context, command)) << "Size must be reported as invalid";
|
|
|
|
SetParam(command, "size", "513");
|
|
EXPECT_FALSE(image.CreateImage(context, command)) << "Size must be reported as not a multiple of 512";
|
|
|
|
// Further tests would modify the filesystem
|
|
}
|
|
|
|
TEST(RascsiImageTest, DeleteImage)
|
|
{
|
|
MockCommandContext context;
|
|
PbCommand command;
|
|
RascsiImage image;
|
|
|
|
EXPECT_FALSE(image.DeleteImage(context, command)) << "Filename must be reported as missing";
|
|
|
|
SetParam(command, "file", "/a/b/c/filename");
|
|
EXPECT_FALSE(image.DeleteImage(context, command)) << "Depth must be reported as invalid";
|
|
|
|
MockStorageDevice device;
|
|
device.ReserveFile("filename", 0, 0);
|
|
SetParam(command, "file", "filename");
|
|
EXPECT_FALSE(image.DeleteImage(context, command)) << "File must be reported as in use";
|
|
|
|
// Further testing would modify the filesystem
|
|
}
|
|
|
|
TEST(RascsiImageTest, RenameImage)
|
|
{
|
|
MockCommandContext context;
|
|
PbCommand command;
|
|
RascsiImage image;
|
|
|
|
EXPECT_FALSE(image.RenameImage(context, command)) << "Source filename must be reported as missing";
|
|
|
|
SetParam(command, "from", "/a/b/c/filename_from");
|
|
EXPECT_FALSE(image.RenameImage(context, command)) << "Depth must be reported as invalid";
|
|
|
|
SetParam(command, "from", "filename_from");
|
|
EXPECT_FALSE(image.RenameImage(context, command)) << "Source file must be reported as missing";
|
|
|
|
// Further testing would modify the filesystem
|
|
}
|
|
|
|
TEST(RascsiImageTest, CopyImage)
|
|
{
|
|
MockCommandContext context;
|
|
PbCommand command;
|
|
RascsiImage image;
|
|
|
|
EXPECT_FALSE(image.CopyImage(context, command)) << "Source filename must be reported as missing";
|
|
|
|
SetParam(command, "from", "/a/b/c/filename_from");
|
|
EXPECT_FALSE(image.CopyImage(context, command)) << "Depth must be reported as invalid";
|
|
|
|
SetParam(command, "from", "filename_from");
|
|
EXPECT_FALSE(image.CopyImage(context, command)) << "Source file must be reported as missing";
|
|
|
|
// Further testing would modify the filesystem
|
|
}
|
|
|
|
TEST(RascsiImageTest, SetImagePermissions)
|
|
{
|
|
MockCommandContext context;
|
|
PbCommand command;
|
|
RascsiImage image;
|
|
|
|
EXPECT_FALSE(image.SetImagePermissions(context, command)) << "Filename must be reported as missing";
|
|
|
|
SetParam(command, "file", "/a/b/c/filename");
|
|
EXPECT_FALSE(image.SetImagePermissions(context, command)) << "Depth must be reported as invalid";
|
|
|
|
SetParam(command, "file", "filename");
|
|
EXPECT_FALSE(image.CopyImage(context, command)) << "Source file must be reported as missing";
|
|
|
|
// Further testing would modify the filesystem
|
|
}
|