gpt4 book ai didi

design-patterns - 寻找能够处理不同平台/版本的测试模式/方法

转载 作者:行者123 更新时间:2023-11-28 20:33:50 24 4
gpt4 key购买 nike

有“代码”,它正在不断开发中。有一个测试服务器,这个服务器使用'测试代码'来测试不同平台的'代码'。我的问题涉及“测试代码”。

正如我所说,服务器针对不同的平台进行测试。但要做到这一点,测试代码需要能够处理这些不同的平台。跟踪由于使用这些不同平台而出现的那些小“差异”变得越来越困难。而且它变得更加复杂,因为平台可以有不同的版本并且......我必须测试这些可互换的混合。

现在,我正在做类似的事情:

test1()
if(platform == 'a' && version == '1.4')
assert('bla',bla)
else if(platform == 'a' && version == '1.5')
assert('ble',bla)
else if(version == '1.6')
assert('blu',bla)
.....

现在,想象这要复杂 100 倍,您可能会明白我现在正在处理的事情。所以我问是否有人知道一种模式/方法可以更优雅或更稳健地处理这个问题,即使它涉及编写架构来支持它。

谢谢你们。

最佳答案

如果将复杂性存储在多态对象中,则可能会汇总差异并丢失 if 语句。好处是你可以解耦你的平台与你的测试代码不同,毕竟它只关心制作针对不同环境选择的断言。

这是一个用 Python 实现的简单示例。这个想法是,您为您关心的每个环境配置调用一次 test1 函数。您应该期望的细节由多态对象处理。现在您的测试代码很简单 - 只是映射到正确的对象,然后是断言。

#!/usr/bin/python

class platform_a(object):

def __init__(self, version):
self.version = version
self.bla_mapping = {
'1.4' : 'bla',
'1.5' : 'ble',
'1.6' : 'blu'
}

self.bla = self.bla_mapping[self.version]

# Dummy stubs to demo the test code
class platform_b(object):
def __init__(self):
# Obviously, add all platform B specific details here - this is
# just an example stub
self.bla = 'blu'

class platform_c(object):
def __init__(self):
# Obviously, add all platform C specific details here - this is
# just an example stub
self.bla = 'boo'

def get_the_platform(): return 'a'
def get_the_version(): return '1.4'
def result_of_running_the_real_code(): return 'bla'

def test1(platform, version):

# Map platform names to our polymorphic platform objects
env_mapping = dict(
a = platform_a,
b = platform_b,
c = platform_c,
)

# Instantiate an object corresponding to the unique environment under test
environment = env_mapping[platform](version)

# Get the result of running the real code in this environment
bla = result_of_running_the_real_code()

# Test we got what we expected
assert(environment.bla, bla)


# TEST HARNESS TOP LEVEL STARTS HERE
# The environment is presumably specified by the test harness
platform = get_the_platform()
version = get_the_version()

# Run the test
test1(platform, version)

关于design-patterns - 寻找能够处理不同平台/版本的测试模式/方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5034443/

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