Channel Access Manager Test. More...
Public Member Functions | |
ChannelAccessManagerTest () | |
void | DoRun (void) |
Implementation to actually run this TestCase. More... | |
void | DoRun (void) |
Implementation to actually run this TestCase. More... | |
void | DoRun (void) override |
Implementation to actually run this TestCase. More... | |
void | GenerateBackoff (uint32_t i) |
Generate backoff function. More... | |
void | NotifyAccessGranted (uint32_t i) |
Notify access granted function. More... | |
void | NotifyChannelSwitching (uint32_t i) |
Notify channel switching function. More... | |
void | NotifyInternalCollision (uint32_t i) |
Notify internal collision function. More... | |
![]() | |
virtual | ~TestCase () |
Destructor. More... | |
std::string | GetName (void) const |
Private Types | |
typedef std::vector< Ptr< TxopTest< TxopType > > > | TxopTests |
the TXOP tests typedef More... | |
Private Member Functions | |
void | AddAccessRequest (uint64_t at, uint64_t txTime, uint64_t expectedGrantTime, uint32_t from) |
Add access function. More... | |
void | AddAccessRequestWithAckTimeout (uint64_t at, uint64_t txTime, uint64_t expectedGrantTime, uint32_t from) |
Add access request with Ack timeout. More... | |
void | AddAccessRequestWithSuccessfullAck (uint64_t at, uint64_t txTime, uint64_t expectedGrantTime, uint32_t ackDelay, uint32_t from) |
Add access request with successful ack. More... | |
void | AddAckTimeoutReset (uint64_t at) |
Add Ack timeout reset function. More... | |
void | AddCcaBusyEvt (uint64_t at, uint64_t duration) |
Add CCA busy event function. More... | |
void | AddNavReset (uint64_t at, uint64_t duration) |
Add NAV reset function. More... | |
void | AddNavStart (uint64_t at, uint64_t duration) |
Add NAV start function. More... | |
void | AddRxErrorEvt (uint64_t at, uint64_t duration) |
Add receive error event function for error at end of frame. More... | |
void | AddRxErrorEvt (uint64_t at, uint64_t duration, uint64_t timeUntilError) |
Add receive error event function for error during frame. More... | |
void | AddRxInsideSifsEvt (uint64_t at, uint64_t duration) |
Add receive inside SIFS event function. More... | |
void | AddRxOkEvt (uint64_t at, uint64_t duration) |
Add receive OK event function. More... | |
void | AddRxStartEvt (uint64_t at, uint64_t duration) |
Add receive start event function. More... | |
void | AddSwitchingEvt (uint64_t at, uint64_t duration) |
Add switching event function. More... | |
void | AddTxEvt (uint64_t at, uint64_t duration) |
Add transmit event function. More... | |
void | AddTxop (uint32_t aifsn) |
Add Txop function. More... | |
void | DoAccessRequest (uint64_t txTime, uint64_t expectedGrantTime, Ptr< TxopTest< TxopType >> state) |
Add access request with successful Ack. More... | |
void | DoCheckBusy (bool busy) |
Perform check that channel access manager is busy or idle. More... | |
void | EndTest (void) |
End test function. More... | |
void | ExpectBackoff (uint64_t time, uint32_t nSlots, uint32_t from) |
Expect generate backoff function. More... | |
void | ExpectBusy (uint64_t time, bool busy) |
Schedule a check that the channel access manager is busy or idle. More... | |
void | ExpectInternalCollision (uint64_t time, uint32_t nSlots, uint32_t from) |
Expect internal collision function. More... | |
void | StartTest (uint64_t slotTime, uint64_t sifs, uint64_t eifsNoDifsNoSifs, uint32_t ackTimeoutValue=20) |
Start test function. More... | |
Private Attributes | |
uint32_t | m_ackTimeoutValue |
the Ack timeout value More... | |
Ptr< ChannelAccessManagerStub > | m_ChannelAccessManager |
the channel access manager More... | |
Ptr< FrameExchangeManagerStub > | m_feManager |
the Frame Exchange Manager stubbed More... | |
TxopTests | m_txop |
the vector of Txop test instances More... | |
Additional Inherited Members | |
![]() | |
enum | TestDuration { QUICK = 1 , EXTENSIVE = 2 , TAKES_FOREVER = 3 } |
How long the test takes to execute. More... | |
![]() | |
TestCase (std::string name) | |
Constructor. More... | |
void | AddTestCase (TestCase *testCase, TestDuration duration=QUICK) |
Add an individual child TestCase to this test suite. More... | |
TestCase * | GetParent () const |
Get the parent of this TestCsse. More... | |
bool | IsStatusFailure (void) const |
Check if any tests failed. More... | |
bool | IsStatusSuccess (void) const |
Check if all tests passed. More... | |
void | SetDataDir (std::string directory) |
Set the data directory where reference trace files can be found. More... | |
void | ReportTestFailure (std::string cond, std::string actual, std::string limit, std::string message, std::string file, int32_t line) |
Log the failure of this TestCase. More... | |
bool | MustAssertOnFailure (void) const |
Check if this run should assert on failure. More... | |
bool | MustContinueOnFailure (void) const |
Check if this run should continue on failure. More... | |
std::string | CreateDataDirFilename (std::string filename) |
Construct the full path to a file in the data directory. More... | |
std::string | CreateTempDirFilename (std::string filename) |
Construct the full path to a file in a temporary directory. More... | |
Channel Access Manager Test.
Definition at line 195 of file channel-access-manager-test.cc.
|
private |
the TXOP tests typedef
Definition at line 366 of file channel-access-manager-test.cc.
ChannelAccessManagerTest< TxopType >::ChannelAccessManagerTest |
Definition at line 445 of file channel-access-manager-test.cc.
|
private |
Add access function.
at | the event time |
txTime | the transmit time |
expectedGrantTime | the expected grant time |
from | the index of the requesting Txop |
Definition at line 673 of file channel-access-manager-test.cc.
|
private |
Add access request with Ack timeout.
at | time to schedule DoAccessRequest event |
txTime | the transmit time |
expectedGrantTime | the expected grant time |
from | the index of the requesting Txop |
Definition at line 681 of file channel-access-manager-test.cc.
References ChannelAccessManagerTest< TxopType >::DoAccessRequest(), ns3::MicroSeconds(), and ns3::Now().
|
private |
Add access request with successful ack.
at | time to schedule DoAccessRequest event |
txTime | the transmit time |
expectedGrantTime | the expected grant time |
ackDelay | the delay of the Ack after txEnd |
from | the index of the requesting Txop |
Definition at line 691 of file channel-access-manager-test.cc.
References ChannelAccessManagerTest< TxopType >::DoAccessRequest(), ns3::MicroSeconds(), ns3::Now(), and NS_ASSERT.
|
private |
Add Ack timeout reset function.
at | the event time |
Definition at line 665 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), and ns3::Now().
|
private |
Add CCA busy event function.
at | the event time |
duration | the duration |
Definition at line 716 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), and ns3::Now().
|
private |
Add NAV reset function.
at | the event time |
duration | the duration |
Definition at line 647 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), and ns3::Now().
|
private |
Add NAV start function.
at | the event time |
duration | the duration |
Definition at line 656 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), and ns3::Now().
|
private |
Add receive error event function for error at end of frame.
at | the event time |
duration | the duration |
Definition at line 624 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), and ns3::Now().
|
private |
Add receive error event function for error during frame.
at | the event time |
duration | the duration |
timeUntilError | the time after event time to force the error |
Definition at line 635 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), and ns3::Now().
|
private |
Add receive inside SIFS event function.
at | the event time |
duration | the duration |
Definition at line 615 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), and ns3::Now().
|
private |
Add receive OK event function.
at | the event time |
duration | the duration |
Definition at line 604 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), and ns3::Now().
|
private |
Add receive start event function.
at | the event time |
duration | the duration |
Definition at line 734 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), and ns3::Now().
|
private |
Add switching event function.
at | the event time |
duration | the duration |
Definition at line 725 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), and ns3::Now().
|
private |
Add transmit event function.
at | the event time |
duration | the duration |
Definition at line 468 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), and ns3::Now().
|
private |
Add Txop function.
aifsn | the AIFSN |
Definition at line 571 of file channel-access-manager-test.cc.
|
private |
Add access request with successful Ack.
txTime | the transmit time |
expectedGrantTime | the expected grant time |
state | TxopTest |
Definition at line 703 of file channel-access-manager-test.cc.
Referenced by ChannelAccessManagerTest< TxopType >::AddAccessRequestWithAckTimeout(), and ChannelAccessManagerTest< TxopType >::AddAccessRequestWithSuccessfullAck().
|
private |
Perform check that channel access manager is busy or idle.
busy | whether expected state is busy |
Definition at line 551 of file channel-access-manager-test.cc.
References NS_TEST_EXPECT_MSG_EQ.
Referenced by ChannelAccessManagerTest< TxopType >::ExpectBusy().
|
virtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 746 of file channel-access-manager-test.cc.
|
virtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 1088 of file channel-access-manager-test.cc.
|
overridevirtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
|
private |
End test function.
Definition at line 581 of file channel-access-manager-test.cc.
References NS_TEST_EXPECT_MSG_EQ.
|
private |
Expect generate backoff function.
time | the expected time |
nSlots | the number of slots |
from | the expected from |
Definition at line 532 of file channel-access-manager-test.cc.
References TxopTest< TxopType >::m_expectedBackoff.
|
private |
Schedule a check that the channel access manager is busy or idle.
time | the expected time |
busy | whether the manager is expected to be busy |
Definition at line 543 of file channel-access-manager-test.cc.
References ChannelAccessManagerTest< TxopType >::DoCheckBusy(), ns3::MicroSeconds(), and ns3::Now().
|
private |
Expect internal collision function.
time | the expected time |
nSlots | the number of slots |
from | the expected from |
Definition at line 521 of file channel-access-manager-test.cc.
References TxopTest< TxopType >::m_expectedInternalCollision.
void ChannelAccessManagerTest< TxopType >::GenerateBackoff | ( | uint32_t | i | ) |
Generate backoff function.
i | the index of the Txop |
Definition at line 492 of file channel-access-manager-test.cc.
References TxopTest< TxopType >::m_expectedBackoff, and NS_TEST_EXPECT_MSG_EQ.
void ChannelAccessManagerTest< TxopType >::NotifyAccessGranted | ( | uint32_t | i | ) |
Notify access granted function.
i | the index of the Txop |
Definition at line 452 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), ns3::Now(), and NS_TEST_EXPECT_MSG_EQ.
void ChannelAccessManagerTest< TxopType >::NotifyChannelSwitching | ( | uint32_t | i | ) |
Notify channel switching function.
i | the index of the Txop |
Definition at line 507 of file channel-access-manager-test.cc.
References ns3::MicroSeconds(), ns3::Now(), and NS_TEST_EXPECT_MSG_EQ.
void ChannelAccessManagerTest< TxopType >::NotifyInternalCollision | ( | uint32_t | i | ) |
Notify internal collision function.
i | the index of the Txop |
Definition at line 477 of file channel-access-manager-test.cc.
References TxopTest< TxopType >::m_expectedInternalCollision, and NS_TEST_EXPECT_MSG_EQ.
|
private |
Start test function.
slotTime | the slot time |
sifs | the SIFS |
eifsNoDifsNoSifs | the EIFS no DIFS no SIFS |
ackTimeoutValue | the Ack timeout value |
Definition at line 558 of file channel-access-manager-test.cc.
References ns3::MicroSeconds().
|
private |
the Ack timeout value
Definition at line 371 of file channel-access-manager-test.cc.
|
private |
the channel access manager
Definition at line 369 of file channel-access-manager-test.cc.
|
private |
the Frame Exchange Manager stubbed
Definition at line 368 of file channel-access-manager-test.cc.
|
private |
the vector of Txop test instances
Definition at line 370 of file channel-access-manager-test.cc.