]> git.ipfire.org Git - thirdparty/git.git/blame - t/t9129-git-svn-i18n-commitencoding.sh
t9100, t9129: Use prerequisite tags for UTF-8 tests
[thirdparty/git.git] / t / t9129-git-svn-i18n-commitencoding.sh
CommitLineData
aab57205
EW
1#!/bin/sh
2#
3# Copyright (c) 2008 Eric Wong
4
5test_description='git svn honors i18n.commitEncoding in config'
6
7. ./lib-git-svn.sh
8
9compare_git_head_with () {
10 nr=`wc -l < "$1"`
11 a=7
12 b=$(($a + $nr - 1))
13 git cat-file commit HEAD | sed -ne "$a,${b}p" >current &&
14 test_cmp current "$1"
15}
16
17compare_svn_head_with () {
1ef626b4
EW
18 # extract just the log message and strip out committer info.
19 # don't use --limit here since svn 1.1.x doesn't have it,
20 LC_ALL=en_US.UTF-8 svn log `git svn info --url` | perl -w -e '
21 use bytes;
22 $/ = ("-"x72) . "\n";
23 my @x = <STDIN>;
24 @x = split(/\n/, $x[1]);
25 splice(@x, 0, 2);
26 $x[-1] = "";
27 print join("\n", @x);
28 ' > current &&
aab57205
EW
29 test_cmp current "$1"
30}
31
32for H in ISO-8859-1 EUCJP ISO-2022-JP
33do
34 test_expect_success "$H setup" '
35 mkdir $H &&
36 svn import -m "$H test" $H "$svnrepo"/$H &&
37 git svn clone "$svnrepo"/$H $H
38 '
39done
40
41for H in ISO-8859-1 EUCJP ISO-2022-JP
42do
43 test_expect_success "$H commit on git side" '
44 (
45 cd $H &&
46 git config i18n.commitencoding $H &&
47 git checkout -b t refs/remotes/git-svn &&
48 echo $H >F &&
49 git add F &&
50 git commit -a -F "$TEST_DIRECTORY"/t3900/$H.txt &&
51 E=$(git cat-file commit HEAD | sed -ne "s/^encoding //p") &&
52 test "z$E" = "z$H"
53 compare_git_head_with "$TEST_DIRECTORY"/t3900/$H.txt
54 )
55 '
56done
57
58for H in ISO-8859-1 EUCJP ISO-2022-JP
59do
60 test_expect_success "$H dcommit to svn" '
61 (
62 cd $H &&
63 git svn dcommit &&
64 git cat-file commit HEAD | grep git-svn-id: &&
65 E=$(git cat-file commit HEAD | sed -ne "s/^encoding //p") &&
66 test "z$E" = "z$H" &&
67 compare_git_head_with "$TEST_DIRECTORY"/t3900/$H.txt
68 )
69 '
70done
71
c66c0cbc 72if locale -a |grep -q en_US.utf8; then
7b7247b0
JS
73 test_set_prereq UTF8
74else
75 say "UTF-8 locale not available, test skipped"
76fi
77
78test_expect_success UTF8 'ISO-8859-1 should match UTF-8 in svn' '
aab57205 79 (
c66c0cbc
MV
80 cd ISO-8859-1 &&
81 compare_svn_head_with "$TEST_DIRECTORY"/t3900/1-UTF-8.txt
aab57205 82 )
7b7247b0 83'
c66c0cbc 84
7b7247b0
JS
85for H in EUCJP ISO-2022-JP
86do
87 test_expect_success UTF8 "$H should match UTF-8 in svn" '
c66c0cbc
MV
88 (
89 cd $H &&
90 compare_svn_head_with "$TEST_DIRECTORY"/t3900/2-UTF-8.txt
91 )
7b7247b0
JS
92 '
93done
aab57205
EW
94
95test_done