mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.format: Escape invalid UTF-8 by passing trough serialization
Should prevent invalid UTF-8 from making it into the logs, which can cause trouble with terminals or log viewers or other tools, such as when grep determines that log files are binary.
This commit is contained in:
parent
ab4991e829
commit
d4c1451794
2 changed files with 14 additions and 1 deletions
|
@ -20,5 +20,9 @@ describe("util.format", function()
|
|||
assert.equal("␁", format("%s", "\1"));
|
||||
end);
|
||||
|
||||
it("escapes invalid UTF-8", function ()
|
||||
assert.equal("\"Hello w\\195rld\"", format("%s", "Hello w\195rld"));
|
||||
end);
|
||||
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue