-
Notifications
You must be signed in to change notification settings - Fork 366
Feat: Integrating DQE Testing Approaches into SQLancer first in MySQL #1251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Thanks, that's great! Some high-level comments first:
|
Regarding the
Given these differences, merging them into a single class could lead to confusion, increased coupling, and reduced clarity in terms of responsibility separation. I believe keeping them separate helps maintain a clean architecture and supports better extensibility in the future. That said, if you have any alternative suggestions or design ideas on how we can better organize this part of the code, I’d be more than happy to discuss them further. Thanks again for your thoughtful feedback! @mrigger @JensonSung |
I think current implementation is good but specialized for DQE method. |
First, revising ExepctedErrors like SQLQueryError to provide a structured information may help ease to identify errors compared to a string-formed information. While DQE does not distinguish which error is expected but compare whether errors are consistent. A clear name could be required. |
boolean generateLimit = false; | ||
int limit = 0; | ||
if (operateOnSingleTable) { | ||
if (Randomly.getBooleanWithSmallProbability()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the expression generator already has methods for generating ORDER BY
s, so we should try to re-use those. Could we perhaps also re-use or factor out components from the random query generator?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have add some tests for your mentioned method generateOrderBys()
but I got some unexpected errors my repo commit. Sometimes test can't pass with many errors, sometimes this method generated statement like EXISTS (SELECT 1 WHERE FALSE) DESC
, which never return rows in SQL statement. I don't know if the methed have some logic errors, or maybe my test have some wrongs, can you give me some suggestions? Thank you very much.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe only generating columns in order by expressions is enough for applying DQE, which can identify the correctness of complex expressions through WHERE clauses.
String selectRowId = String.format("SELECT %s FROM %s", rowId, tableName); | ||
SQLancerResultSet resultSet = new SQLQueryAdapter(selectRowId).executeAndGet(state); | ||
HashSet<String> rows = new HashSet<>(); | ||
if (resultSet != null) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we have some auxiliary methods for fetching rows (used by other test oracles). Can we perhaps re-use any of these here?
Okay, then let's leave them separate for now. I guess there is a conceptual commonality (both are about errors returned by the database system), but if that does not (yet) make sense at an implementation level, we could try to address this later. |
This PR is to Integrating DQE (Differential Query Execution) Testing Approaches into SQLancer. More information see DQE paper.
Take MySQL as the first step.
The code is divided into three main parts:
DQEBase.class
: defines the core logic of DQE, including the addition and deletion of auxiliary columns, and the comparison of query results.SQLQueryError.java
: provide standardized error representation and comparison functionality for SQL query operations in DQE.MySQLDQEOracle.class
: Inherits fromDQEBase
and implements the specific logic of executing DQE in MySQL, including generating queries, executing queries, comparing results, etc.