t / t3902-quoted.shon commit Merge branch 'js/bundle-verify-require-object-store' into maint (abbd504)
   1#!/bin/sh
   2#
   3# Copyright (c) 2006 Junio C Hamano
   4#
   5
   6test_description='quoted output'
   7
   8. ./test-lib.sh
   9
  10FN='濱野'
  11GN='純'
  12HT='    '
  13DQ='"'
  14
  15test_have_prereq MINGW ||
  16echo foo 2>/dev/null > "Name and an${HT}HT"
  17if ! test -f "Name and an${HT}HT"
  18then
  19        # FAT/NTFS does not allow tabs in filenames
  20        skip_all='Your filesystem does not allow tabs in filenames'
  21        test_done
  22fi
  23
  24for_each_name () {
  25        for name in \
  26            Name "Name and a${LF}LF" "Name and an${HT}HT" "Name${DQ}" \
  27            "$FN$HT$GN" "$FN$LF$GN" "$FN $GN" "$FN$GN" "$FN$DQ$GN" \
  28            "With SP in it" "$FN/file"
  29        do
  30                eval "$1"
  31        done
  32}
  33
  34test_expect_success 'setup' '
  35
  36        mkdir "$FN" &&
  37        for_each_name "echo initial >\"\$name\"" &&
  38        git add . &&
  39        git commit -q -m Initial &&
  40
  41        for_each_name "echo second >\"\$name\"" &&
  42        git commit -a -m Second &&
  43
  44        for_each_name "echo modified >\"\$name\""
  45
  46'
  47
  48test_expect_success 'setup expected files' '
  49cat >expect.quoted <<\EOF &&
  50Name
  51"Name and a\nLF"
  52"Name and an\tHT"
  53"Name\""
  54With SP in it
  55"\346\277\261\351\207\216\t\347\264\224"
  56"\346\277\261\351\207\216\n\347\264\224"
  57"\346\277\261\351\207\216 \347\264\224"
  58"\346\277\261\351\207\216\"\347\264\224"
  59"\346\277\261\351\207\216/file"
  60"\346\277\261\351\207\216\347\264\224"
  61EOF
  62
  63cat >expect.raw <<\EOF
  64Name
  65"Name and a\nLF"
  66"Name and an\tHT"
  67"Name\""
  68With SP in it
  69"濱野\t純"
  70"濱野\n純"
  71濱野 純
  72"濱野\"純"
  73濱野/file
  74濱野純
  75EOF
  76'
  77
  78test_expect_success 'check fully quoted output from ls-files' '
  79
  80        git ls-files >current && test_cmp expect.quoted current
  81
  82'
  83
  84test_expect_success 'check fully quoted output from diff-files' '
  85
  86        git diff --name-only >current &&
  87        test_cmp expect.quoted current
  88
  89'
  90
  91test_expect_success 'check fully quoted output from diff-index' '
  92
  93        git diff --name-only HEAD >current &&
  94        test_cmp expect.quoted current
  95
  96'
  97
  98test_expect_success 'check fully quoted output from diff-tree' '
  99
 100        git diff --name-only HEAD^ HEAD >current &&
 101        test_cmp expect.quoted current
 102
 103'
 104
 105test_expect_success 'check fully quoted output from ls-tree' '
 106
 107        git ls-tree --name-only -r HEAD >current &&
 108        test_cmp expect.quoted current
 109
 110'
 111
 112test_expect_success 'setting core.quotepath' '
 113
 114        git config --bool core.quotepath false
 115
 116'
 117
 118test_expect_success 'check fully quoted output from ls-files' '
 119
 120        git ls-files >current && test_cmp expect.raw current
 121
 122'
 123
 124test_expect_success 'check fully quoted output from diff-files' '
 125
 126        git diff --name-only >current &&
 127        test_cmp expect.raw current
 128
 129'
 130
 131test_expect_success 'check fully quoted output from diff-index' '
 132
 133        git diff --name-only HEAD >current &&
 134        test_cmp expect.raw current
 135
 136'
 137
 138test_expect_success 'check fully quoted output from diff-tree' '
 139
 140        git diff --name-only HEAD^ HEAD >current &&
 141        test_cmp expect.raw current
 142
 143'
 144
 145test_expect_success 'check fully quoted output from ls-tree' '
 146
 147        git ls-tree --name-only -r HEAD >current &&
 148        test_cmp expect.raw current
 149
 150'
 151
 152test_done