At least one processing platform is configured to automatically analyze one or more code changes in a computer program and at least one of modify and create a set of one or more regression tests for the computer program based on the automatic analysis. The one or more code changes automatically analyzed may comprise one or more incremental code changes in the computer program.
|
8. A method comprising:
automatically analyzing one or more incremental code changes in a computer program;
identifying one or more relevant regression test cases associated with one or more impacted areas of the computer program based on the one or more incremental code changes;
at least one of automatically modifying and creating one or more regression test cases in a set of one or more regression tests for the computer program based on the automatic analysis and the identified one or more relevant regression test cases associated with the one or more impacted areas of the computer program;
at least one of automatically modifying and creating one or more code flow paths corresponding to the one or more regression test cases in the set of one or more regression tests; and
generating one or more visualizations based at least in part on the one or more code flow paths corresponding to the one or more regression test cases;
wherein the steps are performed by at least one processing platform comprising one or more processing devices.
1. An apparatus comprising:
at least one processing platform comprising one or more processing devices;
the at least one processing platform being configured to:
automatically analyze one or more incremental code changes in a computer program;
identify one or more relevant regression test cases associated with one or more impacted areas of the computer program based on the one or more incremental code changes;
at least one of automatically modify and create one or more regression test cases in a set of one or more regression tests for the computer program based on the automatic analysis and the identified one or more relevant regression test cases associated with the one or more impacted areas of the computer;
at least one of automatically modify and create one or more code flow paths corresponding to the one or more regression test cases in the set of one or more regression tests; and
generate one or more visualizations based at least in part on the one or more code flow paths corresponding to the one or more regression test cases.
15. An article of manufacture comprising a non-transitory processor-readable storage medium having stored therein program code of one or more software programs, wherein the program code when executed by at least one processing device causes the at least one processing device to perform steps of:
automatically analyze one or more incremental code changes in a computer program;
identify one or more relevant regression test cases associated with one or more impacted areas of the computer program based on the one or more incremental code changes;
at least one of automatically modify and create one or more regression test cases in a set of one or more regression tests for the computer program based on the automatic analysis and the identified one or more relevant regression test cases associated with the one or more impacted areas of the computer program;
at least one of automatically modify and create one or more code flow paths corresponding to the one or more regression test cases in the set of one or more regression tests; and
generate one or more visualization based at least in part on the one or more code flow paths corresponding to the one or more regression test cases.
2. The apparatus of
3. The apparatus of
4. The apparatus of
5. The apparatus of
6. The apparatus of
7. The apparatus of
9. The method of
10. The method of
11. The method of
12. The method of
13. The method of
14. The method of
16. The article of
17. The article of
18. The article of
20. The article of
|
The field relates generally to computer program development, and more particularly to techniques for regression testing management of computer programs.
An important phase of the development lifecycle of a computer program, also referred to interchangeably herein as software or application, is regression testing. Regression testing is a type of software testing used to confirm that a change to program code of the software has not adversely affected existing functionalities (features) of the software. For example, regression testing may typically include re-execution of one or more previously executed tests (i.e., first executed prior to the program code change) to ensure existing functionalities still perform as desired. Such tests, also referred to as test cases, may collectively be referred to as a regression test suite.
One computing environment in which software regression testing is typically employed is an enterprise computing environment. An enterprise computing environment is a computing environment associated with a company that develops and/or purchases software that is executed in the computing environment for purposes of clients of the enterprise which can include, but are not limited to, employees and/or customers of the enterprise. As the computing environment grows, it becomes extremely challenging to continuously upgrade regression suites to match with the velocity of the software delivery cycle. Time to market (i.e., how quickly a new or updated software product is released for production use by clients) is a critical focus for large enterprises. Thus, efficiently carrying out regression testing along with new feature testing before deploying the software for production use is critical. This demands that the regression test suite be continuously updated by retiring obsolete test cases and appending new test cases to match the delivery velocity. Updating the regression test suite is typically performed manually based on subject matter expert recommendations and, as such, presents significant challenges. For example, manual analysis and update leads to critical scenario misses, and the volume of regression grows significantly over time.
Embodiments of the invention provide techniques for improved regression testing management and, more particularly, methodology to identify relevant regression test cases on impacted areas in incremental code changes.
For example, in one embodiment, an apparatus comprises at least one processing platform comprising one or more processing devices. The at least one processing platform is configured to automatically analyze one or more code changes in a computer program and at least one of modify and create a set of one or more regression tests for the computer program based on the automatic analysis. The one or more code changes automatically analyzed may comprise one or more incremental code changes in the computer program. Modifying and/or creating a set of one or more regression tests may further comprise identifying one or more relevant regression test cases associated with one or more impacted areas of the computer program based on the one or more incremental code changes, and automatically modifying existing test cases and/or creating new test cases to address the code changes.
Advantageously, illustrative embodiments provide an automated methodology to identify and resolve code change impacts at a root-level with respect to a regression test suite. Further, illustrative embodiments provide an intelligent framework configured to analyze incremental code changes on impacted modules to create a dynamic regression test suite with improved precision. Still further, illustrative embodiments provide a scientific methodology to evaluate and gap-fit a regression suite based on the ongoing code changes. Enterprise systems with complex integrations may, for example, adopt one or more of these methodologies and framework to ensure the regression of end-to-end scenarios is addressed.
These and other features and advantages of the invention will become more readily apparent from the accompanying drawings and the following detailed description.
Illustrative embodiments may be described herein with reference to exemplary computing environments such as, but not limited to, cloud infrastructure, data repositories, data centers, data processing systems, computing systems, data storage systems and associated servers, computers, storage units and devices and other processing and computing devices. It is to be appreciated, however, that embodiments of the invention are not restricted to use with the particular illustrative system and device configurations shown. Moreover, the phrases “computing environment,” “cloud environment,” “cloud computing platform,” “cloud infrastructure,” “data repository,” “data center,” “data processing system,” “computing system,” “data storage system,” “information processing system,” and the like as used herein are intended to be broadly construed, so as to encompass, for example, any arrangement of one or more processing devices.
As mentioned above, illustrative embodiments provide an intelligent framework configured to analyze code changes and their impact in order to create a dynamic regression test suite with improved precision.
More particularly,
The application executable 101 is the portion or entirety of the application (software, computer program) which is undergoing regression testing. The master regression suite 102 is the set of test cases (tests) used to test functionalities of the application executable 101. During testing, as the application executable 101 executes, the runtime profiler 103 executes one or more of the tests of the master regression suite 102. It is assumed that test profile data is collected in data store 105 which includes, inter alia, method history information 104 and code-flow path information 106. That is, the runtime profiler 103 monitors and collects data about how the application executes during each test case of the master regression suite 102 that is run. For instance, assume that the application executable 101 comprises a plurality of methods (e.g., functions that the code of the application performs). As the application executable 101 executes during testing, the runtime profiler 103 stores, in data store 105, information 104 describing which methods executed, as well as code-flow path information 106 which indicates what specific parts of the code of the application executable 101 were invoked and run (and the order in which they were run) during each test case. Further, the test case results can be stored in data store 105 as well.
Now assume that one or more changes are made to one or more methods of the application executable 101. For example, these changes may be updates such as, but not limited to, functionality upgrades, performance upgrades and/or bug fixes. The runtime profiler 103 monitors and collects information 104 and 106, as mentioned above, for the updated version of application executable 101 as one or more tests of the master regression suite 102 are performed. The updated test case results can be stored in data store 105 as well. Then, an analysis on the test results is performed to confirm that the application executable 101 executes in an acceptable manner following the updates (note that what is acceptable and/or appropriate, sufficient, expected, desired, etc. depends on the nature of the application being regression tested, e.g., confirmation can be made that the application still conforms with performance terms specified in a service level agreement). More particularly, by performing a given test of the master regression suite 102 before the code change and then after the code change, a comparison of the respective test results can be made to confirm that one or more particular functionalities tested by the test still operate as desired/required (as noted above) after the code change.
However, assume that the changes made to the application executable 101 include one or more changes that are not covered by one or more tests of the master regression suite 102, i.e., there is a gap in the regression testing. For example, perhaps the code change added an entirely new functionality to the application or otherwise changed an existing functionality. In such a scenario(s), the updated version of the application executable 101 will not be satisfactorily tested, thus enabling regression. As such, an update to the master regression suite 102 is needed. However, in existing regression testing environments, the identification of a gap in testing is typically done manually by a developer or some other individual. As mentioned in the background section above, such manual effort can be time consuming and can miss significant changes that should be tested.
To address these and other issues, regression discovery engine 114 automatically detects one or more code changes to the application executable 101, evaluates the one or more code changes, and determines any gaps in the master regression test suite 102. In one or more illustrative embodiments, a code change is detected by engine 114 based on knowledge of the method history 104 and/or other information from test profile data store 105.
As will be further explained, the regression discovery engine 114 is also configured to automatically update the master regression suite 102 to include one or more additional tests and/or one or more changes to one or more existing tests in the suite. Then, the code change is tested by the runtime profiler 103 using the one or more additional tests and/or the one or more changes to one or more existing tests in the master regression suite 102. However, before determining any new or modified test cases to be added to the master regression suite, regression discovery engine 114 utilizes test data 108 and test execution engine 113 to enable scenario flow pattern recommender 112 to generate one or more scenario flow pattern recommendations. As will be further explained herein, once a gap is determined in the regression testing scheme, regression discovery engine 114 determines one or more proposed paths through one or more methods of the application executable 101 for a test case to flow. Build monitor module 107 can be used to visualize the test data and scenario flow patterns that are generated.
Further, in order to determine which recommendation from the one or more recommendations output by scenario flow pattern recommender 112 is appropriate, the production system where the application executable 101 is run in real-time (online) is accessed. It is to be understood that regression testing is typically done offline, i.e., not on the production system but rather on a backup or protection system. As shown in
If there are any deficiencies determined as a result of the analytics, the regression discovery engine 114 is notified, and new or updated recommendations for one or more test cases/flow paths can be made and re-evaluated. Thus, the regression discovery engine 114 can iterate as often as needed to come up with the appropriate test cases to update the master regression suite 102 until any gaps in the regression testing are addressed for any incremental code changes. As such, regression impact discovery as described herein is considered “progressive” in the sense that regression gap discovery and correction occur incrementally and dynamically, i.e., correction continuously occurs each time a code change is detected).
Once a flow path(s) for a new or modified test case(s) to address one or more gaps in the regression testing is selected based on this analysis, the master regression suite 102 is updated by the regression discovery engine 114 with the new or modified test case(s).
As shown, assume that the enterprise has two geographic regions of interest with which the application (application executable 101) is associated, e.g., Asia Pacific/Japan (APJ) and America (AMER). These regions are collectively depicted in
Further assume that a code change to the application adds a new type of consumer payment transaction not covered by the test cases 206 in
Turning now to
Note that examples 300 and 400 in
Recall the running example of an application being regression tested that is designed to manage payment transactions and related issues for customer purchases of products associated with a globally distributed enterprise. Assume that a code change to the application may, for example, add a new type of consumer payment transaction not covered by the existing tests in the base regression suite. The base regression suite would therefore have a testing gap since it does not test for the new type of consumer payment transaction, and illustrative embodiments automatically identify this gap and provide for updating the base regression suite to include a test case for the new type of consumer payment transaction. In some embodiments, more than one code change is presented, and can be handled separately as developer builds (“builds”). For example, a first change to the application and thus the regression suite may be referred to as “Build I,” while a second change to the application and thus the regression suite is referred to as “Build II.” Separate builds can be combined into a composite build. Alternatively, the application and thus the base regression suite, prior to any code change, can be Build I, while Build II refers to the build after one or more code changes.
When code changes are made, the impacted areas of code are referred to as “functionals.”
Given the example builds and functionals mentioned above in the context of
In accordance with test case mappings, regression discovery engine 114 discovers the code changes between the two builds and, in response, creates new test cases and modifies existing test cases, as explained in detail above. Then, corresponding code flow paths are identified for the new and modified test cases.
The processing platform 1400 in this embodiment comprises a plurality of processing devices, denoted 1402-1, 1402-2, 1402-3, . . . 1402-N, which communicate with one another over network(s) 1404. It is to be appreciated that the methodologies described herein may be executed in one such processing device 1402, or executed in a distributed manner across two or more such processing devices 1402. It is to be further appreciated that a server, a client device, a computing device or any other processing platform element may be viewed as an example of what is more generally referred to herein as a “processing device.” As illustrated in
The processing device 1402-1 in the processing platform 1400 comprises a processor 1410 coupled to a memory 1412. The processor 1410 may comprise a microprocessor, a microcontroller, an application-specific integrated circuit (ASIC), a field programmable gate array (FPGA) or other type of processing circuitry, as well as portions or combinations of such circuitry elements. Components of systems as disclosed herein can be implemented at least in part in the form of one or more software programs stored in memory and executed by a processor of a processing device such as processor 1410. Memory 1412 (or other storage device) having such program code embodied therein is an example of what is more generally referred to herein as a processor-readable storage medium. Articles of manufacture comprising such processor-readable storage media are considered embodiments of the invention. A given such article of manufacture may comprise, for example, a storage device such as a storage disk, a storage array or an integrated circuit containing memory. The term “article of manufacture” as used herein should be understood to exclude transitory, propagating signals.
Furthermore, memory 1412 may comprise electronic memory such as random-access memory (RAM), read-only memory (ROM) or other types of memory, in any combination. The one or more software programs when executed by a processing device such as the processing device 1402-1 causes the device to perform functions associated with one or more of the components/steps of system/methodologies in
Processing device 1402-1 also includes network interface circuitry 1414, which is used to interface the device with the networks 1404 and other system components. Such circuitry may comprise conventional transceivers of a type well known in the art.
The other processing devices 1402 (1402-2, 1402-3, . . . 1402-N) of the processing platform 1400 are assumed to be configured in a manner similar to that shown for computing device 1402-1 in the figure.
The processing platform 1400 shown in
Also, numerous other arrangements of servers, clients, computers, storage devices or other components are possible in processing platform 1400. Such components can communicate with other elements of the processing platform 1400 over any type of network, such as a wide area network (WAN), a local area network (LAN), a satellite network, a telephone or cable network, or various portions or combinations of these and other types of networks.
Furthermore, it is to be appreciated that the processing platform 1400 of
As is known, virtual machines are logical processing elements that may be instantiated on one or more physical processing elements (e.g., servers, computers, processing devices). That is, a “virtual machine” generally refers to a software implementation of a machine (i.e., a computer) that executes programs like a physical machine. Thus, different virtual machines can run different operating systems and multiple applications on the same physical computer. Virtualization is implemented by the hypervisor which is directly inserted on top of the computer hardware in order to allocate hardware resources of the physical computer dynamically and transparently. The hypervisor affords the ability for multiple operating systems to run concurrently on a single physical computer and share hardware resources with each other.
It was noted above that portions of the computing environment may be implemented using one or more processing platforms. A given such processing platform comprises at least one processing device comprising a processor coupled to a memory, and the processing device may be implemented at least in part utilizing one or more virtual machines, containers or other virtualization infrastructure. By way of example, such containers may be Docker containers or other types of containers. As illustratively used herein, a container is considered a “virtual computing element” (e.g., unit of software) that packages application code and its dependencies so that the application is executed quickly and reliably from one computing environment to another. A Docker container image is a lightweight, standalone, executable package of software that includes all components needed to execute an application.
The particular processing operations and other system functionality described in conjunction with
It should again be emphasized that the above-described embodiments of the invention are presented for purposes of illustration only. Many variations may be made in the particular arrangements shown. For example, although described in the context of particular system and device configurations, the techniques are applicable to a wide variety of other types of data processing systems, processing devices and distributed virtual infrastructure arrangements. In addition, any simplifying assumptions made above in the course of describing the illustrative embodiments should also be viewed as exemplary rather than as requirements or limitations of the invention. Numerous other alternative embodiments within the scope of the appended claims will be readily apparent to those skilled in the art.
Krishnamurthy, Viswanath, Durairaj, Arockiaraj, Somaiah, Chetan Pudiyanda
Patent | Priority | Assignee | Title |
Patent | Priority | Assignee | Title |
10503632, | Sep 28 2018 | Amazon Technologies, Inc | Impact analysis for software testing |
10635432, | Jun 20 2011 | Ebay Inc. | Systems and methods for incremental software deployment |
20170235661, |
Date | Maintenance Fee Events |
Jan 02 2020 | BIG: Entity status set to Undiscounted (note the period is included in the code). |
Date | Maintenance Schedule |
Aug 31 2024 | 4 years fee payment window open |
Mar 03 2025 | 6 months grace period start (w surcharge) |
Aug 31 2025 | patent expiry (for year 4) |
Aug 31 2027 | 2 years to revive unintentionally abandoned end. (for year 4) |
Aug 31 2028 | 8 years fee payment window open |
Mar 03 2029 | 6 months grace period start (w surcharge) |
Aug 31 2029 | patent expiry (for year 8) |
Aug 31 2031 | 2 years to revive unintentionally abandoned end. (for year 8) |
Aug 31 2032 | 12 years fee payment window open |
Mar 03 2033 | 6 months grace period start (w surcharge) |
Aug 31 2033 | patent expiry (for year 12) |
Aug 31 2035 | 2 years to revive unintentionally abandoned end. (for year 12) |