Category: technology

  • Managing Go Processes

    Managing Go Processes

    Introduction: The Challenge of Managing Blocking Processes While working on an application that required executing a command to run a blocking program, such as a TCP/HTTP server, I encountered an interesting challenge. I needed a way to stop the application and its child processes when a signal was sent to the main program, such as…

    by

    in
  • Getting code coverage data for each request coming to a python web server

    Getting code coverage data for each request coming to a python web server

    In this blog, we will demonstrate how to get the code coverage data for each incoming request on a python web server built using any web framework. What is Code Coverage ? Code coverage is a metric used in software testing to measure the extent to which the source code of a program has been…

    by

    in
  • MongoDB in Mock Mode: Acting the Server Part

    MongoDB in Mock Mode: Acting the Server Part

    Imagine, for a moment, a scenario where instead of writing mocks with pre-defined behaviours, you can duplicate the behaviour of a real-world server. Picture a restaurant where the chef’s apprentice mimics each of the chef’s moves in real time, creating an identical dish concurrently. That’s precisely what we’re diving into here. By leveraging the genuine…

    by

    in
  • Capture gRPC Traffic going out from a Server

    Capture gRPC Traffic going out from a Server

    How does gRPC work? A quick Google search would tell you that it uses HTTP/2.0 under the hood, but that’s about it. Most available guides talk about gRPC internals by assuming that you are already deeply familiar with HTTP/2.0, and the only proper documentation for HTTP/2 is the official RFC document, which doesn’t contain implementation…

    by

    in
  • Integration vs E2E Testing: What worked for me as a charm

    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…

    by

    in
  • Automated E2E tests using Property Based Testing  | Part II

    Automated E2E tests using Property Based Testing | Part II

    If you haven’t visited Part I, I highly recommend you go through it for a better understanding of this blog. Let’s continue 🤠 What is Property Based testing? Before delving into property based testing, it’s important to understand example-based testing. Traditional, or example-based testing specifies the behaviour of your software by writing examples of it,…

    by

    in
  • Automated End to End tests using Property Based Testing  | Part I

    Automated End to End tests using Property Based Testing | Part I

    ” Engineers call them edge cases. I call them: what our users do ” – Noah Sussman Testing remains a crucial aspect of software development. Software engineers and quality assurance professionals make use of diverse techniques and methodologies to rigorously test applications. However, even with these measures in place, bugs can still emerge. In this…

    by

    in
  • Go Mocks and Stubs generator Made Easy

    Go Mocks and Stubs generator Made Easy

    Testing network stuff like APIs and database calls can be a real pain: I find myself burning way too much time just making mock data, instead of actually doing the tests or assertions. When you make fake mocks, you might end up using wrong guesses or data that’s just too unreal or vague. When things…

    by

    in