1#!/bin/sh
2#
3# Copyright (c) 2006 Eric Wong
4#
5
6test_description='git-svn property tests'
7. ./lib-git-svn.sh
8
9mkdir import
10
11a_crlf=
12a_lf=
13a_cr=
14a_ne_crlf=
15a_ne_lf=
16a_ne_cr=
17a_empty=
18a_empty_lf=
19a_empty_cr=
20a_empty_crlf=
21
22cd import
23 cat >> kw.c <<''
24/* Make it look like somebody copied a file from CVS into SVN: */
25/* $Id: kw.c,v 1.1.1.1 1994/03/06 00:00:00 eric Exp $ */
26
27 printf "Hello\r\nWorld\r\n" > crlf
28 a_crlf=`git-hash-object -w crlf`
29 printf "Hello\rWorld\r" > cr
30 a_cr=`git-hash-object -w cr`
31 printf "Hello\nWorld\n" > lf
32 a_lf=`git-hash-object -w lf`
33
34 printf "Hello\r\nWorld" > ne_crlf
35 a_ne_crlf=`git-hash-object -w ne_crlf`
36 printf "Hello\nWorld" > ne_lf
37 a_ne_lf=`git-hash-object -w ne_lf`
38 printf "Hello\rWorld" > ne_cr
39 a_ne_cr=`git-hash-object -w ne_cr`
40
41 touch empty
42 a_empty=`git-hash-object -w empty`
43 printf "\n" > empty_lf
44 a_empty_lf=`git-hash-object -w empty_lf`
45 printf "\r" > empty_cr
46 a_empty_cr=`git-hash-object -w empty_cr`
47 printf "\r\n" > empty_crlf
48 a_empty_crlf=`git-hash-object -w empty_crlf`
49
50 svn import -m 'import for git-svn' . "$svnrepo" >/dev/null
51cd ..
52
53rm -rf import
54svn co "$svnrepo" test_wc
55
56cd test_wc
57 echo 'Greetings' >> kw.c
58 svn commit -m 'Not yet an $Id$'
59 svn up
60
61 echo 'Hello world' >> kw.c
62 svn commit -m 'Modified file, but still not yet an $Id$'
63 svn up
64
65 svn propset svn:keywords Id kw.c
66 svn commit -m 'Propset $Id$'
67 svn up
68cd ..
69
70git-svn init "$svnrepo"
71git-svn fetch
72
73git checkout -b mybranch remotes/git-svn
74echo 'Hi again' >> kw.c
75name='test svn:keywords ignoring'
76
77git commit -a -m "$name"
78git-svn commit remotes/git-svn..mybranch
79git pull . remotes/git-svn
80
81expect='/* $Id$ */'
82got="`sed -ne 2p kw.c`"
83test_expect_success 'raw $Id$ found in kw.c' "test '$expect' = '$got'"
84
85cd test_wc
86 svn propset svn:eol-style CR empty
87 svn propset svn:eol-style CR crlf
88 svn propset svn:eol-style CR ne_crlf
89 svn commit -m 'propset CR on crlf files'
90 svn up
91cd ..
92
93git-svn fetch
94git pull . remotes/git-svn
95
96svn co "$svnrepo" new_wc
97for i in crlf ne_crlf lf ne_lf cr ne_cr empty_cr empty_lf empty empty_crlf
98do
99 test_expect_success "Comparing $i" "cmp $i new_wc/$i"
100done
101
102
103cd test_wc
104 printf '$Id$\rHello\rWorld\r' > cr
105 printf '$Id$\rHello\rWorld' > ne_cr
106 a_cr=`printf '$Id$\r\nHello\r\nWorld\r\n' | git-hash-object --stdin`
107 a_ne_cr=`printf '$Id$\r\nHello\r\nWorld' | git-hash-object --stdin`
108 svn propset svn:eol-style CRLF cr
109 svn propset svn:eol-style CRLF ne_cr
110 svn propset svn:keywords Id cr
111 svn propset svn:keywords Id ne_cr
112 svn commit -m 'propset CRLF on cr files'
113 svn up
114cd ..
115
116git-svn fetch
117git pull . remotes/git-svn
118
119b_cr="`git-hash-object cr`"
120b_ne_cr="`git-hash-object ne_cr`"
121
122test_expect_success 'CRLF + $Id$' "test '$a_cr' = '$b_cr'"
123test_expect_success 'CRLF + $Id$ (no newline)' "test '$a_ne_cr' = '$b_ne_cr'"
124
125test_done