Playback-studio: record and replay the input to any Python function
1–7 of 7 posts
Re: Playback-studio: record and replay the input to any Python function
#2Re: Playback-studio: record and replay the input to any Python function
#3It gives us an automatic way for more coverage we ever had and improved the product quality significantly.
Re: Playback-studio: record and replay the input to any Python function
#4Re: Playback-studio: record and replay the input to any Python function
#5Awesome idea! Can I use it for replaying a full REST-API action?
Re: Playback-studio: record and replay the input to any Python function
#6Re: Playback-studio: record and replay the input to any Python function
#7Awesome idea! Can I use it for replaying a full REST-API action?
You will need to decorate the input, typically the request data, and if you access other external data source, such as database access or other services, you should decorate that access as well so it will be part of the recording. During playback everything will be fetched from the recording when the intercepted methods are invoked with the same parameters.
It is suited for other actions as well, we are also using to record and replay our celery based tasks
(I am one of the main contributors to this framework)