State of Testing Survey: 2021

Hey testers, hope you all are fine and safe!! 2020 nightmare is about to end in a few days and the State of Testing Survey 2021 has gone live. Please do take part in the survey and help the testing community to identify the current state of testing. Why take this survey? This survey is conducted globally that tries to […]

Testing FastAPI endpoints using fastapi.testclient

This post shows you an example of how to use fastapi.testclient provided by FastAPI. This testclient will help anyone to write code level tests quickly. Background Recently, we have developed an internal application using FastAPI. I thought to document a quick testing approach which may help software engineers to write test cases quickly. Here I have used fastapi.testclient instead of […]

Simulate your own hardware devices as templates for testing

This blog gives an idea to simulate your own devices by creating device templates. It would be helpful to QA or any user who has dependency with the device data for testing the application. Before getting into technical details about simulation, the following summary is about snmp and snmpwalk. What is SNMP? SNMP is a Simple Network Management Protocol, which is […]

Skype sender as a web service

I used the fantastic Python module Skpy to setup a ‘Skype sender’ as a web service. I did this work because I wanted to make it as easy to programmatically post to a Skype channel as it is to programmatically post to a Slack channel. If you know your channel id and have an API key, then posting a message […]