1

使用ConfigObj,我想测试一些部分创建代码:

def create_section(config, section):
    config.reload()
    if section not in config:
         config[session] = {}
         logging.info("Created new section %s.", section)
    else:
         logging.debug("Section %s already exists.", section)

我想写一些单元测试,但我遇到了一个问题。例如,

def test_create_section_created():
    config = Mock(spec=ConfigObj)  # ← This is not right…
    create_section(config, 'ook')
    assert 'ook' in config
    config.reload.assert_called_once_with()

显然,测试方法将失败,因为TypeError'Mock' 类型的参数不可迭代。

如何将config对象定义为模拟?

4

1 回答 1

0

这就是为什么你永远不应该完全清醒之前发帖的原因:

def test_create_section_created():
    logger.info = Mock()
    config = MagicMock(spec=ConfigObj)  # ← This IS right…
    config.__contains__.return_value = False  # Negates the next assert.
    create_section(config, 'ook')
    # assert 'ook' in config  ← This is now a pointless assert!
    config.reload.assert_called_once_with()
    logger.info.assert_called_once_with("Created new section ook.")

我将把这个答案/问题留给后代,以防其他人出现脑力衰竭……</p>

于 2016-09-20T08:05:32.747 回答