t / t2000-conflict-when-checking-files-out.shon commit Merge branch 'jk/attr-macro-fix' (02bf766)
   1#!/bin/sh
   2#
   3# Copyright (c) 2005 Junio C Hamano
   4#
   5
   6test_description='git conflicts when checking files out test.'
   7
   8# The first test registers the following filesystem structure in the
   9# cache:
  10#
  11#     path0       - a file
  12#     path1/file1 - a file in a directory
  13#
  14# And then tries to checkout in a work tree that has the following:
  15#
  16#     path0/file0 - a file in a directory
  17#     path1       - a file
  18#
  19# The git checkout-index command should fail when attempting to checkout
  20# path0, finding it is occupied by a directory, and path1/file1, finding
  21# path1 is occupied by a non-directory.  With "-f" flag, it should remove
  22# the conflicting paths and succeed.
  23
  24. ./test-lib.sh
  25
  26show_files() {
  27        # show filesystem files, just [-dl] for type and name
  28        find path? -ls |
  29        sed -e 's/^[0-9]* * [0-9]* * \([-bcdl]\)[^ ]* *[0-9]* *[^ ]* *[^ ]* *[0-9]* [A-Z][a-z][a-z] [0-9][0-9] [^ ]* /fs: \1 /'
  30        # what's in the cache, just mode and name
  31        git ls-files --stage |
  32        sed -e 's/^\([0-9]*\) [0-9a-f]* [0-3] /ca: \1 /'
  33        # what's in the tree, just mode and name.
  34        git ls-tree -r "$1" |
  35        sed -e 's/^\([0-9]*\)   [^ ]*   [0-9a-f]*       /tr: \1 /'
  36}
  37
  38date >path0
  39mkdir path1
  40date >path1/file1
  41
  42test_expect_success \
  43    'git update-index --add various paths.' \
  44    'git update-index --add path0 path1/file1'
  45
  46rm -fr path0 path1
  47mkdir path0
  48date >path0/file0
  49date >path1
  50
  51test_expect_success \
  52    'git checkout-index without -f should fail on conflicting work tree.' \
  53    'test_must_fail git checkout-index -a'
  54
  55test_expect_success \
  56    'git checkout-index with -f should succeed.' \
  57    'git checkout-index -f -a'
  58
  59test_expect_success \
  60    'git checkout-index conflicting paths.' \
  61    'test -f path0 && test -d path1 && test -f path1/file1'
  62
  63test_expect_success SYMLINKS 'checkout-index -f twice with --prefix' '
  64        mkdir -p tar/get &&
  65        ln -s tar/get there &&
  66        echo first &&
  67        git checkout-index -a -f --prefix=there/ &&
  68        echo second &&
  69        git checkout-index -a -f --prefix=there/
  70'
  71
  72# The second test registers the following filesystem structure in the cache:
  73#
  74#     path2/file0       - a file in a directory
  75#     path3/file1 - a file in a directory
  76#
  77# and attempts to check it out when the work tree has:
  78#
  79#     path2/file0 - a file in a directory
  80#     path3       - a symlink pointing at "path2"
  81#
  82# Checkout cache should fail to extract path3/file1 because the leading
  83# path path3 is occupied by a non-directory.  With "-f" it should remove
  84# the symlink path3 and create directory path3 and file path3/file1.
  85
  86mkdir path2
  87date >path2/file0
  88test_expect_success \
  89    'git update-index --add path2/file0' \
  90    'git update-index --add path2/file0'
  91test_expect_success \
  92    'writing tree out with git write-tree' \
  93    'tree1=$(git write-tree)'
  94test_debug 'show_files $tree1'
  95
  96mkdir path3
  97date >path3/file1
  98test_expect_success \
  99    'git update-index --add path3/file1' \
 100    'git update-index --add path3/file1'
 101test_expect_success \
 102    'writing tree out with git write-tree' \
 103    'tree2=$(git write-tree)'
 104test_debug 'show_files $tree2'
 105
 106rm -fr path3
 107test_expect_success \
 108    'read previously written tree and checkout.' \
 109    'git read-tree -m $tree1 && git checkout-index -f -a'
 110test_debug 'show_files $tree1'
 111
 112test_expect_success \
 113    'add a symlink' \
 114    'test_ln_s_add path2 path3'
 115test_expect_success \
 116    'writing tree out with git write-tree' \
 117    'tree3=$(git write-tree)'
 118test_debug 'show_files $tree3'
 119
 120# Morten says "Got that?" here.
 121# Test begins.
 122
 123test_expect_success \
 124    'read previously written tree and checkout.' \
 125    'git read-tree $tree2 && git checkout-index -f -a'
 126test_debug 'show_files $tree2'
 127
 128test_expect_success \
 129    'checking out conflicting path with -f' \
 130    'test ! -h path2 && test -d path2 &&
 131     test ! -h path3 && test -d path3 &&
 132     test ! -h path2/file0 && test -f path2/file0 &&
 133     test ! -h path3/file1 && test -f path3/file1'
 134
 135test_done