I'm trying to build a nice base around py.test
Some of our tests needs certain test data to work.
Today we just specify a mock object as a function argument and do the setup in the generator, this is clearly not desirable.
Here is an example of how it could look today:
def test_something(self, some_data):
# some_data is unused in the test
I'd like to do something like this:
@uses_some_data
def test_something(self):
# The data is loaded when the test is run
Though I have not figured out how to do this properly.
I cannot use class setup because I want the data to be persistant over the entire session, not setup/torn down on every test class.
My first idea was to still use funcargs but instead of letting the test have the funcarg we let the decorator request the funcarg for the function, basically hiding the ugliness.
The problem with this is that I need a py.test object to request a funcarg.
Is there any way I can get such an object or is this the wrong approach all together?
It would be an awesome bonus if the data did not have to be loaded if none of the collected tests requires the data, this is the downside of using decorators seeing as they are always run no matter if the test will be run or not.