[TIP] pytest - parametrizing some arguments require parametrizationat collection phase and some at setup time?

自娱自乐 happyheartlong at qq.com
Thu Apr 4 18:46:20 PDT 2013


This may help you.
http://sourceforge.net/p/pymtest/pymtest/ci/f944f791e87358b2bbb2f07d045841adc561467f/tree/example/TairModel.py
 @Scenario(Param={'key':[ {'t':'String', 'v':'TestKey'}, {'t':'Null', 'v':"Null"}], 
        'data':[ {'t':'String', 'v':'DataInTesting'} , {'t':'Null', 'v':"Null"}], 
        'addMultiKey':[True, False] 
        }, Where={'combine':['addMultiKey', 'key', 'data'], 'strategy':'product', 
            'filters':[['addMultiKey', 'key'], ['addMultiKey', 'data']]}, 
      DespFormat="multi-put/get test with key is {key} and data is {data}", Feature="Tair multi-put/get test" 
      ) 
    def MultiPutGetModel(self):
                .....



------------------ Original ------------------
From:  "Elizabeth Lin"<elin at splunk.com>;
Date:  Fri, Apr 5, 2013 06:51 AM
To:  "testing-in-python at lists.idyll.org"<testing-in-python at lists.idyll.org>; 

Subject:  [TIP] pytest - parametrizing some arguments require parametrizationat collection phase and some at setup time?



Hi, 

I have some tests which I'd like to parametrize using both more complex
fixtures as well as simple string arguments.  How are folks doing this
currently?  Or is this a use case that hasn't been seen before?  Using
metafunc.parametrize in a pytest_generate_test hook won't work for me
since I need the fixtures to have indirect=True to pass the argname as a
request.param, but the other arguments to have indirect=False.

For example, if I have a test fixture and test case which looks like the
following:
Any suggestions for how to accomplish this would be much appreciated!


def pytest_generate_tests(metafunc):
	if metafunc.function.__name__ == 'test_example':
        	argnames = []
        	argvalues = []
		parameters = getattr(metafunc.function, 'paramlist', ())
		for p in parameters:
			if type(p) == list:
				argnames = tuple(['myfixture'] + p)
			else:
				argvalues.append = tuple(['std'] + p['argvalues'])
				argvalues.append = tuple(['pro'] + p['argvalues'])
		# I want to do the following, but it won't work since some of the
		# args need indirect set to true
		# and some need indirect set to false.
		metafunc.parametrize(argnames, argvalues, indirect=True)
	elif 'myfixture' in metafunc.fixturenames:
		# we have existing tests which use the fixture, but only with std
		metafunc.parametrize("myfixture", "std")
	else:
		# we have existing tests which use older style parametrization,
		# non-fixture
		for p in getattr(metafunc.function, 'paramlist', ()):
			metafunc.addcall(funcargs=p)


def params(decolist):
	def wrapper(function):
		function.paramlist = decolist
		return function
	return wrapper

@pytest.fixture
def myfixture(request):
	if request.param == 'std':
		myfix = SomeObject()
	elif request.param == 'pro':
		myfix = SomeOtherObject()
	def fin():
		myfix.close()
	request.addfinalizer(fin)
	return myfix

@params([
    ['color', 'type'],
    { 'argvalues': [ 'blue', 'cat'] },
    { 'argvalues': ['pink', 'dog'] }
])
def test_example(myfixture, color, type):
    # this is the new test we want to add

def test_something(myfixture):
    # existing test which only uses std fixture

@params([
    {'arg1': 1, 'arg2': 2},
    {'arg1': 3, 'arg2': 5}
])
def test_old_style(arg1, arg2):
    # existing tests which don't use fixtures


Thanks for reading through this! I know it's rather long.

Cheers,
Liz




_______________________________________________
testing-in-python mailing list
testing-in-python at lists.idyll.org
http://lists.idyll.org/listinfo/testing-in-python
.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.idyll.org/pipermail/testing-in-python/attachments/20130405/73a21a7f/attachment.htm>


More information about the testing-in-python mailing list