Author: Sarthak Shyngle
-
Maintaining Auto-Generative API Tests: Need of de-duplicate tests
The Evolving Landscape of Auto-Generative Testing In today’s fast-paced development environment, automatically generating tests has become a necessity. Tools leveraging AI, manual interventions, and live environment captures facilitate this process. For instance, k6 focuses on load testing, generating automated tests with minimal maintenance. On the other hand, AI generative tools like GitHub Copilot, Bard, and…
-
Exploring Unit Test Generative Tools
Introduction: Artificial Intelligence (AI) has revolutionized various industries, including software development. One particular area where AI has shown significant promise is generating unit tests effortlessly. With the help of AI-based tools, developers can automate the process of creating unit tests, saving time and effort. In this blog, we will delve into the pros and cons…
-
What is Postgres Wire Protocol
Databases are the backbone of modern applications, enabling efficient storage and retrieval of data. But have you ever wondered why databases like PostgreSQL don’t simply use HTTP for communication? The answer lies in the specialized nature of database protocols. The PostgreSQL wire protocol is specifically designed to handle complex database tasks such as transactions, secure…
-
How to Test Traffic with a Custom Kubernetes Controller
K8s controllers and operators In k8s world every resource created via controller. Like there are inbuilt controllers for pods, deployments , replica set etc. So basically, Controllers are nothing but a control loop that continuously monitor the state of the cluster and take actions to bring the cluster into the desired state. The resources have…
-
Integration vs E2E Testing: What worked for me as a charm
When it comes to testing software applications, various testing techniques can be employed. Three common testing methods are unit testing, integration testing and end-to-end testing. All these different kinds of testing overlap, so you just can’t implement one or two forms of testing and you will be good. Like if you are in the initial…