A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
mac-messages-test.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2009 INRIA, UDcast
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 * Mohamed Amine Ismail <amine.ismail@sophia.inria.fr>
7 *
8 */
9#include "ns3/mac-messages.h"
10#include "ns3/service-flow.h"
11#include "ns3/test.h"
12
13using namespace ns3;
14
15/**
16 * @ingroup wimax
17 * @defgroup wimax-test wimax module tests
18 */
19
20/**
21 * @ingroup wimax-test
22 * @ingroup tests
23 *
24 * @brief Test the DSA request message.
25 */
27{
28 public:
30 ~DsaRequestTestCase() override;
31
32 private:
33 void DoRun() override;
34};
35
37 : TestCase("Test the DSA request messages")
38{
39}
40
44
45void
47{
51
52 sf.SetSfid(100);
53 sf.SetConvergenceSublayerParam(csParam);
54 sf.SetCsSpecification(ServiceFlow::IPV4);
55 sf.SetServiceSchedulingType(ServiceFlow::SF_TYPE_UGS);
56 sf.SetMaxSustainedTrafficRate(1000000);
57 sf.SetMinReservedTrafficRate(1000000);
58 sf.SetMinTolerableTrafficRate(1000000);
59 sf.SetMaximumLatency(10);
60 sf.SetMaxTrafficBurst(1000);
61 sf.SetTrafficPriority(1);
62
64 Ptr<Packet> packet = Create<Packet>();
65 packet->AddHeader(dsaReq);
66
68 packet->RemoveHeader(dsaReqRecv);
69
70 ServiceFlow sfRecv = dsaReqRecv.GetServiceFlow();
71
72 NS_TEST_ASSERT_MSG_EQ(sfRecv.GetDirection(),
74 "The sfRecv had the wrong direction.");
75 NS_TEST_ASSERT_MSG_EQ(sfRecv.GetSfid(), 100, "The sfRecv had the wrong sfid.");
76 NS_TEST_ASSERT_MSG_EQ(sfRecv.GetCsSpecification(),
78 "The sfRecv had the wrong cs specification.");
79 NS_TEST_ASSERT_MSG_EQ(sfRecv.GetServiceSchedulingType(),
81 "The sfRecv had the wrong service scheduling type.");
82 NS_TEST_ASSERT_MSG_EQ(sfRecv.GetMaxSustainedTrafficRate(),
83 1000000,
84 "The sfRecv had the wrong maximum sustained traffic rate.");
85 NS_TEST_ASSERT_MSG_EQ(sfRecv.GetMinReservedTrafficRate(),
86 1000000,
87 "The sfRecv had the wrong minimum reserved traffic rate.");
88 NS_TEST_ASSERT_MSG_EQ(sfRecv.GetMinTolerableTrafficRate(),
89 1000000,
90 "The sfRecv had the wrong minimum tolerable traffic rate.");
91 NS_TEST_ASSERT_MSG_EQ(sfRecv.GetMaximumLatency(),
92 10,
93 "The sfRecv had the wrong maximum latency.");
94 NS_TEST_ASSERT_MSG_EQ(sfRecv.GetMaxTrafficBurst(),
95 1000,
96 "The sfRecv had the wrong maximum traffic burst.");
97 NS_TEST_ASSERT_MSG_EQ(sfRecv.GetTrafficPriority(),
98 1,
99 "The sfRecv had the wrong traffic priority.");
100}
101
102/**
103 * @ingroup wimax-test
104 * @ingroup tests
105 *
106 * @brief Ns3 Wimax Mac Messages Test Suite
107 */
109{
110 public:
112};
113
115 : TestSuite("wimax-mac-messages", Type::UNIT)
116{
117 AddTestCase(new DsaRequestTestCase, TestCase::Duration::QUICK);
118}
119
Test the DSA request message.
void DoRun() override
Implementation to actually run this TestCase.
Ns3 Wimax Mac Messages Test Suite.
CsParameters class.
This class implements the DSA-REQ message described by "IEEE Standard for Local and metropolitan area...
IpcsClassifierRecord class.
Smart pointer class similar to boost::intrusive_ptr.
Definition ptr.h:66
This class implements service flows as described by the IEEE-802.16 standard.
encapsulates test code
Definition test.h:1050
void AddTestCase(TestCase *testCase, Duration duration=Duration::QUICK)
Add an individual child TestCase to this test suite.
Definition test.cc:292
A suite of tests to run.
Definition test.h:1267
Type
Type of test.
Definition test.h:1274
Ptr< T > Create(Ts &&... args)
Create class instances by constructors with varying numbers of arguments and return them by Ptr.
Definition ptr.h:436
#define NS_TEST_ASSERT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report and abort if not.
Definition test.h:134
static Ns3WimaxMacMessagesTestSuite ns3WimaxMacMessagesTestSuite
the test suite
Every class exported by the ns3 library is enclosed in the ns3 namespace.