Home > Articles > Programming

This chapter is from the book

29.6 Exploratory Test Automation: Database Record Locking

Douglas Hoffman, United States

Consultant and speaker

Pre–World Wide Web (late 1980s), I was the quality assurance (QA) manager, test lead, and test architect for the second-largest relational database management system (RDBMS) software company at the time. Before landing the job, I got my bachelor’s degree in computer science, started out as a systems engineer, and had worked my way up into hands-on engineering services management (QA, tech support, sales support, and tech writing).

The company had about 300 employees, mostly in San Mateo, California. The relational database engine had evolved over more than 10 years and had a well-established, fairly stable codebase. At the time, the code had to be ported across 180 hardware/software platforms (most were variations of UNIX). The QA team was small (initially with a ratio of about 1:20 with developers, growing to ~1:5 over 18 months) and nearly completely focused on testing. Most new testers were recruited from other companies’ development organizations.

To support the large number of versions, the product was developed using internal switches to enable or disable different code functions. Therefore, most of the porting was done by selecting the proper combinations of switches. This meant that once features or bug fixes had been incorporated into the base code, the various ports would pour into QA.

Because the test team was small, we spent almost all our time running tests on the various platforms. Little time was available for design and implementation of tests for new features. A thorough test run for a new release on a platform could take 2 weeks, and the dozen testers could receive 150 versions in a few weeks. The management and technical challenges dealing with this situation are other case studies in themselves. This case study focuses on one particular exploratory automated test we created.

Unlike regression tests that do the same thing every time they are run, exploratory automated tests are automated tests that don’t have predetermined results built in; they create new conditions and inputs each time they’re run. Exploratory test automation is capable of finding bugs that were never specifically conceived of in advance. These are typically long-sequence tests and involve huge numbers of iterations because they are only limited by available computer resources.

29.6.1 The Case Study

Bug being sought: Errors in database record locking (failure to lock or release a lock on a record, table, or database).

When I took over the QA organization, the existing test cases were simple applications written in the various frontend languages, mostly our proprietary SQL. Most existing tests were applications and data sets collected from customers or scripts that verified bug fixes. Automation was achieved using a simple shell script that walked through the directories containing the tests and sequentially launched them. Most of the testers’ efforts were in analyzing the results and tweaking the tests to conform with nuances on the various platforms.

One area of concern that wasn’t well tested using our regression tests was record locking. A few intermittent bugs that locked up the programs or clobbered data had been found in the field. The locking mechanism was complex because of the distributed nature of the database. For example:

  • Parts of the database might be replicated and the “master” copy moved around as requests were made.
  • Different parts of the database needed to communicate about actions before they could be completed.
  • Requests could occur simultaneously.
  • Common data could be updated by multiple users.
  • One user’s request for exclusive access (e.g., to update part of a record) could cause some other users’ requests to wait.
  • User requests for nonexclusive access might proceed under some circumstances.
  • Non-overlapping parts of interlocking records might be updated by different users.
  • Timeouts could occur, causing locks and/or requests to be cancelled.

Most multiuser database systems at the time were hardwired and LAN based, so Internet and cloud issues weren’t part of the picture. (This was before widespread Internet use, browsers, or the World Wide Web.) Frontend programs were built out of compiled or interpreted programs written in proprietary languages. The use of LANs meant that interrupt events came directly through hardware drivers and were not processed by higher-level system services.

Prior to the test automation project, the straightforward locking sequences were tested using manual scripts on two terminals. For example,

  1. One user would open a record for nonexclusive update (which should lock the record from being modified but allow reading of the record by other users).
  2. A second user would open and attempt to modify the record (thus successfully opening but then encountering a record lock).
  3. Another test would have the first user opening for nonexclusive read (which should not lock the record and should allow reading and modifying of the record by other users).
  4. The second user would read and update the record (which should work).

The regression tests confirmed the basic functioning of the lock/unlock mechanisms. Only a subset of condition pairs could be manually tested this way because of the amount of time it took, and complex sequences of interactions were out of the question. Figure 29.2 shows an example of the interaction of two users attempting to access the same record.

Figure 29.2

Figure 29.2 Record locking example

In relational databases, updating a record can write data in many tables and cause updates to multiple indexes. Different users running different programs may reference some common data fields along with unique data. The data records are contained in multiple files (called tables), and programs reference some subset of the fields of data across the database. Intermittent, seemingly unreproducible problems could occur when the requests overlapped at precisely the wrong times. For example, the second read request might come in while the first was in the process of updating the database record. There might be tiny windows of time during which a lock might be missed or a partially updated record returned. These kinds of combinations are extremely difficult to encounter and nearly impossible to reproduce manually. We decided that the best way to look for errors was to generate lots of database activities from multiple users at the same time.

The challenge was to create multithreaded tests that could find timing-related problems of this type. The goal was to produce tests that would generate lots of conditions and could detect the bugs and provide enough failure information to the developers so they could isolate the cause and have some chance at fixing the bugs.

Automated tests: We created a single program that accessed a database using various randomly selected access methods and locking options. The test verified and logged each action. We then ran multiple instances of the program at the same time (each being its own thread or on its own machine). This generated huge numbers of combinations and sequences of database activities. The logs provided enough information to recreate the (apparent) sequence of database actions from all the threads. If no problems were detected, we discarded the logs because they could get quite large. While the tests were running, a monitoring program observed the database and log files to ensure that none of the threads reported an error or became hung.

Oracle: Watching for error returns and observing whether any of the threads terminated or took excessively long. The test program did very trivial verification of its own activities. By the nature of multiple users updating overlapping data all the time, data changes might be made by any user at any time. We couldn’t reliably confirm what was expected because some other user activity might change some data by the time the test program reread it. Because most database activities completed in fractions of seconds, if there was no lockout, the monitor program checked for multisecond delays on nonlocked transactions or after locks had been logged as released.

Method summary:

  1. Created a program that independently, randomly accessed records for update, read, insert, and delete. Different types of record locking were randomly included with the requests. Each program logged its activity for diagnostic purposes and checked for reasonable responses to its requests.
  2. Ran multiple instances of the program at the same time so they potentially accessed the same data and could interfere with one another. Access should have been denied if records were locked by other processes and allowed if none of the other threads was locking the referenced record.
  3. Created and ran another program to monitor the log file and the database engine to detect problem indications and shut down if a problem occurred.

Because the threads were running doing random activities, different combinations and sequences of activities were generated at a high rate of speed. The programs might have detected errors, or the threads might hang or abnormally terminate, indicating the presence of bugs. Each instance of the test generated large numbers of combinations of events and different timing sequences. The number of actions was limited by the amount of time we allocated for the lock testing. We sometimes ran the test for a few minutes, but at other times it could run an hour or longer. Each thread might only do hundreds of database actions per second because of the time it took for waiting, error checking, and logging. We ran from three to a dozen threads using multiple networked systems, so a minute of testing might generate 100,000 to 300,000 possible locking conditions.

Results: We caught and were able to fix a number of interesting combinations, timing-related bugs, and one design problem. For example, a bug might come up when:

  • User A opens a record for update.
  • User B waits for the record to be unlocked to do its own update.
  • User C waits for the record to be unlocked to do its own update.
  • User A modifies the data but releases the lock without committing the change.
  • User B modifies the data but releases the lock without committing the change.
  • User C updates the data, commits it, and releases the lock.
  • User C’s data was not written into the database.

I was surprised because a few of the timing- and sequence-related bugs were not related to the record locking itself. If the commits occurred at the same time (within a tiny time window), the database could become corrupted by simultaneous writes of different records by multiple users in a single table. Although the records were not locked because the users were referencing different rows, the data could become switched.

We couldn’t be certain that we caught all the bugs because of the nature of these kinds of timing- and sequence-related problems. Although millions of combinations were tried and checked, there were myriad possibilities for errors that we couldn’t detect or didn’t check for. Trillions of combinations wouldn’t amount to a measurable percentage of the total number of possibilities. But, to the best of my knowledge, there were no reported field problems of that nature for at least a year after we created these tests. (I moved on and no longer had access to such information.)

We didn’t leave reproducibility to chance, although even running the same series of inputs doesn’t always reproduce a problem. The at-random tests used pseudorandom numbers; that is, we recorded seed values to be able to restart the same random sequences. This approach substantially improves reproducibility. We generated a new seed first when we wanted to do a new random walk, and we reused the seed to rerun a test.

The archiving system is critical for tracing back to find the likely cause and also as the test oracle. Much of the data being recorded can be checked for consistency and obvious outliers to detect when likely bugs are encountered. I tend to log the things developers tell me might be important to them as the test progresses and then “dump the world” when a bug is suspected.

We used some functional test suites that were available for SQL, including from the National Bureau of Standards (which later became the National Institute of Standards and Technology), but they only checked basic functionality. We used them to some degree, but they were not random, asynchronous, or multithreaded. TPC-B wasn’t created until several years later.

Recognizing the root cause of reported bugs required serious investigation because the failures we were seeking generally required multiple simultaneous (or a specific sequence of) events. Many of the factors we looked at were environmental. We were primarily looking for fundamental violations of the locking rules (deadlocks and data corruption), so recognizing those failures was straightforward. Identifying the cause was more difficult and frustrating. It sometimes took a lot of investigation, and once in a while, we gave up looking for the cause. This was frustrating because we knew there was a bug, but we couldn’t do anything about it other than look for other symptoms. Most of the time, though, the developers were able to identify the probable cause by looking for the possible ways the failure could have happened.

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