gpt4 book ai didi

python - 单元测试期间未访问全局变量

转载 作者:太空宇宙 更新时间:2023-11-04 08:54:59 25 4
gpt4 key购买 nike

在这个问题被立即标记为重复之前让我说我已经尝试过every solution这是与我的情况最相关的两个问题。如果有人在必要时至少可以在关闭此问题之前查看我的特定问题,我将不胜感激。

我有一个名为 e 的有限状态机对象,它是一个 MCFiniteSM 对象。 e 的核心是一个名为 state_dict 的字典,它存储“进程”id('1'、'2' 等)和一个关联的字典,它存储有关每个“进程”的更多信息。我正在运行单元测试来添加进程,根据给定参数更改它们的状态等。但是,在单元测试文件中的函数调用之间,有限状态机似乎被清除了。我已经查看了上面列出的两个问题,以避免这种情况并坚持更改,但无论我尝试什么,对有限状态机的更改都不会保留。这是 uniitest 文件。

from finite_state_machine import MCFiniteSM
from unittest import TestLoader, TestCase, main as unimain
from datetime import datetime
import time, calendar

class MyUnitTest(TestCase):

@classmethod
def setUpClass(cls):
cls.e = MCFiniteSM()
cls.timestamp = datetime.strftime(datetime.fromtimestamp(calendar.timegm(time.gmtime())), '%Y/%m/%d %H:%M:%S')

class TestFSM(MyUnitTest):

@classmethod
def setUpClass(cls):
super(TestFSM, cls).setUpClass()
#e = MCFiniteSM()
#timestamp = datetime.strftime(datetime.fromtimestamp(calendar.timegm(time.gmtime())), '%Y/%m/%d %H:%M:%S')

def test_add_convert_processes(self):

self.e.add_process('1', 'S', self.timestamp, 100, 'start message for process 1')
self.e.add_process('2', 'S', self.timestamp, 200, 'start message for process 2')
self.e.add_process('3', 'S', self.timestamp, 300, 'start message for process 3')
self.e.add_process('4', 'S', self.timestamp, 400, 'start message for process 4')
self.e.add_process('5', 'S', self.timestamp, 500, 'start message for process 5')
self.e.add_process('6', 'S', self.timestamp, 600, 'start message for process 6')

self.assertEqual(self.e.state_dict['1'], {'id':'1', 'message_type': 'S', 'timestamp':self.timestamp, 'state': 'i', 'threshold':100, 'message': 'start message for process 1'})
self.assertEqual(self.e.state_dict['2'], {'id':'2', 'message_type': 'S', 'timestamp':self.timestamp, 'state': 'i', 'threshold':200, 'message': 'start message for process 2'})
self.assertEqual(self.e.state_dict['3'], {'id':'3', 'message_type': 'S', 'timestamp':self.timestamp, 'state': 'i', 'threshold':300, 'message': 'start message for process 3'})
self.assertEqual(self.e.state_dict['4'], {'id':'4', 'message_type': 'S', 'timestamp':self.timestamp, 'state': 'i', 'threshold':400, 'message': 'start message for process 4'})
self.assertEqual(self.e.state_dict['5'], {'id':'5', 'message_type': 'S', 'timestamp':self.timestamp, 'state': 'i', 'threshold':500, 'message': 'start message for process 5'})
self.assertEqual(self.e.state_dict['6'], {'id':'6', 'message_type': 'S', 'timestamp':self.timestamp, 'state': 'i', 'threshold':600, 'message': 'start message for process 6'})

self.e.convert_state('1', 'S')
self.e.convert_state('2', 'S')
self.e.convert_state('3', 'S')
self.e.convert_state('4', 'S')
self.e.convert_state('5', 'S')
self.e.convert_state('6', 'S')

self.assertEqual(self.e.state_dict['2']['state'], 'a')
self.assertEqual(self.e.state_dict['3']['state'], 'a')
self.assertEqual(self.e.state_dict['4']['state'], 'a')

self.e.add_process('2', 'E', self.timestamp, None, 'end message for process 2')
self.e.add_process('3', 'E', self.timestamp, None, 'end message for process 3')
self.e.add_process('4', 'E', self.timestamp, None, 'end message for process 4')

self.assertEqual(self.e.state_dict['2']['state'], 'i')
self.assertEqual(self.e.state_dict['3']['state'], 'i')
self.assertEqual(self.e.state_dict['4']['state'], 'i')

def test_active_start_conversion(self):
print self.e
print 'trying...'
import sys
from StringIO import StringIO

orig = sys.stdout
try:
output = StringIO()
sys.stdout = output
self.e.convert_state('1', 'S')
out = output.getvalue().strip()
test = "Process ID:", '1', "\n" \
"Process Message Type:", 'S', "\n" \
"Process timestamp:", self.timestamp, "\n" \
"Process Threshold:", 100, "\n" \
"Process Message:", 'start message for process 1', "\n" \
"Log Message:", "PROCESS WITH ID 1 SENT MULTIPLE START MESSAGES", "\n"
self.assertEqual(out, test)
finally:
sys.stdout = orig

if __name__ == '__main__':
unimain()

'e' 是我想在函数调用之间保持修改的变量。当我进入 TestFSM.test_active_start_conversion 时,e 的大小打印出 0,而它应该是 6。TestFSM.test_add_convert_processes 方法运行成功。

实际错误是关键错误。这是堆栈跟踪:

Error
Traceback (most recent call last):
File "/home/Desktop/fsm_unit_tests.py", line 68, in test_active_start_conversion
self.e.convert_state('1', 'S')
File "/home/Desktop/finite_state_machine.py", line 26, in convert_state
cb_id = self.state_dict[id]['id']
KeyError: '1'

引发错误的行是 self.e.convert_state('1', 'S') ,我告诉 fsm 更改 ID 为 '1 的进程的状态'.它认为没有 ID 为 1 的进程,并且在打印 fsm 的大小时它认为有限状态机是空的。这一定是由于 e 没有持续维护,但我不明白为什么。

我已经尝试将 self.e 转换为 self.__class__.e (与时间戳相同),以及只保持 e 和时间戳全局并调用 TestFSM .eTestFSM.timestamp 以保留更改。这两种解决方案都列在其他问题中,但它们仍然产生了 Key Error。我尝试设置 setUpClass(),但仍然产生关键错误。

如何持久化 e 和时间戳?

最佳答案

测试方法按字母顺序执行。所以 test_active_start_conversiontest_add_convert_processes 之前执行。

但是,实际上您的测试应该是独立的 - 您应该在实际的 setUp 方法中进行设置,而不是在测试方法中。

关于python - 单元测试期间未访问全局变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30989071/

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