test: normalize only message filenames in show json

notmuch_json_show_sanitize replaced "filename" field values even in part
structures, where the value is predictable.  Make it only normalize the
filename value if it is an absolute path (begins with slash), which is
true of the Maildir filenames that were intended to be normalized away.
This commit is contained in:
Peter Wang 2012-12-15 14:06:42 +11:00 committed by David Bremner
parent 2cdb3f54f7
commit ee425ae2ad
2 changed files with 2 additions and 2 deletions

View file

@ -630,7 +630,7 @@ cat <<EOF >EXPECTED
"content": "This is an embedded message, with a multipart/alternative part.\n"}]}]}]},
{"id": 7,
"content-type": "text/plain",
"filename": "YYYYY",
"filename": "attachment",
"content": "This is a text attachment.\n"},
{"id": 8,
"content-type": "text/plain",

View file

@ -600,7 +600,7 @@ notmuch_json_show_sanitize ()
{
sed \
-e 's|"id": "[^"]*",|"id": "XXXXX",|g' \
-e 's|"filename": "[^"]*",|"filename": "YYYYY",|g'
-e 's|"filename": "/[^"]*",|"filename": "YYYYY",|g'
}
# End of notmuch helper functions