-
Notifications
You must be signed in to change notification settings - Fork 3
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
Fix some WP unit test errors #32
Conversation
Fixes "ReflectionException: Property WP_SQLite_DB::$allow_unsafe_unquoted_parameters does not exist" in WordPress PHPUnit tests.
3cb3614
to
07e7255
Compare
07e7255
to
ad3beb8
Compare
/* | ||
* Sync "$allow_unsafe_unquoted_parameters" with the WPDB parent property. | ||
* This is only needed because some WPDB tests are accessing the private | ||
* property externally via PHP reflection. This should be fixed WP tests. |
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.
oh boy 🙈
As a side note, I found myself not trusting $wpdb->prepare()
at all in my code. It seems weird to the point where I just stitch strings myself. I'm curious if that was your experience, too. I wonder if we have an opportunity here to make it better for SQLite and, e.g., actually use prepared statements. Probably not, because $wpdb
is supposed to return a string here, but it would be cool if that was possible.
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.
@adamziel I haven't explored $wpdb->prepare()
in depth yet, but I do think it's potentially problematic — not only possible performance problems (roundtrips to MySQL server for escaping), but also the fact that it will consume any input, no matter whether it's a valid query or not, which may lead to misuse. And on top of that, you have things like this, which make me even less confident about that approach.
Considering this, I think WordPress deserves better, and maybe we could apply our learnings from implementing the SQLite driver, prototype a Postgres driver, and then see what improvements we could propose upstream.
As for what we can do with the SQLite driver itself, we only control the _real_escape
WPDB method. I can see that historically, it seems to call addslashes
, which I think we should replace with PDO->quote(), which should have no roundtrip cost since it's just a method call with SQLite. I'll check if using that breaks any tests.
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.
Ah, I realized the addslashes
part is correct because in that place, we emulate MySQL escaping, while escaping for SQLite is done later, when translating the literals.
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.
Escaping with slashes is difficult when we don't know the encoding of the input string. Is the byte 34 a double quote? Or is it a part of a multibyte character that we didn't recognize? Maybe we could call the method bind_utf8_string()
and drop support for other encodings, then it's easy. I've been playing with escaping via bin2hex($string)
in php and UNHEX()
in the query. It's more computations, but it may still be faster than relying on real escape.
This PR fixes two WordPress PHPUnit test failures that I've run into:
ReflectionException: Property WP_SQLite_DB::$allow_unsafe_unquoted_parameters does not exist
in WordPress PHPUnit tests by exposing the same private property as WPDB does and synchronizing its value when they diverge.DB_NAME
constant not being used in the SQLite override of WPDB. The old driver was fine using only an empty string as the database name.