search
HomeTechnology peripheralsIt IndustryAutomate Debugging in Git with Unit Tests

Automate Debugging in Git with Unit Tests

Key Takeaways

  • Automating debugging in Git with unit tests involves using the ‘bisect’ command to traverse through the commits and identify the one that introduced a bug. This process can be automated with a script, reducing the need for manual labelling of commits as ‘good’ or ‘bad’.
  • Unit tests are crucial in this process, as they are run for each commit to determine whether it should be assigned as ‘good’ or ‘bad’. This can be done using a command like ‘git bisect run [command to run tests]’. Once the tests are run for every commit, Git can identify the commit that introduced the error.
  • As the codebase increases in size, writing unit tests for every piece of code becomes necessary. While it may seem time-consuming initially, it aids in debugging and saves time in the long run. It’s also possible to create a custom shell script with custom exit codes to replace unit tests.

A while ago, I published an article on debugging a codebase in Git using two commands blame and bisect. Git blame involved checking the author of each line of a file, whereas bisect involves traversing through the commits (using binary search) to find the one that introduced the bug. In this post, we will see how to automate the process of bisect.

To refresh your memory, git bisect involved a few steps, which are summarized below:

  • Start the bisect wizard with git bisect start
  • Select “good” and “bad” commits, or known commits where the bug was absent and present, respectively
  • Assign commits to be tested as “good” or “bad” until Git finds out the commit which introduced the bug
  • Exit the wizard with git bisect reset

To get an idea of the whole process, you could have a look at this screencast, which shows in detail how the debugging process works.

Naturally, the third step was time consuming — Git would show you commits one by one and you had to label them as “good” or “bad” after checking if the bug was present in that commit.

When we write a script to automate the process of debugging, we’ll basically be running the third step. Let’s get started!

Staging the environment

In this post, I will write a small module in Python that contains a function which adds two numbers. This is a very simple task and I’m going to do this for demonstration purposes only. The code is self explanatory, so I won’t go into details.

<span>#add_two_numbers.py
</span>def add_two_numbers<span>(a, b):
</span>    <span>'''
</span>        Function to <span>add two numbers
</span>    <span>'''
</span>    addition <span>= a + b
</span>    <span>return addition</span>

To automate the process of Git Bisect, you need to write tests for your code. In Python, we’ll use the unittest module to write our test cases. Here’s what a basic test looks like.

<span>#add_two_numbers.py
</span>def add_two_numbers<span>(a, b):
</span>    <span>'''
</span>        Function to <span>add two numbers
</span>    <span>'''
</span>    addition <span>= a + b
</span>    <span>return addition</span>

We could write more of these tests, but this was just to demonstrate how to get on with it. In fact, you should definitely write more test cases as your programs and apps are going to be far more complex than this.

To run the unit tests, execute the tests.py file containing your test cases.

<span>#tests.py
</span><span>import unittest
</span>from add_two_numbers <span>import add_two_numbers
</span>
class TestsForAddFunction<span>(unittest.TestCase):
</span>
    def test_zeros<span>(self):
</span>        result <span>= add_two_numbers(0, 0)
</span>        self.assertEqual<span>(0, result)
</span>
<span>if __name__ == '__main__':
</span>    unittest.main<span>()</span>

If the tests pass, you should get the following output.

Automate Debugging in Git with Unit Tests

Let’s now introduce an error in our function and commit the code.

python tests.py

To verify that the tests fail, let us run them again.

Automate Debugging in Git with Unit Tests

Let us add a few more commits so that the commit that introduced the error is not the last.

Automate Debugging in Git with Unit Tests

Start the bisect process

For the git bisect wizard, we will select the latest commit as bad (b60fe2cf35) and the first one as good (98d9df03b6).

def add_two_numbers<span>(a, b):
</span>    <span>'''
</span>        Function to <span>add two numbers
</span>    <span>'''
</span>    addition <span>= a + 0
</span>    <span>return addition</span>

At this point, Git points us to a commit and asks us whether it’s a good or a bad commit. This is when we tell Git to run the tests for us. The command for it is as follows.

<span>git bisect start b60fe2cf35 98d9df03b6</span>

In our case, it will turn out to be the following.

<span>git bisect run [command to run tests]</span>

When we provide Git the command to run the tests itself, rather than asking us, Git runs these tests for every revision and decides whether the commit should be assigned good or bad.

Automate Debugging in Git with Unit Tests

Once Git is done running tests for every commit, it figures out which commit introduced the error, like magic!

Automate Debugging in Git with Unit Tests

Once you have found your commit, don’t forget to reset the wizard with git bisect reset.

In place of your unit tests, you can also create a custom shell script with custom exit codes. In general an exit code of 0 is considered a success, everything else is a failure.

Final thoughts

As the size of your code base increases, writing unit tests for every little piece of code that you write becomes necessary. Writing tests may seem time-consuming, but as you’ve seen in this case, they help you in debugging and save you time in the long run.

How does your team debug errors in code? Let us know in the comments below.

Frequently Asked Questions (FAQs) about Automating Debugging with Git Unit Tests

How can I set up automated debugging with Git unit tests?

Setting up automated debugging with Git unit tests involves several steps. First, you need to create a Git repository and initialize it. Then, you need to write your unit tests using a testing framework compatible with your programming language. Once your tests are written, you can use a continuous integration (CI) tool to automate the running of these tests. This tool can be configured to run your tests every time you push changes to your Git repository. This way, you can catch and fix bugs early in the development process.

What are the benefits of automating debugging with Git unit tests?

Automating debugging with Git unit tests has several benefits. It helps to catch bugs early in the development process, which can save time and resources. It also ensures that all parts of your code are tested consistently. This can improve the overall quality of your code and make it more reliable. Additionally, it can make your development process more efficient by reducing the amount of manual testing you need to do.

What is continuous integration (CI) and how does it relate to Git unit tests?

Continuous integration (CI) is a development practice where developers integrate code into a shared repository frequently, usually multiple times per day. Each integration is then verified by an automated build and automated tests. In the context of Git unit tests, CI can be used to automate the running of these tests every time changes are pushed to the Git repository. This helps to catch bugs early and ensures that all parts of the code are tested consistently.

How can I write effective unit tests for my Git repository?

Writing effective unit tests involves several best practices. First, each test should focus on a single functionality or behavior. This makes it easier to identify the cause of any failures. Second, tests should be independent and able to run in any order. This ensures that the outcome of one test does not affect the outcome of another. Third, tests should be repeatable and yield the same results every time they are run. This ensures that your tests are reliable and can be trusted to catch bugs.

What tools can I use to automate debugging with Git unit tests?

There are several tools you can use to automate debugging with Git unit tests. These include continuous integration (CI) tools like Jenkins, Travis CI, and CircleCI. These tools can be configured to run your unit tests every time you push changes to your Git repository. Additionally, you can use testing frameworks like JUnit (for Java), pytest (for Python), and Mocha (for JavaScript) to write your unit tests.

How can I integrate my Git unit tests with a continuous integration (CI) tool?

Integrating your Git unit tests with a continuous integration (CI) tool involves several steps. First, you need to configure your CI tool to connect to your Git repository. Then, you need to configure it to run your unit tests every time changes are pushed to the repository. This usually involves writing a configuration file that specifies the commands to run the tests and the conditions under which to run them.

What should I do if my Git unit tests fail?

If your Git unit tests fail, the first step is to identify the cause of the failure. This usually involves examining the test output and the code that was being tested. Once you’ve identified the cause, you can make the necessary changes to your code and rerun the tests. If the tests pass, you can push your changes to the Git repository. If they fail again, you may need to revise your tests or your code until they pass.

Can I automate debugging with Git unit tests for any programming language?

Yes, you can automate debugging with Git unit tests for any programming language. However, the specific tools and techniques you use may vary depending on the language. Most programming languages have one or more testing frameworks that you can use to write your unit tests. Additionally, most continuous integration (CI) tools support multiple languages and can be configured to run your tests regardless of the language they are written in.

How can I ensure that my Git unit tests are effective?

Ensuring that your Git unit tests are effective involves several best practices. First, your tests should cover all parts of your code, including edge cases. This ensures that your tests are comprehensive. Second, your tests should be independent and able to run in any order. This ensures that the outcome of one test does not affect the outcome of another. Third, your tests should be repeatable and yield the same results every time they are run. This ensures that your tests are reliable.

Can I use Git unit tests to test the user interface (UI) of my application?

Git unit tests are typically used to test the functionality of your code, not the user interface (UI) of your application. However, you can use other types of tests, such as integration tests or end-to-end tests, to test your UI. These tests can also be automated and run using a continuous integration (CI) tool. This can help to catch bugs in your UI early in the development process.

The above is the detailed content of Automate Debugging in Git with Unit Tests. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Behind the first Android access to DeepSeek: Seeing the power of womenBehind the first Android access to DeepSeek: Seeing the power of womenMar 12, 2025 pm 12:27 PM

The rise of Chinese women's tech power in the field of AI: The story behind Honor's collaboration with DeepSeek women's contribution to the field of technology is becoming increasingly significant. Data from the Ministry of Science and Technology of China shows that the number of female science and technology workers is huge and shows unique social value sensitivity in the development of AI algorithms. This article will focus on Honor mobile phones and explore the strength of the female team behind it being the first to connect to the DeepSeek big model, showing how they can promote technological progress and reshape the value coordinate system of technological development. On February 8, 2024, Honor officially launched the DeepSeek-R1 full-blood version big model, becoming the first manufacturer in the Android camp to connect to DeepSeek, arousing enthusiastic response from users. Behind this success, female team members are making product decisions, technical breakthroughs and users

DeepSeek's 'amazing' profit: the theoretical profit margin is as high as 545%!DeepSeek's 'amazing' profit: the theoretical profit margin is as high as 545%!Mar 12, 2025 pm 12:21 PM

DeepSeek released a technical article on Zhihu, introducing its DeepSeek-V3/R1 inference system in detail, and disclosed key financial data for the first time, which attracted industry attention. The article shows that the system's daily cost profit margin is as high as 545%, setting a new high in global AI big model profit. DeepSeek's low-cost strategy gives it an advantage in market competition. The cost of its model training is only 1%-5% of similar products, and the cost of V3 model training is only US$5.576 million, far lower than that of its competitors. Meanwhile, R1's API pricing is only 1/7 to 1/2 of OpenAIo3-mini. These data prove the commercial feasibility of the DeepSeek technology route and also establish the efficient profitability of AI models.

Top 10 Best Free Backlink Checker Tools in 2025Top 10 Best Free Backlink Checker Tools in 2025Mar 21, 2025 am 08:28 AM

Website construction is just the first step: the importance of SEO and backlinks Building a website is just the first step to converting it into a valuable marketing asset. You need to do SEO optimization to improve the visibility of your website in search engines and attract potential customers. Backlinks are the key to improving your website rankings, and it shows Google and other search engines the authority and credibility of your website. Not all backlinks are beneficial: Identify and avoid harmful links Not all backlinks are beneficial. Harmful links can harm your ranking. Excellent free backlink checking tool monitors the source of links to your website and reminds you of harmful links. In addition, you can also analyze your competitors’ link strategies and learn from them. Free backlink checking tool: Your SEO intelligence officer

Midea launches its first DeepSeek air conditioner: AI voice interaction can achieve 400,000 commands!Midea launches its first DeepSeek air conditioner: AI voice interaction can achieve 400,000 commands!Mar 12, 2025 pm 12:18 PM

Midea will soon release its first air conditioner equipped with a DeepSeek big model - Midea fresh and clean air machine T6. The press conference is scheduled to be held at 1:30 pm on March 1. This air conditioner is equipped with an advanced air intelligent driving system, which can intelligently adjust parameters such as temperature, humidity and wind speed according to the environment. More importantly, it integrates the DeepSeek big model and supports more than 400,000 AI voice commands. Midea's move has caused heated discussions in the industry, and is particularly concerned about the significance of combining white goods and large models. Unlike the simple temperature settings of traditional air conditioners, Midea fresh and clean air machine T6 can understand more complex and vague instructions and intelligently adjust humidity according to the home environment, significantly improving the user experience.

Another national product from Baidu is connected to DeepSeek. Is it open or follow the trend?Another national product from Baidu is connected to DeepSeek. Is it open or follow the trend?Mar 12, 2025 pm 01:48 PM

DeepSeek-R1 empowers Baidu Library and Netdisk: The perfect integration of deep thinking and action has quickly integrated into many platforms in just one month. With its bold strategic layout, Baidu integrates DeepSeek as a third-party model partner and integrates it into its ecosystem, which marks a major progress in its "big model search" ecological strategy. Baidu Search and Wenxin Intelligent Intelligent Platform are the first to connect to the deep search functions of DeepSeek and Wenxin big models, providing users with a free AI search experience. At the same time, the classic slogan of "You will know when you go to Baidu", and the new version of Baidu APP also integrates the capabilities of Wenxin's big model and DeepSeek, launching "AI search" and "wide network information refinement"

Prompt Engineering for Web DevelopmentPrompt Engineering for Web DevelopmentMar 09, 2025 am 08:27 AM

AI Prompt Engineering for Code Generation: A Developer's Guide The landscape of code development is poised for a significant shift. Mastering Large Language Models (LLMs) and prompt engineering will be crucial for developers in the coming years. Th

Building a Network Vulnerability Scanner with GoBuilding a Network Vulnerability Scanner with GoApr 01, 2025 am 08:27 AM

This Go-based network vulnerability scanner efficiently identifies potential security weaknesses. It leverages Go's concurrency features for speed and includes service detection and vulnerability matching. Let's explore its capabilities and ethical

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft