A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
rocketfuel-topology-reader-test-suite.cc
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/object-factory.h"
32 #include "ns3/simulator.h"
33 
34 namespace ns3 {
35 
37 {
38 public:
40 private:
41  virtual void DoRun (void);
42 };
43 
44 RocketfuelTopologyReaderTest::RocketfuelTopologyReaderTest ()
45  : TestCase ("RocketfuelTopologyReaderTest")
46 {
47 }
48 
49 
50 void
52 {
54  NodeContainer nodes;
55 
56  std::string input ("./src/topology-read/examples/RocketFuel_toposample_1239_weights.txt");
57 
58  inFile = CreateObject<RocketfuelTopologyReader> ();
59  inFile->SetFileName (input);
60 
61  if (inFile != 0)
62  {
63  nodes = inFile->Read ();
64  }
65 
66  NS_TEST_ASSERT_MSG_NE (nodes.GetN (), 0, "Problems reading node information the topology file..");
67 
68  NS_TEST_ASSERT_MSG_NE (inFile->LinksSize (), 0, "Problems reading the topology file.");
69 
70  NS_TEST_EXPECT_MSG_EQ (nodes.GetN (),315, "noes");
71  NS_TEST_EXPECT_MSG_EQ (inFile->LinksSize (),972, "links");
73 }
74 
76 {
77 public:
79 private:
80 };
81 
82 RocketfuelTopologyReaderTestSuite::RocketfuelTopologyReaderTestSuite ()
83  : TestSuite ("rocketfuel-topology-reader", UNIT)
84 {
85  AddTestCase (new RocketfuelTopologyReaderTest (), TestCase::QUICK);
86 }
87 
88 static RocketfuelTopologyReaderTestSuite rocketfuelTopologyReaderTestSuite;
89 }
smart pointer class similar to boost::intrusive_ptr
Definition: ptr.h:59
A suite of tests to run.
Definition: test.h:962
encapsulates test code
Definition: test.h:834
uint32_t GetN(void) const
Get the number of Ptr<Node> stored in this container.
virtual void DoRun(void)
Implementation to actually run this test case.
static void Destroy(void)
Definition: simulator.cc:121
keep track of a set of node pointers.
void AddTestCase(TestCase *testCase) NS_DEPRECATED
Add an individual test case to this test suite.
Definition: test.cc:172