Modern software pervasively uses structurally complex data such as linked data structures. The standard approach to generating test suites for such software, manual generation of the inputs in the suite, is tedious and error-prone. This dissertation proposes a new approach for generating suites with structurally complex test inputs; presents a technique that automates this approach; describes the Korat tool that implements this technique for Java; and evaluates the effectiveness of Korat in testing a set of data-structure implementations.
Our approach allows the developer to describe the properties of valid test inputs using a familiar implementation language such as Java. Specifically, the user provides an imperative predicate—a piece of code that returns a truth value—that returns true if the input satisfies the required property and false otherwise. Korat implements our technique for solving imperative predicates: given a predicate and a bound on the size of the predicate's inputs, Korat automatically generates the bounded-exhaustive test suite that consists of all inputs, within the given bound, that satisfy the property identified by the predicate. To generate these inputs, Korat systematically searches the bounded input space by executing the predicate on the candidate inputs. Korat does this efficiently by pruning the search based on the predicate's executions and by generating only non-isomorphic inputs.
Bounded-exhaustive testing is a methodology for testing the code on all inputs within the given small bound. Our experiments on a set of ten linked and array-based data structures show that Korat can efficiently generate bounded-exhaustive test suites from imperative predicates even for very large input spaces and that these test suites can achieve high statement, branch, and mutation coverage. Moreover, the use of our technique for generating structurally complex test inputs has enabled testers in industry to detect faults in real, production-quality applications. (Copies available exclusively from MIT Libraries, Rm. 14-0551, Cambridge, MA 02139-4307. Ph. 617-253-5668; Fax 617-253-1690.)
Cited By
- Dini N, Zaeem R and Khurshid S Enhancing constraint-based repair of data structure errors that recur using memoization Proceedings of the 36th Annual ACM Symposium on Applied Computing, (1823-1832)
- Dini N, Yelen C, Alrmaih Z, Kulkarni A and Khurshid S Korat-API Proceedings of the 33rd Annual ACM Symposium on Applied Computing, (1934-1943)
- Senni V and Fioravanti F Generation of test data structures using constraint logic programming Proceedings of the 6th international conference on Tests and Proofs, (115-131)
- Boyapati C, Khurshid S and Marinov D ACM SIGSOFT Impact Paper Award 2012 Proceedings of the ACM SIGSOFT 20th International Symposium on the Foundations of Software Engineering
- Gligoric M, Badame S and Johnson R SMutant Proceedings of the 19th ACM SIGSOFT symposium and the 13th European conference on Foundations of software engineering, (424-427)
- Mairhofer S, Feldt R and Torkar R Search-based software testing and test data generation for a dynamic programming language Proceedings of the 13th annual conference on Genetic and evolutionary computation, (1859-1866)
- Gligoric M, Gvero T, Jagannath V, Khurshid S, Kuncak V and Marinov D Test generation through programming in UDITA Proceedings of the 32nd ACM/IEEE International Conference on Software Engineering - Volume 1, (225-234)
- Elkarablieh B, Marinov D and Khurshid S Efficient solving of structural constraints Proceedings of the 2008 international symposium on Software testing and analysis, (39-50)
- Elkarablieh B, Zayour Y and Khurshid S Efficiently generating structurally complex inputs with thousands of objects Proceedings of the 21st European conference on Object-Oriented Programming, (248-272)
- Elkarablieh B, Khurshid S, Vu D and McKinley K (2007). Starc, ACM SIGPLAN Notices, 42:10, (387-404), Online publication date: 21-Oct-2007.
- Elkarablieh B, Khurshid S, Vu D and McKinley K Starc Proceedings of the 22nd annual ACM SIGPLAN conference on Object-oriented programming systems, languages and applications, (387-404)
- Daniel B, Dig D, Garcia K and Marinov D Automated testing of refactoring engines Proceedings of the the 6th joint meeting of the European software engineering conference and the ACM SIGSOFT symposium on The foundations of software engineering, (185-194)
- Misailovic S, Milicevic A, Petrovic N, Khurshid S and Marinov D Parallel test generation and execution with Korat Proceedings of the the 6th joint meeting of the European software engineering conference and the ACM SIGSOFT symposium on The foundations of software engineering, (135-144)
- Milicevic A, Misailovic S, Marinov D and Khurshid S Korat Proceedings of the 29th international conference on Software Engineering, (771-774)
- Kuncak V and Rinard M An overview of the Jahob analysis system Proceedings of the 20th international conference on Parallel and distributed processing, (285-285)
- Darga P and Boyapati C (2006). Efficient software model checking of data structure properties, ACM SIGPLAN Notices, 41:10, (363-382), Online publication date: 16-Oct-2006.
- Darga P and Boyapati C Efficient software model checking of data structure properties Proceedings of the 21st annual ACM SIGPLAN conference on Object-oriented programming systems, languages, and applications, (363-382)
- Khurshid S and Suen Y (2005). Generalizing symbolic execution to library classes, ACM SIGSOFT Software Engineering Notes, 31:1, (103-110), Online publication date: 1-Jan-2006.
- Khurshid S, García I and Suen Y Repairing structurally complex data Proceedings of the 12th international conference on Model Checking Software, (123-138)
- Khurshid S and Suen Y Generalizing symbolic execution to library classes Proceedings of the 6th ACM SIGPLAN-SIGSOFT workshop on Program analysis for software tools and engineering, (103-110)
- Kuncak V and Jackson D (2005). Relational analysis of algebraic datatypes, ACM SIGSOFT Software Engineering Notes, 30:5, (207-216), Online publication date: 1-Sep-2005.
- Kuncak V and Jackson D Relational analysis of algebraic datatypes Proceedings of the 10th European software engineering conference held jointly with 13th ACM SIGSOFT international symposium on Foundations of software engineering, (207-216)
Recommendations
Combinatorial generation of structurally complex test inputs for commercial software applications
FSE 2016: Proceedings of the 2016 24th ACM SIGSOFT International Symposium on Foundations of Software EngineeringDespite recent progress in automated test generation research, significant challenges remain for applying these techniques on large-scale software systems. These systems under test often require structurally complex test inputs within a large input ...
Generating source inputs for metamorphic testing using dynamic symbolic execution
MET '16: Proceedings of the 1st International Workshop on Metamorphic TestingMetamorphic testing uses domain-specific properties about a program's intended behaviour to alleviate the oracle problem. From a given set of source test inputs, a set of follow-up test inputs are generated which have some relation to the source inputs, ...