Ziyuan

Introduction

Debugging is difficult and time consuming, even with the help of automatic bug localization techniques. One of the reasons is that programmers have to understand the bug before fixing it and thus focusing on a few program statements marked buggy would not work. In this work, we investigate the problem of helping programmers to understand a bug (e.g., when the same failure manifests) and propose a method and tool which we call Ziyuan to automatically analyze the bug, based on active learning and test case generation. Given a program with an assertion and at least one test case failing the assertion, Ziyuan first generates random test cases, identifies potential bug locations through bug localization, and then generates test cases based on active learning techniques
to identify a “simple” explanation for the cause of the bug. The explanation is in the form of a predicate which is a classifier for the passed test cases and failed test cases. Ziyuan is fully automatic, e.g., it uses an iterative classification and testing process to ensure that the classifier converges. We apply Ziyuan to real-world programs and conduct a user study to show its effectiveness.

As far as we know, there are no existing tools which do what Ziyuan does. For instance, tools based on methods like symbolic execution would not work with the real-world bugs that we have dealt with (due to the limitation in encoding the programs and solving the constraint); tools based ideas like delta debugging etc. do not support generating of assertions; tools based on generating invariant based testing do not support the idea of selective sampling and thus are very constrained by the test cases. If you are aware of any tool that Ziyuan should be compared with, we will be really appreciated.

The source code of the project is HERE.

Key Publications

Compositional Verification of Heap-Manipulating Programs Through Property-Guided Learning.
Long H. Pham, Jun Sun, and Quang Loc Le.
Programming Languages and Systems - 17th Asian Symposium, APLAS 2019, Nusa Dua, Bali, Indonesia, December 1-4, 2019, Proceedings.

Learning Likely Invariants to Explain Why a Program Fails.
Long H. Pham, Jun Sun, Lyly Tran Thi, Jingyi Wang, and Xin Peng.
22nd International Conference on Engineering of Complex Computer Systems, ICECCS 2017, Fukuoka, Japan, November 5-8, 2017.

Case Studies

We have applied our implemented to a number of real-world bugs and the results can be found below.

JavaParser 1.5-Issue46
JavaParser 1.5-Issue57
DiffUtils-issue10
Joda-time-Issue227
Joda-time-Issue21
Joda-time-Issue77
Apache Commons Math-Issue835
Apache Commons Math-Issue1196
Apache Commons Math-Issue1005
Defects4j Time-Issue8

We also tried to explain two failed test cases created randomly by FailureDoc, which is a tool designed to explain why a test case fails by mutating the test case and generating an invariant using Daikon. Note that The results are below.

FailureDoc-Apache Commons Math
FailureDoc-Apache Commons Primitives

We remark that Ziyuan cannot be applied to other bugs analyzed by FailureDoc due to implementation issues, e.g., some bugs depend on an older version of Java (since that work was done quite some time ago) which is not supported by Ziyuan; for some bugs, there are no pass test cases; some bugs caused extremely large log files generated by javaslicer, etc.

We also get some more results from project Math in Defects4j (issue 1, 4, 38, 40, 58, 61, 70, 79, 84). However, because we are not programmers of the project, we do not understand it well enough to evaluate the usefulness of the learned predicates. Details can be found here.

User Study

In addition, we have conducted a user study to investigate how real programmers view the usefulness of findings from Ziyuan. Within the time limit, we managed to gather a total of 14 programmers and randomly divided them into two groups. They were divided into two groups randomly except that they are constrained to have similar average years of programming experience. Programmers in group 1 were instructed to fix issue 46 of JavaParser1.5 with Ziyuan’s help and then to fix the java-diff-utils issue 10 without Ziyuan’s help. Group 2 did the first issue without Ziyuan’s help and then the second issue with Ziyuan’s help. The details of the two issues can be found above. Thus the scenario is designed to see whether Ziyuan helps if a programmer is asked to fix a bug in a legacy code. These two bugs are chosen as they are representative. They are however by no means easy.

Each programmer was given at most 30 minutes to study the bug so as to explain precisely the reason of the bug, i.e., what is the local specification that is violated which causes the bug, and propose a possible fix. We then evaluate whether their explanation/proposal
is correct. The results are as follows.

Subject 1: 7 years of programming experience, group 1, disqualified as she was interrupted during study.
Subject 2: 8 years of programming experience, group 1, done bug 1 correctly in 10 minutes; no result on bug 2
Subject 3: 2 years of programming experience, group 1, no result on both bugs
Subject 4: 3 years of programming experience, group 1, done bug 1 correctly in 27 minutes; no result on bug 2;
Subject 5: 8 years of programming experience, group 1, no result on both bugs
Subject 6: 6 years of programming experience, group 1, no result on both bugs
Subject 7: 4 years of programming experience, group 1, done bug 1 correctly in 30 minutes; no result on bug 2;
Subject 8: 7 years of programming experience, group 2, no result on bug 1; done bug 2 correctly in 23 minutes;
Subject 9: 8 years of programming experience, group 2, done both bugs correctly in 14 and 24 minutes respectively
Subject 10: 7 years of programming experience, group 2, done both bugs correctly in 30 minutes each
Subject 11: 3 years of programming experience, group 2, no result on both bugs
Subject 12: 4 years of programming experience, group 2, no result on both bugs
Subject 13: 10 years of programming experience, group 2, disqualified as he didn’t follow the instruction
Subject 14: 9 years of programming experience, group 2, no result on bug 1; done bug 2 correctly in 15 minutes

People

SUN Jun
Professor
PHAM Hong Long
PHAM Hong Long
Research Fellow
Lyly TRAN L
Lyly TRAN
Research Assistant