-
Notifications
You must be signed in to change notification settings - Fork 794
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
change split on whitespace to split on tab in mysql_user #1233
Conversation
I don't think any of the travis failures are related to my change. |
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.
These failures do seem to be related to your change, at least to my eyes, especially this failing test which seems to be directly failing because the different values are not tab separated, at least in the spec test itself.
Sorry about that, I'll see if I can find if/when the output changed for the mysql command line. |
The documentation on mysql's website only goes back as far as 5.5, it has tab separation for the batch-mode output. https://dev.mysql.com/doc/refman/5.5/en/mysql-command-options.html#option_mysql_batch
The spec test seems to have been spaces since it was refactored from Surely I can't be the first person to have issues with the TLS config though (unless I'm also the first to use a TLS CA with spaces in the name). |
Hi @koshatul Thank you for submitting this PR. I've added a commit to fix the unit testing for this change, however it appears there are some acceptance testing failures caused by this change that you can verify in travis. Can you verify and fix the testing for those failures ? You might be able to run the tests on your local machine with Litmus to have an easier time getting these issues solved. Please let us know if you are having trouble with this. |
@koshatul Hey, sorry to bother you but I'm just checking to see whether or not you intended to return to this work at any point in time? |
@david22swan sorry, been a bit busy lately. I merged back in master and fixed the issue, I'm about to head off for the day so I'll check later or tomorrow if the tests passed. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1233 +/- ##
==========================================
+ Coverage 50.23% 55.69% +5.45%
==========================================
Files 22 22
Lines 1045 1045
==========================================
+ Hits 525 582 +57
+ Misses 520 463 -57 ☔ View full report in Codecov by Sentry. |
I'm writing some acceptance tests for it, but I've noticed another issue is that https://dev.mysql.com/doc/refman/5.7/en/create-user.html
but tls_options returns unquoted options, so the |
Not sure how to acknowledge or complete the change request, but I've added acceptance and spec tests and I've actually pointed the Puppetfile in my local environments at my fork to test it, so it also works for me. |
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've changed this after merging master back in.
@koshatul Looking over this I can't see one thing wrong so I'm gonna go ahead and merge. :) |
What change does this introduce?
splits on whitespace, so if the issuer or subject for the user certificate contains spaces it will break all following fields.
Why make this change?
When using certificate subjects or issuers with spaces, the split fails and breaks the parsing of the user from MySQL.
puppet code:
will show this notice on every single puppet report.
What approach will be taken?
Change
\s
to\t
.the command is run with
-B
which adds--silent
.