Home > Articles > Programming

Reproducing Race Conditions in Tests

The importance of testing software code is impossible to overstate. But how do you test for bugs you can't easily reproduce in the lab? Stephen Vance dissects race conditions, helping us to comprehend what causes a race condition and then working from that understanding to figure out how to reproduce the race condition deterministically in tests.

Stephen Vance is the author of the book Quality Code: Software Testing Principles, Practices, and Patterns (April 2013).

Like this article? We recommend

Product teams increasingly rely on automated tests to support the quality of their software. Test-driven development creates the tests as an integral part of the development process. Acceptance test–driven development and behavior-driven development create tests as executable specifications for the software. Contemporary software development methods create a lot of tests.

All these tests, if written well, justifiably give us a higher level of confidence in the correctness of our software. We could even naively or arrogantly start to think that we can produce bug-free software. But a variety of factors—increasing complexity, incomplete or ambiguous specifications, reliance on third-party software, and distributed and asynchronous systems, to name just a few—keep us humble.

Race conditions are among the most insidious of these issues. While programming paradigms are shifting to help us write safe concurrent code, the technology options in this area are young and numerous. If you have to work on an existing system or in a particular technology context, you probably deal with traditional approaches to concurrency, involving threads and locks.

Many groups striving to produce high-quality software have policies stating that bugs must be reproduced in tests, to help ensure that those bugs don't recur. Sometimes a single bug results in multiple tests. Reproducing the bug at a system level or integration level may result in one test. If you subscribe to the philosophy that every bug can be reduced to one or more bugs at the unit level, then you'll also require unit tests to reproduce the localized defect. But what can you do if the defect is a race condition? This article examines the anatomy of race conditions, laying out an approach to understanding the race condition and then exploiting that understanding to reproduce the race condition deterministically in tests.

Anatomy of a Race Condition

Much has been written about race conditions over the years, so I'll just provide a very quick overview here, enough to move us forward. A quick Internet search or perusal through computer science texts on algorithms, operating systems, or many common programming languages will easily provide additional depth.

A race condition occurs when two or more threads of execution modify the same data simultaneously. This simultaneity may be truly concurrent execution on separate cores, or simply the effectively concurrent form caused by time-sliced execution on the same core.

The data modification most typically involves a read and a write where locks are not used to prevent the data from changing between the read and the write. The data can be as simple as a single variable or as complex as a collection of objects that need to be kept mutually consistent. Operations that preserve the required consistency are called atomic.

One of the simplest examples of a race condition is the unprotected statement

i = i + 1

where i is shared data. Let's assume for this discussion that compilation translates this statement to executable code in a literal way:

  1. Thread A reads the value of i into a register and increments it.
  2. Thread B does the same thing into its own register.
  3. Thread A copies the value from the register back to storage for i.
  4. Thread B copies its register value.

If the initial value of i was 17, both threads read the value 17 into their respective registers. Both threads increment 17 to 18. Both threads copy the value 18 back to the variable storage. The result of two threads increasing the value of i by 1 should be a net increase of 2, but it's actually 1. But this happens only if two threads try it at the same time, so it may occur in a very small percentage of executions. This kind of sporadic behavior is characteristic of race conditions.

The span of time or code during which the data needs to be consistent is known as the critical section. The critical section interests us for two reasons:

  • The critical section contains the bug.
  • The critical section contains our opportunities to reproduce the bug.

In the previous simple example, the critical section is small and subtle. It occurs completely within the single statement. The read operation is the use of the variable i on the right side of the expression. The write operation is the assignment of i on the left side of the assignment.

The compactness of this critical section and the fundamental nature of the participating data and operations makes this particular race condition difficult and fragile—but not impossible!—to reproduce in tests. Depending on the target architecture, it could be fixed simply by turning on compiler optimizations, changing the expression to i++ or i+=1, or using system concurrency primitives such as Java's AtomicInteger. Fortunately, in my experience, most race conditions involve higher-level constructs where the responsible read and write are farther apart.

Understanding How Race Conditions Occur

A high-yield way to find race conditions by visual inspection involves looking at where shared data is read and written and then determining whether it's contained in the same locking scope. Let's apply that rule to a real-world race condition from a recent production anomaly I diagnosed. Here's an excerpt from the Java code of the AuditTrail class:

private static final Logger = Logger.getLogger(AuditTrail.class);
private final Vector<AuditRecord> logRecords = new Vector<AuditRecord>();

public void postFlush(...) {
      ...
      while (!logRecords.isEmpty()) {
            log.debug("Processing log record");
            AuditRecord logRecord;
            synchronized (logRecords) {
                  logRecord = logRecords.firstElement();
                  logRecords.remove(logRecord);
            }
            // Process the record
            ...
      }
}

I took out some error handling and some other code irrelevant to the race condition, but the race condition itself is presented verbatim. This code was written in a literate manner that reveals its intent. The code is entirely within the contents of a class of which there is only a single instance. Two other methods for our purposes stand in for the full functionality of the class: addRecord() adds an AuditRecord to logRecords, and getLogRecords() has restricted access for testing purposes.

Do you see the race condition? At what places is logRecords read? In this case there are two reads: One triggered the exception and the other checks whether the Vector is empty. Where is logRecords changed? In this code, the remove() call is the only write to logRecords.

The original code author recognized the potential for a race condition, as evidenced by the synchronization block around the record removal. The use of synchronized declares a recognition of a critical section and defines the recognized boundaries. Unfortunately, one of our reads is outside of this critical section, which creates our race condition.

The NoSuchElementException tells us that even though we got into the while loop, which only occurs if logRecords contained elements, there were no elements by the time we tried to retrieve the first element. Even without fully understanding the sequence of events, the removal of an element is consistent with the symptom. Here's how the race condition transpires:

  1. Thread A sees that logRecords is not empty, with only one record remaining, and enters the loop.
  2. Thread B also sees that logRecords is not empty and enters the loop.
  3. Thread A enters the synchronized block, preventing Thread B from entering the block, and retrieves and removes the first element from logRecords.
  4. Thread A leaves the synchronized block, freeing Thread B to enter it.
  5. Thread B enters the synchronized block and attempts to retrieve the first element from logRecords, but finds it empty, triggering the NoSuchElementException.

Spotting race conditions like this takes some practice. By identifying your read and write operations and narrowing your write operations to those that are consistent with the symptoms, you can simplify the process. As you practice finding race conditions, they'll become more apparent to you.

We have now hypothesized our critical section as extending from the empty check in the while condition to after the remove() call in the synchronized block. How can we prove it? How can we reproduce the race condition so as to reasonably verify that our hypothesis is correct?

Reproducing Race Conditions

In Working Effectively with Legacy Code, author Michael Feathers introduces the concept of a seam as "a place where you can alter behavior in your program without editing in that place." To reproduce race conditions, you need to find a way to get two threads into your critical section, both doing the read operation that starts the race, and then stopping them before they reach the write operation. You want to find a seam that will let you synchronize two threads.

A synchronization seam can take many forms. Any method call or other behavior you can override or intercept makes a good seam. Code already written to be concurrent has an additional type of seam that's perfect for our purposes—the existing synchronization. We want to exploit the existing synchronization for our example, but the isEmpty() method is synchronized on the same lock, making it difficult to stop execution between that and the synchronized block. Instead, we'll use the seemingly innocuous debug logging statement as our seam.

Modern logging frameworks in Java, like the log4j used here, can be dynamically reconfigured to change output targets, logging levels, and so on. The features that allow reconfiguration for logging purposes also allow us to inject handlers for synchronization purposes. In log4j, a message handler is known as an appender. You can add appenders programmatically at any scope you want. The appender we'll use to exploit the seam is as follows:

class SynchronizationAppender extends AppenderSkeleton {
    @Override
    protected void append(LoggingEvent loggingEvent) {
        try {
            this.wait();
        } catch (InterruptedException e) {
            return;
        }
    }
    ... // Other required overrides
}

We also create a java.util.concurrent.Callable for launching the call to postFlush() on a thread. We use a Callable with a FutureTask to let us determine whether any exceptions were thrown.

Following is the code for the test method:

@Test
public void testPostFlush_EmptyRace()
        throws InterruptedException, ExecutionException {
    // Set up software under test with one record
    AuditRace sut = new AuditRace();
    sut.addRecord();
    // Set up the thread in which to induce the race
    Callable<Void> raceInducer = new PostFlushCallable(sut);
    FutureTask<Void> raceTask = new FutureTask<Void>(raceInducer);
    Thread inducerThread = new Thread(raceTask);
    // Configure log4j for injection
    SynchronizationAppender lock = new SynchronizationAppender();
    Logger log = Logger.getLogger(AuditRace.class);
    log.addAppender(lock);
    log.setLevel(Level.DEBUG);

    inducerThread.start();
    while (Thread.State.WAITING != inducerThread.getState());
    // We don't want this failure to look like the race failure
    try {
        sut.getLogRecords().remove(0);
    } catch (NoSuchElementException nsee) {
        Assert.fail();
    }
    synchronized (lock) {
        lock.notifyAll();
    }

    raceTask.get();
}

After we set up the software under test and the thread to invoke it, we reconfigure the logging.

Once we've set up the fixtures, we start the thread and wait for it to get to its waiting state. Note that the use of Thread.State.WAITING or Thread.State.BLOCKING depends on the mechanism you use to synchronize. We constructed the test to make the thread wait after the check for whether logRecords is empty, so we remove the single existing record and let the thread run.

If the race condition exists, the call to raceTask.get() will throw an ExecutionException with a NoSuchElementException as its cause, proving the existence of the race condition. Fixing the race will make the test pass.

A fix for this race is worth mentioning because it helps to illustrate another important point. Reproducing race conditions is a clear example of white-box testing. We need to be very careful to test to the intent where we can, but thread synchronization is very much about implementation. A test that reproduces a race condition may well need to be rewritten, depending on the nature of the fix. It's worth asking yourself how you might fix the race to narrow your options for creating the test, so that you can avoid the choices that would cause your test to become invalid.

A simple fix for this race is to check again whether logRecords is empty in the synchronized block; if it is, break out of the loop. This approach leaves a read outside of the critical section to control the loop, but compensates by reiterating the check within the critical section. A more substantial restructuring that ensured the reads and writes were all in the critical section together would most likely break the test we wrote.

Conclusion

Deterministic reproduction of race conditions is possible. Those techniques require a bit of intuition and a solid understanding of the synchronization mechanisms at your disposal, but the benefits to ensure that race conditions remain fixed can justify the investment.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020