首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >无法在INet (OmNET++)中运行自定义单元测试

无法在INet (OmNET++)中运行自定义单元测试
EN

Stack Overflow用户
提问于 2016-08-27 10:47:49
回答 1查看 364关注 0票数 0

编辑

原来的问题使事情变得复杂,实际上问题要简单得多。

我试图简单地运行现有的单元测试,而不添加任何内容。在我运行的单元测试inet/tests/unit文件夹中:

代码语言:javascript
运行
复制
./runtest

得到这个:

代码语言:javascript
运行
复制
andreatino@andreatino-virtual-machine:~/Git/inet/tests/unit$ ./runtest 
opp_test: extracting files from *.test files into work...

Creating Makefile in /home/andreatino/Git/inet/tests/unit/work...
Makefile created, running "make depend" to add dependencies...
Creating dependencies...
intervaltree/test.cc
In file included from /home/andreatino/Downloads/omnetpp-5.0/include/platdep/sockets.h:2:0,
                 from ../../../src/inet/common/precompiled.h:19,
                 from ../../../src/inet/common/INETDefs.h:22,
                 from ../../../src/inet/common/IntervalTree.h:42,
                 from intervaltree/test.cc:4:
/home/andreatino/Downloads/omnetpp-5.0/include/omnetpp/platdep/sockets.h:33:3: error: #error "#include <platdep/sockets.h> must precede <omnetpp.h> (and <platdep/timeutil.h> if present)"
 # error "#include <platdep/sockets.h> must precede <omnetpp.h> (and <platdep/timeutil.h> if present)"
   ^
Makefile:122: recipe for target 'out/gcc-debug//intervaltree/test.o' failed
make: *** [out/gcc-debug//intervaltree/test.o] Error 1

怎么一回事?

注意实际上你可以避免阅读原来的问题。除非你对获得更多关于这个问题的信息感到好奇。

原始问题

我试图在INet框架中运行一个自定义测试,我正在为我正在编写的组件添加一个自定义测试。这些文件是此承诺的一部分。

我在:inet/tests/unit中添加了一个测试,请查看文件结构的提交。

测试文件

测试文件:

代码语言:javascript
运行
复制
%description:
Test MacUtils in Ieee80211ac:
- Length of MU bundles is correctly computed.

%includes:
#include "ieee80211ac/MacUtilsTest.h"

%global:

using namespace ::inet::tcp::test::ieee80211ac;

%activity:
MacUtilsTest test = MacUtilsTest();

test.testMaxLengthReturned();

EV << ".\n";

%contains: stdout
l=7
.

以及所包含的标题:

代码语言:javascript
运行
复制
#ifndef __INET_IEEE80211AC_MACUTILSTEST_H
#define __INET_IEEE80211AC_MACUTILSTEST_H

#include "inet/linklayer/ieee80211/mac/IMacParameters.h"
#include "inet/linklayer/ieee80211/mac/IRateSelection.h"
#include "inet/linklayer/ieee80211/mac/AccessCategory.h"
#include "inet/linklayer/ieee80211/mac/IRateControl.h"
#include "inet/linklayer/ieee80211/mac/Ieee80211Frame_m.h"

using namespace inet::ieee80211ac;

namespace inet {

namespace ieee80211ac {
class MacUtils;
class Ieee80211acMUBundleFrame;
}

namespace test {
namespace ieee80211ac {

/**
 * Tests focusing on utils on bundle messages.
 */
class MacUtilsTest
{
    protected:
        class DummyMacParameters : public inet::ieee80211::IMacParameters {
            public:
                virtual const MACAddress& getAddress() const override {}
                virtual bool isEdcaEnabled() const override {return false;}
                virtual simtime_t getSlotTime() const override {return 0;}
                virtual simtime_t getSifsTime() const override {return 0;}
                virtual simtime_t getAifsTime(inet::ieee80211::AccessCategory ac) const override {return 0;}
                virtual simtime_t getEifsTime(inet::ieee80211::AccessCategory ac) const override {return 0;}
                virtual simtime_t getPifsTime() const override {return 0;}
                virtual simtime_t getRifsTime() const override {return 0;}
                virtual int getCwMin(inet::ieee80211::AccessCategory ac) const override {return 0;}
                virtual int getCwMax(inet::ieee80211::AccessCategory ac) const override {return 0;}
                virtual int getCwMulticast(inet::ieee80211::AccessCategory ac) const override {return 0;}
                virtual simtime_t getTxopLimit(inet::ieee80211::AccessCategory ac) const override {return 0;}
                virtual int getShortRetryLimit() const override {return 0;}
                virtual int getLongRetryLimit() const override {return 0;}
                virtual int getRtsThreshold() const override {return 0;}
                virtual simtime_t getPhyRxStartDelay() const override {return 0;}
                virtual bool getUseFullAckTimeout() const override {return false;}
        };

        class DummyRateSelection : public inet::ieee80211::IRateSelection {
            public:
                virtual void setRateControl(inet::ieee80211::IRateControl *rateControl) override {}
                virtual const IIeee80211Mode *getSlowestMandatoryMode() override {return nullptr;}
                virtual const IIeee80211Mode *getModeForUnicastDataOrMgmtFrame(
                        inet::ieee80211::Ieee80211DataOrMgmtFrame *frame) override {return nullptr;}
                virtual const IIeee80211Mode *getModeForMulticastDataOrMgmtFrame(
                        inet::ieee80211::Ieee80211DataOrMgmtFrame *frame) override {return nullptr;}
                virtual const IIeee80211Mode *getModeForControlFrame(
                        inet::ieee80211::Ieee80211Frame *controlFrame) override {return nullptr;}
                virtual const IIeee80211Mode *getResponseControlFrameMode() override {return nullptr;}
        };

    protected:
        DummyMacParameters *macParameters = nullptr;
        DummyRateSelection *rateSelection = nullptr;
        MacUtils *utils = nullptr;
        Ieee80211acMUBundleFrame *bundleFrame = nullptr;

    protected:
        virtual void initialize();

    public:
        MacUtilsTest();
        virtual ~MacUtilsTest();

    public:
        void testMaxLengthReturned();
};

} // namespace ieee80211ac
} // namespace test
} // namespace inet

#endif

和执行情况:

代码语言:javascript
运行
复制
#include "MacUtilsTest.h"
#include "inet/linklayer/ieee80211ac/mac/MacUtils.h"
#include "inet/linklayer/ieee80211/mac/MacUtils.h"
#include "inet/linklayer/ieee80211ac/mac/Ieee80211acFrame_m.h"

using namespace inet::ieee80211ac;

namespace inet {
namespace test {
namespace ieee80211ac {

MacUtilsTest::MacUtilsTest()
{
    this->initialize();
}

MacUtilsTest::~MacUtilsTest()
{
    delete this->macParameters;
    delete this->rateSelection;
    delete this->utils;

    for (unsigned int i = 0, l = this->bundleFrame->getSingleFramesArraySize(); i < l; i++)
        delete this->bundleFrame->getSingleFrames(i);
    delete this->bundleFrame;
}

void MacUtilsTest::initialize()
{
    this->macParameters = new MacUtilsTest::DummyMacParameters();
    this->rateSelection = new MacUtilsTest::DummyRateSelection();
    this->utils = new inet::ieee80211ac::MacUtils(this->macParameters, this->rateSelection);

    this->bundleFrame = new Ieee80211acMUBundleFrame("MU Bundle");

    Ieee80211acDataFrame* data1 = new Ieee80211acDataFrame("Data-1");
    data1->setByteLength(3);
    Ieee80211acDataFrame* data2 = new Ieee80211acDataFrame("Data-2");
    data2->setByteLength(6);
    Ieee80211acDataFrame* data3 = new Ieee80211acDataFrame("Data-3");
    data3->setByteLength(7);

    this->bundleFrame->setSingleFramesArraySize(3);
    this->bundleFrame->setSingleFrames(0, *data1);
    this->bundleFrame->setSingleFrames(0, *data2);
    this->bundleFrame->setSingleFrames(0, *data3);
}

void MacUtilsTest::testMaxLengthReturned()
{
    int64_t length = this->utils->getMUBundleByteLength(this->bundleFrame);
    EV << "l=" << length << endl;
}

} // namespace ieee80211ac
} // namespace test
} // namespace inet

我只是为了这个问题才在这里添加它们,但是在我链接的提交中,您可以获得更多关于这些文件在哪里的信息。

不能编译

然后,我尝试在./runtest文件夹中运行unit并获得以下信息:

代码语言:javascript
运行
复制
andreatino@andreatino-virtual-machine:~/Git/inet/tests/unit$ ./runtest 
opp_test: extracting files from *.test files into work...

Creating Makefile in /home/andreatino/Git/inet/tests/unit/work...
Makefile created, running "make depend" to add dependencies...
Creating dependencies...
IEEE80211ac_MacUtils_MUBundleLength/test.cc
In file included from /home/andreatino/Downloads/omnetpp-5.0/include/platdep/sockets.h:2:0,
                 from ../../../src/inet/common/precompiled.h:19,
                 from ../../../src/inet/common/INETDefs.h:22,
                 from ../../../src/inet/linklayer/ieee80211/mac/AccessCategory.h:23,
                 from ../../../src/inet/linklayer/ieee80211/mac/IMacParameters.h:23,
                 from ./lib/ieee80211ac/MacUtilsTest.h:4,
                 from IEEE80211ac_MacUtils_MUBundleLength/test.cc:4:
/home/andreatino/Downloads/omnetpp-5.0/include/omnetpp/platdep/sockets.h:33:3: error: #error "#include <platdep/sockets.h> must precede <omnetpp.h> (and <platdep/timeutil.h> if present)"
 # error "#include <platdep/sockets.h> must precede <omnetpp.h> (and <platdep/timeutil.h> if present)"
   ^
In file included from IEEE80211ac_MacUtils_MUBundleLength/test.cc:4:0:
./lib/ieee80211ac/MacUtilsTest.h:10:23: error: ‘ieee80211ac’ is not a namespace-name
 using namespace inet::ieee80211ac;
                       ^
./lib/ieee80211ac/MacUtilsTest.h:10:34: error: expected namespace-name before ‘;’ token
 using namespace inet::ieee80211ac;
                                  ^
./lib/ieee80211ac/MacUtilsTest.h:65:9: error: ‘MacUtils’ does not name a type
         MacUtils *utils = nullptr;
         ^
./lib/ieee80211ac/MacUtilsTest.h:66:9: error: ‘Ieee80211acMUBundleFrame’ does not name a type
         Ieee80211acMUBundleFrame *bundleFrame = nullptr;
         ^
./lib/ieee80211ac/MacUtilsTest.h: In member function ‘virtual const inet::MACAddress& inet::test::ieee80211ac::MacUtilsTest::DummyMacParameters::getAddress() const’:
./lib/ieee80211ac/MacUtilsTest.h:30:72: warning: no return statement in function returning non-void [-Wreturn-type]
                 virtual const MACAddress& getAddress() const override {}
                                                                        ^
IEEE80211ac_MacUtils_MUBundleLength/test.cc: At global scope:
IEEE80211ac_MacUtils_MUBundleLength/test.cc:13:25: error: ‘inet::tcp’ has not been declared
 using namespace ::inet::tcp::test::ieee80211ac;
                         ^
IEEE80211ac_MacUtils_MUBundleLength/test.cc:13:36: error: ‘ieee80211ac’ is not a namespace-name
 using namespace ::inet::tcp::test::ieee80211ac;
                                    ^
IEEE80211ac_MacUtils_MUBundleLength/test.cc:13:47: error: expected namespace-name before ‘;’ token
 using namespace ::inet::tcp::test::ieee80211ac;
                                               ^
IEEE80211ac_MacUtils_MUBundleLength/test.cc: In member function ‘virtual void IEEE80211ac_MacUtils_MUBundleLength::Test::activity()’:
IEEE80211ac_MacUtils_MUBundleLength/test.cc:28:1: error: ‘MacUtilsTest’ was not declared in this scope
 MacUtilsTest test = MacUtilsTest();
 ^
IEEE80211ac_MacUtils_MUBundleLength/test.cc:28:1: note: suggested alternative:
In file included from IEEE80211ac_MacUtils_MUBundleLength/test.cc:4:0:
./lib/ieee80211ac/MacUtilsTest.h:25:7: note:   ‘inet::test::ieee80211ac::MacUtilsTest’
 class MacUtilsTest
       ^
IEEE80211ac_MacUtils_MUBundleLength/test.cc:30:1: error: ‘test’ was not declared in this scope
 test.testMaxLengthReturned();
 ^
IEEE80211ac_MacUtils_MUBundleLength/test.cc:30:1: note: suggested alternative:
In file included from IEEE80211ac_MacUtils_MUBundleLength/test.cc:4:0:
./lib/ieee80211ac/MacUtilsTest.h:19:16: note:   ‘inet::test’
 namespace test {
                ^
Makefile:123: recipe for target 'out/gcc-debug//IEEE80211ac_MacUtils_MUBundleLength/test.o' failed
make: *** [out/gcc-debug//IEEE80211ac_MacUtils_MUBundleLength/test.o] Error 1

我不明白我做错了什么..。甚至是发生了什么..。

EN

回答 1

Stack Overflow用户

发布于 2016-12-09 11:31:40

从OMNeT++ 4.2开始,<platdep/sockets.h>必须在变更列表中以<omnetpp.h>开头:

simulation/omnet/doc/API-changes.txt?rev=140#L57

在in中,通过在以下提交中调整src/makefrag,确保了正确的顺序:

https://github.com/inet-framework/inet/commit/d9abbd1b4df5b9efcfb7a7f58e8f2223f4a91a33

因此,您必须使用以下代码在与您的makefrag相同的文件夹中添加一个Makefile文件:

代码语言:javascript
运行
复制
PRECOMPILED_HEADER=<path-to-inet>/src/inet/common/precompiled.h
CFLAGS += -include $(PRECOMPILED_HEADER)

考虑用路径替换<path-to-inet>,例如../../

更新:修改OMNeT++ 5.1预览3强调,问题已经解决:

代码语言:javascript
运行
复制
Ordering of 'platdep/sockets.h' and 'omnetpp.h' is no longer important. It is recommended to include 'omnetpp.h' first.
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/39180245

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档