3 test_description='basic update-index tests
 
   5 Tests for command-line parsing and basic operation.
 
  10 test_expect_success 'update-index --nonsense fails' '
 
  11         test_must_fail git update-index --nonsense 2>msg &&
 
  15 test_expect_success 'update-index --nonsense dumps usage' '
 
  16         test_expect_code 129 git update-index --nonsense 2>err &&
 
  17         test_i18ngrep "[Uu]sage: git update-index" err
 
  20 test_expect_success 'update-index -h with corrupt index' '
 
  26                 test_expect_code 129 git update-index -h >usage 2>&1
 
  28         test_i18ngrep "[Uu]sage: git update-index" broken/usage
 
  31 test_expect_success '--cacheinfo complains of missing arguments' '
 
  32         test_must_fail git update-index --cacheinfo
 
  35 test_expect_success '--cacheinfo does not accept blob null sha1' '
 
  38         git rev-parse :file >expect &&
 
  39         test_must_fail git update-index --cacheinfo 100644 $ZERO_OID file &&
 
  40         git rev-parse :file >actual &&
 
  41         test_cmp expect actual
 
  44 test_expect_success '--cacheinfo does not accept gitlink null sha1' '
 
  46         (cd submodule && test_commit foo) &&
 
  48         git rev-parse :submodule >expect &&
 
  49         test_must_fail git update-index --cacheinfo 160000 $ZERO_OID submodule &&
 
  50         git rev-parse :submodule >actual &&
 
  51         test_cmp expect actual
 
  54 test_expect_success '--cacheinfo mode,sha1,path (new syntax)' '
 
  56         git hash-object -w --stdin <file >expect &&
 
  58         git update-index --add --cacheinfo 100644 "$(cat expect)" file &&
 
  59         git rev-parse :file >actual &&
 
  60         test_cmp expect actual &&
 
  62         git update-index --add --cacheinfo "100644,$(cat expect),elif" &&
 
  63         git rev-parse :elif >actual &&
 
  64         test_cmp expect actual
 
  67 test_expect_success '.lock files cleaned up' '
 
  74         git config core.worktree ../../worktree &&
 
  75         # --refresh triggers late setup_work_tree,
 
  76         # active_cache_changed is zero, rollback_lock_file fails
 
  77         git update-index --refresh &&
 
  78         ! test -f .git/index.lock
 
  82 test_expect_success '--chmod=+x and chmod=-x in the same argument list' '
 
  86         git update-index --chmod=+x A --chmod=-x B &&
 
  88         100755 $EMPTY_BLOB 0    A
 
  89         100644 $EMPTY_BLOB 0    B
 
  91         git ls-files --stage A B >actual &&
 
  92         test_cmp expect actual