A Discrete-Event Network Simulator
API
Ns2MobilityHelperTest Class Reference

Every test case is supposed to: More...

+ Inheritance diagram for Ns2MobilityHelperTest:
+ Collaboration diagram for Ns2MobilityHelperTest:

Classes

struct  ReferencePoint
 Single record in mobility reference. More...
 

Public Member Functions

 Ns2MobilityHelperTest (std::string const &name, Time timeLimit, uint32_t nodes=1)
 Create new test case. More...
 
virtual ~Ns2MobilityHelperTest ()
 Empty. More...
 
void AddReferencePoint (ReferencePoint const &r)
 Add next reference point. More...
 
void AddReferencePoint (const char *id, double sec, Vector const &p, Vector const &v)
 Sugar. More...
 
void SetTrace (std::string const &trace)
 Set NS-2 trace to read as single large string (don't forget to add \n and quote "'s) More...
 
- Public Member Functions inherited from ns3::TestCase
virtual ~TestCase ()
 Destructor. More...
 
std::string GetName (void) const
 

Private Member Functions

bool CheckInitialPositions ()
 Check that all initial positions are correct. More...
 
void CourseChange (std::string context, Ptr< const MobilityModel > mobility)
 Listen for course change events. More...
 
void CreateNodes ()
 Create and name nodes. More...
 
void DoRun ()
 Go. More...
 
void DoSetup ()
 Implementation to do any local setup required for this TestCase. More...
 
void DoTeardown ()
 Implementation to do any local setup required for this TestCase. More...
 
bool WriteTrace ()
 Dump NS-2 trace to tmp file. More...
 

Private Attributes

size_t m_nextRefPoint
 Next reference point to be checked. More...
 
uint32_t m_nodeCount
 Number of nodes used in the test. More...
 
std::vector< ReferencePointm_reference
 Reference mobility. More...
 
Time m_timeLimit
 Test time limit. More...
 
std::string m_trace
 Trace as string. More...
 
std::string m_traceFile
 TMP trace file name. More...
 

Additional Inherited Members

- Public Types inherited from ns3::TestCase
enum  TestDuration { QUICK = 1, EXTENSIVE = 2, TAKES_FOREVER = 3 }
 How long the test takes to execute. More...
 
- Protected Member Functions inherited from ns3::TestCase
 TestCase (std::string name)
 Constructor. More...
 
void AddTestCase (TestCase *testCase, TestDuration duration=QUICK)
 Add an individual child TestCase to this test suite. More...
 
TestCaseGetParent () 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...
 

Detailed Description

Every test case is supposed to:

  1. Generate short mobility trace file
  2. Read it back using Ns2MobilityHelper
  3. Check initial node positions and speeds.
  4. Run simulation listening for all CourseChange events and compare actual mobility with the reference

Definition at line 86 of file ns2-mobility-helper-test-suite.cc.

Constructor & Destructor Documentation

◆ Ns2MobilityHelperTest()

Ns2MobilityHelperTest::Ns2MobilityHelperTest ( std::string const &  name,
Time  timeLimit,
uint32_t  nodes = 1 
)
inline

Create new test case.

To make it useful SetTrace () and AddReferencePoint () must be called

Parameters
nameShort description
timeLimitTest time limit
nodesNumber of nodes used in the test trace, 1 by default

Definition at line 125 of file ns2-mobility-helper-test-suite.cc.

◆ ~Ns2MobilityHelperTest()

virtual Ns2MobilityHelperTest::~Ns2MobilityHelperTest ( )
inlinevirtual

Empty.

Definition at line 133 of file ns2-mobility-helper-test-suite.cc.

Member Function Documentation

◆ AddReferencePoint() [1/2]

void Ns2MobilityHelperTest::AddReferencePoint ( ReferencePoint const &  r)
inline

Add next reference point.

Definition at line 142 of file ns2-mobility-helper-test-suite.cc.

Referenced by Ns2MobilityHelperTestSuite::Ns2MobilityHelperTestSuite().

+ Here is the caller graph for this function:

◆ AddReferencePoint() [2/2]

void Ns2MobilityHelperTest::AddReferencePoint ( const char *  id,
double  sec,
Vector const &  p,
Vector const &  v 
)
inline

Sugar.

Definition at line 147 of file ns2-mobility-helper-test-suite.cc.

References ns3::Seconds().

+ Here is the call graph for this function:

◆ CheckInitialPositions()

◆ CourseChange()

void Ns2MobilityHelperTest::CourseChange ( std::string  context,
Ptr< const MobilityModel mobility 
)
inlineprivate

◆ CreateNodes()

void Ns2MobilityHelperTest::CreateNodes ( )
inlineprivate

Create and name nodes.

Definition at line 178 of file ns2-mobility-helper-test-suite.cc.

References ns3::Names::Add(), and first::nodes.

+ Here is the call graph for this function:

◆ DoRun()

void Ns2MobilityHelperTest::DoRun ( void  )
inlineprivatevirtual

◆ DoSetup()

void Ns2MobilityHelperTest::DoSetup ( void  )
inlineprivatevirtual

Implementation to do any local setup required for this TestCase.

Subclasses should override this method to perform any costly per-test setup before DoRun is invoked.

Reimplemented from ns3::TestCase.

Definition at line 235 of file ns2-mobility-helper-test-suite.cc.

◆ DoTeardown()

void Ns2MobilityHelperTest::DoTeardown ( void  )
inlineprivatevirtual

Implementation to do any local setup required for this TestCase.

Subclasses should override this method to perform any costly per-test teardown

Reimplemented from ns3::TestCase.

Definition at line 240 of file ns2-mobility-helper-test-suite.cc.

References ns3::Names::Clear(), and ns3::Simulator::Destroy().

+ Here is the call graph for this function:

◆ SetTrace()

void Ns2MobilityHelperTest::SetTrace ( std::string const &  trace)
inline

Set NS-2 trace to read as single large string (don't forget to add \n and quote "'s)

Definition at line 137 of file ns2-mobility-helper-test-suite.cc.

Referenced by Ns2MobilityHelperTestSuite::Ns2MobilityHelperTestSuite().

+ Here is the caller graph for this function:

◆ WriteTrace()

bool Ns2MobilityHelperTest::WriteTrace ( )
inlineprivate

Dump NS-2 trace to tmp file.

Definition at line 168 of file ns2-mobility-helper-test-suite.cc.

References NS_TEST_ASSERT_MSG_EQ_RETURNS_BOOL.

Member Data Documentation

◆ m_nextRefPoint

size_t Ns2MobilityHelperTest::m_nextRefPoint
private

Next reference point to be checked.

Definition at line 162 of file ns2-mobility-helper-test-suite.cc.

◆ m_nodeCount

uint32_t Ns2MobilityHelperTest::m_nodeCount
private

Number of nodes used in the test.

Definition at line 156 of file ns2-mobility-helper-test-suite.cc.

◆ m_reference

std::vector<ReferencePoint> Ns2MobilityHelperTest::m_reference
private

Reference mobility.

Definition at line 160 of file ns2-mobility-helper-test-suite.cc.

◆ m_timeLimit

Time Ns2MobilityHelperTest::m_timeLimit
private

Test time limit.

Definition at line 154 of file ns2-mobility-helper-test-suite.cc.

◆ m_trace

std::string Ns2MobilityHelperTest::m_trace
private

Trace as string.

Definition at line 158 of file ns2-mobility-helper-test-suite.cc.

◆ m_traceFile

std::string Ns2MobilityHelperTest::m_traceFile
private

TMP trace file name.

Definition at line 164 of file ns2-mobility-helper-test-suite.cc.


The documentation for this class was generated from the following file: