mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-25 20:33:35 +00:00
52c2aa474f
* Rebrand project to PiSCSI - rascsi ->piscsi - rasctl -> scsictl - rasdump -> scsidump - ras* -> piscsi* (rasutil -> piscsi_util, etc.) * Refined the formatting and wording of the app startup banner * Kept some references to rascsi and rasctl where backwards compatibility is concerned * Point to the new github repo URL Co-authored-by: nucleogenic <nr@nucleogenic.com> Co-authored-by: Uwe Seimet <Uwe.Seimet@seimet.de>
97 lines
2.9 KiB
C++
97 lines
2.9 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator PiSCSI
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include "mocks.h"
|
|
#include "controllers/phase_handler.h"
|
|
|
|
TEST(PhaseHandlerTest, Phases)
|
|
{
|
|
MockPhaseHandler handler;
|
|
|
|
handler.SetPhase(phase_t::selection);
|
|
EXPECT_TRUE(handler.IsSelection());
|
|
EXPECT_FALSE(handler.IsBusFree());
|
|
EXPECT_FALSE(handler.IsCommand());
|
|
EXPECT_FALSE(handler.IsStatus());
|
|
EXPECT_FALSE(handler.IsDataIn());
|
|
EXPECT_FALSE(handler.IsDataOut());
|
|
EXPECT_FALSE(handler.IsMsgIn());
|
|
EXPECT_FALSE(handler.IsMsgOut());
|
|
|
|
handler.SetPhase(phase_t::busfree);
|
|
EXPECT_TRUE(handler.IsBusFree());
|
|
EXPECT_FALSE(handler.IsSelection());
|
|
EXPECT_FALSE(handler.IsCommand());
|
|
EXPECT_FALSE(handler.IsStatus());
|
|
EXPECT_FALSE(handler.IsDataIn());
|
|
EXPECT_FALSE(handler.IsDataOut());
|
|
EXPECT_FALSE(handler.IsMsgIn());
|
|
EXPECT_FALSE(handler.IsMsgOut());
|
|
|
|
handler.SetPhase(phase_t::command);
|
|
EXPECT_TRUE(handler.IsCommand());
|
|
EXPECT_FALSE(handler.IsBusFree());
|
|
EXPECT_FALSE(handler.IsSelection());
|
|
EXPECT_FALSE(handler.IsStatus());
|
|
EXPECT_FALSE(handler.IsDataIn());
|
|
EXPECT_FALSE(handler.IsDataOut());
|
|
EXPECT_FALSE(handler.IsMsgIn());
|
|
EXPECT_FALSE(handler.IsMsgOut());
|
|
|
|
handler.SetPhase(phase_t::status);
|
|
EXPECT_TRUE(handler.IsStatus());
|
|
EXPECT_FALSE(handler.IsBusFree());
|
|
EXPECT_FALSE(handler.IsSelection());
|
|
EXPECT_FALSE(handler.IsCommand());
|
|
EXPECT_FALSE(handler.IsDataIn());
|
|
EXPECT_FALSE(handler.IsDataOut());
|
|
EXPECT_FALSE(handler.IsMsgIn());
|
|
EXPECT_FALSE(handler.IsMsgOut());
|
|
|
|
handler.SetPhase(phase_t::datain);
|
|
EXPECT_TRUE(handler.IsDataIn());
|
|
EXPECT_FALSE(handler.IsBusFree());
|
|
EXPECT_FALSE(handler.IsSelection());
|
|
EXPECT_FALSE(handler.IsCommand());
|
|
EXPECT_FALSE(handler.IsStatus());
|
|
EXPECT_FALSE(handler.IsDataOut());
|
|
EXPECT_FALSE(handler.IsMsgIn());
|
|
EXPECT_FALSE(handler.IsMsgOut());
|
|
|
|
handler.SetPhase(phase_t::dataout);
|
|
EXPECT_TRUE(handler.IsDataOut());
|
|
EXPECT_FALSE(handler.IsBusFree());
|
|
EXPECT_FALSE(handler.IsSelection());
|
|
EXPECT_FALSE(handler.IsCommand());
|
|
EXPECT_FALSE(handler.IsStatus());
|
|
EXPECT_FALSE(handler.IsDataIn());
|
|
EXPECT_FALSE(handler.IsMsgIn());
|
|
EXPECT_FALSE(handler.IsMsgOut());
|
|
|
|
handler.SetPhase(phase_t::msgin);
|
|
EXPECT_TRUE(handler.IsMsgIn());
|
|
EXPECT_FALSE(handler.IsBusFree());
|
|
EXPECT_FALSE(handler.IsSelection());
|
|
EXPECT_FALSE(handler.IsCommand());
|
|
EXPECT_FALSE(handler.IsStatus());
|
|
EXPECT_FALSE(handler.IsDataIn());
|
|
EXPECT_FALSE(handler.IsDataOut());
|
|
EXPECT_FALSE(handler.IsMsgOut());
|
|
|
|
handler.SetPhase(phase_t::msgout);
|
|
EXPECT_TRUE(handler.IsMsgOut());
|
|
EXPECT_FALSE(handler.IsBusFree());
|
|
EXPECT_FALSE(handler.IsSelection());
|
|
EXPECT_FALSE(handler.IsCommand());
|
|
EXPECT_FALSE(handler.IsStatus());
|
|
EXPECT_FALSE(handler.IsDataIn());
|
|
EXPECT_FALSE(handler.IsDataOut());
|
|
EXPECT_FALSE(handler.IsMsgIn());
|
|
}
|