有没有办法让模拟函数通过 ON_CALL 变得“有趣”?

问题描述 投票:0回答:2

鉴于:

#include "gmock/gmock.h"
#include <string>

using namespace testing; // tsk, tsk

// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

struct Mockable {
    virtual std::string ify(int x) const;
};

std::string Mockable::ify(int x) const
{
    return std::to_string(x);
}

// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

struct Mocked : public Mockable {
    MOCK_CONST_METHOD1(ify, std::string(int));
};

// -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --

std::string tested(Mockable const& u, int x)
{
    return u.ify(x);
}

TEST(TC,T42)
{
    Mocked mock;
    ON_CALL(mock, ify(Eq(42)))
    .WillByDefault(Return("33"));

    std::string const& ret = tested(mock, 42);
    EXPECT_EQ("42", ret);
}

TEST(TC,T33)
{
    Mocked mock;
    ON_CALL(mock, ify(Eq(33)))
    .WillByDefault(Return("333"));

    std::string const& ret = tested(mock, 42);
    EXPECT_EQ("42", ret);
}

int main(int argc, char *argv[])
{
    ::testing::InitGoogleTest(&argc, argv);
    //::testing::FLAGS_gmock_verbose = "info";

    return RUN_ALL_TESTS();
}

输出为:

$ ./mocktest 
[==========] Running 2 tests from 1 test case.
[----------] Global test environment set-up.
[----------] 2 tests from TC
[ RUN      ] TC.T42

GMOCK WARNING:
Uninteresting mock function call - taking default action specified at:
mocktest.cc:40:
    Function call: ify(42)
          Returns: "33"
Stack trace:
mocktest.cc:44: Failure
Value of: ret
  Actual: "33"
Expected: "42"
[  FAILED  ] TC.T42 (0 ms)
[ RUN      ] TC.T33

GMOCK WARNING:
Uninteresting mock function call - returning default value.
    Function call: ify(42)
          Returns: ""
Stack trace:
mocktest.cc:54: Failure
Value of: ret
  Actual: ""
Expected: "42"
[  FAILED  ] TC.T33 (1 ms)
[----------] 2 tests from TC (1 ms total)

[----------] Global test environment tear-down
[==========] 2 tests from 1 test case ran. (1 ms total)
[  PASSED  ] 0 tests.
[  FAILED  ] 2 tests, listed below:
[  FAILED  ] TC.T42
[  FAILED  ] TC.T33

在这两种情况下,Gmock 的行为都是正确的。应用该行为(或不应用,在 TC33 中)。但为什么在这两种情况下它都说“无趣的模拟函数调用”?仅当使用

EXPECT_CALL
指定时,模拟函数调用才有意义吗?

c++ unit-testing googlemock
2个回答
28
投票

“仅当使用 EXPECT_CALL 指定时,模拟函数调用才有意义吗?”

简而言之,是的。

ON_CALL()
宏仅影响模拟方法调用所采取的操作,但不影响模拟对象上设置的调用期望。

不过,您可以使用

NiceMock<>
模板来抑制这些警告。
引用谷歌嘲笑“Cookbook”

假设您的测试使用模拟类 MockFoo:

TEST(...) {
  MockFoo mock_foo;
  EXPECT_CALL(mock_foo, DoThis());
  ... code that uses mock_foo ...
}

如果调用除 DoThis() 之外的mock_foo 方法,Google Mock 将报告为警告。但是,如果您重写测试以使用 NiceMock,则警告将会消失,从而产生更清晰的测试输出:

using ::testing::NiceMock;

TEST(...) {
  NiceMock<MockFoo> mock_foo;
  EXPECT_CALL(mock_foo, DoThis());
  ... code that uses mock_foo ...
}

NiceMock<MockFoo>
MockFoo
的子类,因此可以在任何接受
MockFoo
的地方使用。


1
投票

可以将 EXPECT_CALLWillRepeatedly 一起使用:

EXPECT_CALL(mock, DoThis()).WillRepeatedly(Return("42"));

© www.soinside.com 2019 - 2024. All rights reserved.