[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [PATCH] issue 1493 - fix svnlook tests

From: Stefan Sperling <stsp_at_elego.de>
Date: Fri, 7 Aug 2009 18:07:14 +0100

On Fri, Aug 07, 2009 at 06:25:53PM +0200, Daniel Näslund wrote:
> Hi!
>
> I have run make check. All tests passed.
>
> (Due to problem with tigris I'm using my loosy webmail. Sorry!)
>
> [[[
> Fix two tests marked as XFAIL for issue 1493.
>
> * subversion/tests/cmdline/svnlook_tests.py
> (test_print_property_diffs, diff_ignore_eolstyle): Remove XFAIL
>
> * subversion/svnlook/main.c
> (maybe_append_eol): New helper function for display_prop_diffs().
> (display_prop_diffs): Use libsvn_diff for diffing property values.
> ]]]

> Index: subversion/tests/cmdline/svnlook_tests.py
> ===================================================================
> --- subversion/tests/cmdline/svnlook_tests.py (revision 38611)
> +++ subversion/tests/cmdline/svnlook_tests.py (arbetskopia)
> @@ -549,13 +549,13 @@
> test_list = [ None,
> test_misc,
> delete_file_in_moved_dir,
> - XFail(test_print_property_diffs),
> + test_print_property_diffs,
> info_bad_newlines,
> changed_copy_info,
> tree_non_recursive,
> limit_history,
> diff_ignore_whitespace,
> - XFail(diff_ignore_eolstyle),
> + diff_ignore_eolstyle,
> diff_binary,
> ]
>
> Index: subversion/svnlook/main.c
> ===================================================================
> --- subversion/svnlook/main.c (revision 38611)
> +++ subversion/svnlook/main.c (arbetskopia)
> @@ -762,7 +762,35 @@
> return SVN_NO_ERROR;
> }
>
> +/* A helper function used by display_prop_diffs.
> + TOKEN is a string holding a property value.
> + If TOKEN is empty, or is already terminated by an EOL marker,
> + return TOKEN unmodified. Else, return a new string consisting
> + of the concatenation of TOKEN and the system's default EOL marker.
> + The new string is allocated from POOL. */
> +static const svn_string_t *
> +maybe_append_eol(const svn_string_t *token, apr_pool_t *pool)

Ugh, code duplication.

One more reason to put this into a library (which Edmund is looking at).

> +{
> + const char *curp;
>
> + if (token->len == 0)
> + return token;
> +
> + curp = token->data + token->len - 1;
> + if (*curp == '\r')
> + {
> + return token;
> + }
> + else if (*curp != '\n')
> + {
> + return svn_string_createf(pool, "%s%s", token->data, APR_EOL_STR);
> + }
> + else
> + {
> + return token;
> + }
> +}
> +
> /*
> * Constant diff output separator strings
> */
> @@ -805,39 +833,43 @@
> header_fmt = _("Modified: %s\n");
> SVN_ERR(svn_cmdline_printf(pool, header_fmt, pc->name));
>
> - /* For now, we have a rather simple heuristic: if this is an
> - "svn:" property, then assume the value is UTF-8 and must
> - therefore be converted before printing. Otherwise, just
> - print whatever's there and hope for the best.
> - ### We don't use svn_cmdline_printf here, since we don't know if the
> - values are UTF-8. */
> {
> - svn_boolean_t val_to_utf8 = svn_prop_is_svn_prop(pc->name);
> - const char *printable_val;

Was the original code here also copied?
It looks fairly similar to what we have in libsvn_client/diff.c.
Could we make svnlook and libsvn_client/diff.c use the same function?

Anyway, we can commit this. But we should look into reducing
code bloat if possible.

> + svn_stream_t *out;
> + svn_diff_t *diff;
> + svn_diff_file_options_t options;
> + const svn_string_t *tmp;
> + const svn_string_t *orig;
> + const svn_string_t *val;
>
> - if (orig_value != NULL)
> - {
> - if (val_to_utf8)
> - SVN_ERR(svn_cmdline_cstring_from_utf8(&printable_val,
> - orig_value->data, pool));

You have dropped the UTF8 conversion.
Seems like that is OK since the diff API deals with this interally.

> - else
> - printable_val = orig_value->data;
> - printf(" - %s\n", printable_val);
> - }
> + SVN_ERR(svn_stream_for_stdout(&out, pool));
>
> - if (pc->value != NULL)
> - {
> - if (val_to_utf8)
> - SVN_ERR(svn_cmdline_cstring_from_utf8
> - (&printable_val, pc->value->data, pool));
> - else
> - printable_val = pc->value->data;
> - printf(" + %s\n", printable_val);
> - }
> + /* The last character in a property is often not a newline.
> + Since the diff is not useful anyway for patching properties an
> + eol character is appended when needed to remove those pescious
> + ' \ No newline at end of file' lines. */
> + tmp = orig_value ? orig_value : svn_string_create("", pool);
> + orig = maybe_append_eol(tmp, pool);
> +
> + tmp = pc->value ? pc->value :
> + svn_string_create("", pool);
> + val = maybe_append_eol(tmp, pool);
> +
> + SVN_ERR(svn_diff_mem_string_diff(&diff, orig, val, &options, pool));
> +
> + /* UNIX patch will try to apply a diff even if the diff header
> + * is missing. It tries to be helpful by asking the user for a
> + * target filename when it can't determine the target filename
> + * from the diff header. But there usually are no files which
> + * UNIX patch could apply the property diff to, so we use "##"
> + * instead of "@@" as the default hunk delimiter for property diffs.
> + * We also supress the diff header. */
> + SVN_ERR(svn_diff_mem_string_output_unified2(out, diff, FALSE, "##",
> + svn_dirent_local_style(path, pool),
> + svn_dirent_local_style(path, pool),
> + svn_cmdline_output_encoding(pool),
> + orig, val, pool));
> }
> }
> -
> - SVN_ERR(svn_cmdline_printf(pool, "\n"));
> return svn_cmdline_fflush(stdout);
> }
 
Committed in r38621.

Thanks,
Stefan

>
> Mvh
> Daniel
>
> ------------------------------------------------------
> http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2381368

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2381385
Received on 2009-08-07 19:07:39 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.