t / perf / p0000-perf-lib-sanity.shon commit Merge branch 'rs/apply-inaccurate-eof-with-incomplete-line' into maint (43240cb)
   1#!/bin/sh
   2
   3test_description='Tests whether perf-lib facilities work'
   4. ./perf-lib.sh
   5
   6test_perf_default_repo
   7
   8test_perf 'test_perf_default_repo works' '
   9        foo=$(git rev-parse HEAD) &&
  10        test_export foo
  11'
  12
  13test_checkout_worktree
  14
  15test_perf 'test_checkout_worktree works' '
  16        wt=$(find . | wc -l) &&
  17        idx=$(git ls-files | wc -l) &&
  18        test $wt -gt $idx
  19'
  20
  21baz=baz
  22test_export baz
  23
  24test_expect_success 'test_export works' '
  25        echo "$foo" &&
  26        test "$foo" = "$(git rev-parse HEAD)" &&
  27        echo "$baz" &&
  28        test "$baz" = baz
  29'
  30
  31test_perf 'export a weird var' '
  32        bar="weird # variable" &&
  33        test_export bar
  34'
  35
  36test_perf 'éḿíẗ ńöń-ÁŚĆÍÍ ćḧáŕáćẗéŕś' 'true'
  37
  38test_expect_success 'test_export works with weird vars' '
  39        echo "$bar" &&
  40        test "$bar" = "weird # variable"
  41'
  42
  43test_perf 'important variables available in subshells' '
  44        test -n "$HOME" &&
  45        test -n "$TEST_DIRECTORY" &&
  46        test -n "$TRASH_DIRECTORY" &&
  47        test -n "$GIT_BUILD_DIR"
  48'
  49
  50test_perf 'test-lib-functions correctly loaded in subshells' '
  51        : >a &&
  52        test_path_is_file a &&
  53        : >b &&
  54        test_cmp a b
  55'
  56
  57test_done