1#!/bin/sh
   2test_description=clone
   4. ./test-lib.sh
   6test_expect_success setup '
   8        rm -fr .git &&
  10        test_create_repo src &&
  11        (
  12                cd src
  13                >file
  14                git add file
  15                git commit -m initial
  16        )
  17'
  19test_expect_success 'clone with excess parameters (1)' '
  21        rm -fr dst &&
  23        test_must_fail git clone -n src dst junk
  24'
  26test_expect_success 'clone with excess parameters (2)' '
  28        rm -fr dst &&
  30        test_must_fail git clone -n "file://$(pwd)/src" dst junk
  31'
  33test_expect_success 'output from clone' '
  35        rm -fr dst &&
  36        git clone -n "file://$(pwd)/src" dst >output &&
  37        test $(grep Initialized output | wc -l) = 1
  38'
  39test_expect_success 'clone does not keep pack' '
  41        rm -fr dst &&
  43        git clone -n "file://$(pwd)/src" dst &&
  44        ! test -f dst/file &&
  45        ! (echo dst/.git/objects/pack/pack-* | grep "\.keep")
  46'
  48test_expect_success 'clone checks out files' '
  50        rm -fr dst &&
  52        git clone src dst &&
  53        test -f dst/file
  54'
  56test_expect_success 'clone respects GIT_WORK_TREE' '
  58        GIT_WORK_TREE=worktree git clone src bare &&
  60        test -f bare/config &&
  61        test -f worktree/file
  62'
  64test_expect_success 'clone creates intermediate directories' '
  66        git clone src long/path/to/dst &&
  68        test -f long/path/to/dst/file
  69'
  71test_expect_success 'clone creates intermediate directories for bare repo' '
  73        git clone --bare src long/path/to/bare/dst &&
  75        test -f long/path/to/bare/dst/config
  76'
  78test_expect_success 'clone --mirror' '
  80        git clone --mirror src mirror &&
  82        test -f mirror/HEAD &&
  83        test ! -f mirror/file &&
  84        FETCH="$(cd mirror && git config remote.origin.fetch)" &&
  85        test "+refs/*:refs/*" = "$FETCH" &&
  86        MIRROR="$(cd mirror && git config --bool remote.origin.mirror)" &&
  87        test "$MIRROR" = true
  88'
  90test_expect_success 'clone --bare names the local repository <name>.git' '
  92        git clone --bare src &&
  94        test -d src.git
  95'
  97test_expect_success 'clone --mirror does not repeat tags' '
  99        (cd src &&
 101         git tag some-tag HEAD) &&
 102        git clone --mirror src mirror2 &&
 103        (cd mirror2 &&
 104         git show-ref 2> clone.err > clone.out) &&
 105        test_must_fail grep Duplicate mirror2/clone.err &&
 106        grep some-tag mirror2/clone.out
 107'
 109test_expect_success 'clone to destination with trailing /' '
 111        git clone src target-1/ &&
 113        T=$( cd target-1 && git rev-parse HEAD ) &&
 114        S=$( cd src && git rev-parse HEAD ) &&
 115        test "$T" = "$S"
 116'
 118test_expect_success 'clone to destination with extra trailing /' '
 120        git clone src target-2/// &&
 122        T=$( cd target-2 && git rev-parse HEAD ) &&
 123        S=$( cd src && git rev-parse HEAD ) &&
 124        test "$T" = "$S"
 125'
 127test_expect_success 'clone to an existing empty directory' '
 129        mkdir target-3 &&
 130        git clone src target-3 &&
 131        T=$( cd target-3 && git rev-parse HEAD ) &&
 132        S=$( cd src && git rev-parse HEAD ) &&
 133        test "$T" = "$S"
 134'
 135test_expect_success 'clone to an existing non-empty directory' '
 137        mkdir target-4 &&
 138        >target-4/Fakefile &&
 139        test_must_fail git clone src target-4
 140'
 141test_expect_success 'clone to an existing path' '
 143        >target-5 &&
 144        test_must_fail git clone src target-5
 145'
 146test_expect_success 'clone a void' '
 148        mkdir src-0 &&
 149        (
 150                cd src-0 && git init
 151        ) &&
 152        git clone src-0 target-6 &&
 153        (
 154                cd src-0 && test_commit A
 155        ) &&
 156        git clone src-0 target-7 &&
 157        # There is no reason to insist they are bit-for-bit
 158        # identical, but this test should suffice for now.
 159        test_cmp target-6/.git/config target-7/.git/config
 160'
 161test_done