A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
topology-read
test
rocketfuel-topology-reader-test-suite.cc
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2010 Hajime Tazaki
4
*
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License version 2 as
7
* published by the Free Software Foundation;
8
*
9
* This program is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
* GNU General Public License for more details.
13
*
14
* You should have received a copy of the GNU General Public License
15
* along with this program; if not, write to the Free Software
16
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
*
18
* Author: Hajime Tazaki (tazaki@sfc.wide.ad.jp)
19
*/
20
21
//-----------------------------------------------------------------------------
22
// Unit tests
23
//-----------------------------------------------------------------------------
24
25
#include "ns3/test.h"
26
#include "ns3/rocketfuel-topology-reader.h"
27
#include "ns3/log.h"
28
#include "ns3/abort.h"
29
#include "ns3/attribute.h"
30
#include "ns3/object-factory.h"
31
#include "ns3/simulator.h"
32
33
using namespace
ns3
;
45
class
RocketfuelTopologyReaderTest
:
public
TestCase
46
{
47
public
:
48
RocketfuelTopologyReaderTest
();
49
private
:
50
virtual
void
DoRun (
void
);
51
};
52
53
RocketfuelTopologyReaderTest::RocketfuelTopologyReaderTest
()
54
:
TestCase
(
"RocketfuelTopologyReaderTest"
)
55
{
56
}
57
58
59
void
60
RocketfuelTopologyReaderTest::DoRun
(
void
)
61
{
62
Ptr<RocketfuelTopologyReader>
inFile;
63
NodeContainer
nodes
;
64
65
std::string input (
"./src/topology-read/examples/RocketFuel_toposample_1239_weights.txt"
);
66
67
inFile = CreateObject<RocketfuelTopologyReader> ();
68
inFile->
SetFileName
(input);
69
70
if
(inFile != 0)
71
{
72
nodes
= inFile->
Read
();
73
}
74
75
NS_TEST_ASSERT_MSG_NE
(
nodes
.GetN (), 0,
"Problems reading node information the topology file.."
);
76
77
NS_TEST_ASSERT_MSG_NE
(inFile->
LinksSize
(), 0,
"Problems reading the topology file."
);
78
79
NS_TEST_EXPECT_MSG_EQ
(
nodes
.GetN (),315,
"noes"
);
80
NS_TEST_EXPECT_MSG_EQ
(inFile->
LinksSize
(),972,
"links"
);
81
Simulator::Destroy ();
82
}
83
90
class
RocketfuelTopologyReaderTestSuite
:
public
TestSuite
91
{
92
public
:
93
RocketfuelTopologyReaderTestSuite
();
94
private
:
95
};
96
97
RocketfuelTopologyReaderTestSuite::RocketfuelTopologyReaderTestSuite
()
98
:
TestSuite
(
"rocketfuel-topology-reader"
, UNIT)
99
{
100
AddTestCase
(
new
RocketfuelTopologyReaderTest
(), TestCase::QUICK);
101
}
102
103
static
RocketfuelTopologyReaderTestSuite
g_rocketfuelTopologyReaderTestSuite
;
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition:
ptr.h:73
RocketfuelTopologyReaderTest
Rocketfuel Topology Reader Test.
Definition:
rocketfuel-topology-reader-test-suite.cc:45
ns3::TestSuite
A suite of tests to run.
Definition:
test.h:1342
RocketfuelTopologyReaderTestSuite::RocketfuelTopologyReaderTestSuite
RocketfuelTopologyReaderTestSuite()
Definition:
rocketfuel-topology-reader-test-suite.cc:97
NS_TEST_EXPECT_MSG_EQ
#define NS_TEST_EXPECT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report if not.
Definition:
test.h:285
ns3::TestCase
encapsulates test code
Definition:
test.h:1155
g_rocketfuelTopologyReaderTestSuite
static RocketfuelTopologyReaderTestSuite g_rocketfuelTopologyReaderTestSuite
Static variable for test initialization.
Definition:
rocketfuel-topology-reader-test-suite.cc:103
first.nodes
nodes
Definition:
first.py:25
ns3::TestCase::AddTestCase
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
Definition:
test.cc:299
ns3::TopologyReader::SetFileName
void SetFileName(const std::string &fileName)
Sets the input file name.
Definition:
topology-reader.cc:53
ns3::TopologyReader::LinksSize
int LinksSize(void) const
Returns the number of links in this block.
Definition:
topology-reader.cc:79
RocketfuelTopologyReaderTestSuite
Rocketfuel Topology Reader TestSuite.
Definition:
rocketfuel-topology-reader-test-suite.cc:90
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::NodeContainer
keep track of a set of node pointers.
Definition:
node-container.h:38
ns3::RocketfuelTopologyReader::Read
virtual NodeContainer Read(void)
Main topology reading function.
Definition:
rocketfuel-topology-reader.cc:324
NS_TEST_ASSERT_MSG_NE
#define NS_TEST_ASSERT_MSG_NE(actual, limit, msg)
Test that an actual and expected (limit) value are not equal and report and abort if not...
Definition:
test.h:624
RocketfuelTopologyReaderTest::RocketfuelTopologyReaderTest
RocketfuelTopologyReaderTest()
Definition:
rocketfuel-topology-reader-test-suite.cc:53
RocketfuelTopologyReaderTest::DoRun
virtual void DoRun(void)
Implementation to actually run this TestCase.
Definition:
rocketfuel-topology-reader-test-suite.cc:60
Generated on Wed Nov 7 2018 10:02:11 for ns-3 by
1.8.14