gpt4 book ai didi

python在unittest中运行glib mainloop

转载 作者:太空狗 更新时间:2023-10-30 02:48:11 34 4
gpt4 key购买 nike

我是 python 的新手,正在尝试设置功能测试环境。测试环境应通过 DBus 接收信号并对其进行评估。 DBus 信号使用 GLib MainLoop。我有以下封装循环的类:

class SignalLoop(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.__l = gobject.MainLoop()
def run(self):
self.__l.run()
def quit(self):
self.__l.quit()

在执行 DBus 处理的模块中我试过:

class __ModuleInitializer:
def __init__(self):
print('Module was initialized')
gobject.threads_init()
sl = SignalLoop()
sl.start()

def __del__(self):
print('Module was deinitialized')
sl.quit()

__module_init = __ModuleInitializer()

我还尝试了以下方法:

  • setUp/tearDownModule() 对我不起作用——至少在 python 2.5.2 中是这样
  • __init__() 和 __del__() 方法并将所有测试用例放在一个类中。 __del__() 永远不会被调用,并且此解决方案不会随着大量测试用例的扩展而扩展。

当我运行代码时,sl.qui() 永远不会执行,我不知道为什么。从控制台运行时我必须杀死我的主程序,因为它永远不会返回。然而,这对于 PyDev 测试运行器来说不是问题。

有没有我可以用来破坏测试环境的钩子(Hook)?我希望能够同时运行一个测试和几个测试,因此将其“破解”到方法本身中不是一种选择。

你能帮帮我吗?

最佳答案

我不会在设置和拆卸方法期间启动和停止主循环。相反,发出您的异步请求(或其他任何请求),然后逐个迭代地运行主循环迭代,直到您的结果到达。

例子:

make_asynchronous_request()
main_context = GLib.MainContext.default()
while main_context.pending():
main_context.iteration(False)
assert(result_is_ok())

关于python在unittest中运行glib mainloop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13728800/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com