diff tests/test-conflict-1.t @ 495:0f8fa80158e8

tests: unify test-conflict-1
author David M. Carr <david@carrclan.us>
date Mon, 10 Sep 2012 00:26:37 -0400
parents tests/test-conflict-1@553dd7078058
children bc7b18c2e5ef
line wrap: on
line diff
copy from tests/test-conflict-1
copy to tests/test-conflict-1.t
--- a/tests/test-conflict-1
+++ b/tests/test-conflict-1.t
@@ -1,63 +1,99 @@
-#!/bin/sh
+# Fails for some reason, need to investigate
+#   $ "$TESTDIR/hghave" git || exit 80
 
-# Fails for some reason, need to investigate
-# "$TESTDIR/hghave" git || exit 80
+bail if the user does not have dulwich
+  $ python -c 'import dulwich, dulwich.repo' || exit 80
 
-# bail if the user does not have dulwich
-python -c 'import dulwich, dulwich.repo' || exit 80
+bail early if the user is already running git-daemon
+  $ ! (echo hi | nc localhost 9418 2>/dev/null) || exit 80
 
-# bail early if the user is already running git-daemon
-echo hi | nc localhost 9418 2>/dev/null && exit 80
+  $ echo "[extensions]" >> $HGRCPATH
+  $ echo "hggit=$(echo $(dirname $TESTDIR))/hggit" >> $HGRCPATH
+  $ echo 'hgext.graphlog =' >> $HGRCPATH
+  $ echo 'hgext.bookmarks =' >> $HGRCPATH
 
-echo "[extensions]" >> $HGRCPATH
-echo "hggit=$(echo $(dirname $(dirname $0)))/hggit" >> $HGRCPATH
-echo 'hgext.graphlog =' >> $HGRCPATH
-echo 'hgext.bookmarks =' >> $HGRCPATH
+  $ hg init hgrepo1
+  $ cd hgrepo1
+  $ echo A > afile
+  $ hg add afile
+  $ hg ci -m "origin"
+
+  $ echo B > afile
+  $ hg ci -m "A->B"
 
-hg init hgrepo1
-cd hgrepo1
-echo A > afile
-hg add afile
-hg ci -m "origin"
+  $ hg up -r0
+  1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+  $ echo C > afile
+  $ hg ci -m "A->C"
+  created new head
 
-echo B > afile
-hg ci -m "A->B"
-
-hg up -r0
-echo C > afile
-hg ci -m "A->C"
+  $ hg merge -r1 2>&1 | sed 's/-C ./-C/' | egrep -v '^merging afile$' | sed 's/incomplete.*/failed!/'
+  warning: conflicts during merge.
+  merging afile failed!
+  0 files updated, 0 files merged, 0 files removed, 1 files unresolved
+  use 'hg resolve' to retry unresolved file merges or 'hg update -C' to abandon
+resolve using first parent
+  $ echo C > afile
+  $ hg resolve -m afile
+  $ hg ci -m "merge to C"
 
-hg merge -r1 2>&1 | sed 's/-C ./-C/' | egrep -v '^merging afile$' | sed 's/incomplete.*/failed!/'
-# resolve using first parent
-echo C > afile
-hg resolve -m afile
-hg ci -m "merge to C"
+  $ hg log --graph --style compact | sed 's/\[.*\]//g'
+  @    3:2,1   6c53bc0f062f   1970-01-01 00:00 +0000   test
+  |\     merge to C
+  | |
+  | o  2:0   ea82b67264a1   1970-01-01 00:00 +0000   test
+  | |    A->C
+  | |
+  o |  1   7205e83b5a3f   1970-01-01 00:00 +0000   test
+  |/     A->B
+  |
+  o  0   5d1a6b64f9d0   1970-01-01 00:00 +0000   test
+       origin
+  
 
-hg log --graph --style compact | sed 's/\[.*\]//g'
-
-cd ..
+  $ cd ..
 
-mkdir gitrepo
-cd gitrepo
-git init --bare | python -c "import sys; print sys.stdin.read().replace('$(dirname $(pwd))/', '')"
+  $ mkdir gitrepo
+  $ cd gitrepo
+  $ git init --bare | python -c "import sys; print sys.stdin.read().replace('$(dirname $(pwd))/', '')"
+  Initialized empty Git repository in gitrepo/
+  
 
-# dulwich does not presently support local git repos, workaround
-cd ..
-git daemon --base-path="$(pwd)"\
- --listen=localhost\
- --export-all\
- --pid-file="$DAEMON_PIDS" \
- --detach --reuseaddr \
- --enable=receive-pack
+dulwich does not presently support local git repos, workaround
+  $ cd ..
+  $ git daemon --base-path="$(pwd)"\
+  >  --listen=localhost\
+  >  --export-all\
+  >  --pid-file="$DAEMON_PIDS" \
+  >  --detach --reuseaddr \
+  >  --enable=receive-pack
+
+  $ cd hgrepo1
+  $ hg bookmark -r tip master
+  $ hg push -r master git://localhost/gitrepo
+  pushing to git://localhost/gitrepo
+  exporting hg objects to git
+  creating and sending data
+  $ cd ..
 
-cd hgrepo1
-hg bookmark -r tip master
-hg push -r master git://localhost/gitrepo
-cd ..
+  $ hg clone git://localhost/gitrepo hgrepo2 | grep -v '^updating'
+  importing git objects into hg
+  1 files updated, 0 files merged, 0 files removed, 0 files unresolved
+  $ cd hgrepo2
+  $ echo % expect the same revision ids as above
+  % expect the same revision ids as above
+  $ hg log --graph --style compact | sed 's/\[.*\]//g'
+  @    3:1,2   6c53bc0f062f   1970-01-01 00:00 +0000   test
+  |\     merge to C
+  | |
+  | o  2:0   7205e83b5a3f   1970-01-01 00:00 +0000   test
+  | |    A->B
+  | |
+  o |  1   ea82b67264a1   1970-01-01 00:00 +0000   test
+  |/     A->C
+  |
+  o  0   5d1a6b64f9d0   1970-01-01 00:00 +0000   test
+       origin
+  
 
-hg clone git://localhost/gitrepo hgrepo2 | grep -v '^updating'
-cd hgrepo2
-echo % expect the same revision ids as above
-hg log --graph --style compact | sed 's/\[.*\]//g'
-
-cd ..
+  $ cd ..