629bf2ad创建于 2023年12月18日历史提交
#!/usr/bin/env bash

. "$(dirname "$0")/testlib.sh"

begin_test "ext"
(
  set -e

  # no need to setup a remote repo, since this test does not need to push or pull

  mkdir ext
  cd ext
  git init

  git config lfs.extension.foo.clean "foo-clean %f"
  git config lfs.extension.foo.smudge "foo-smudge %f"
  git config lfs.extension.foo.priority 0

  git config lfs.extension.bar.clean "bar-clean %f"
  git config lfs.extension.bar.smudge "bar-smudge %f"
  git config lfs.extension.bar.priority 1

  git config lfs.extension.baz.clean "baz-clean %f"
  git config lfs.extension.baz.smudge "baz-smudge %f"
  git config lfs.extension.baz.priority 2

  fooExpected="Extension: foo
    clean = foo-clean %f
    smudge = foo-smudge %f
    priority = 0"

  barExpected="Extension: bar
    clean = bar-clean %f
    smudge = bar-smudge %f
    priority = 1"

  bazExpected="Extension: baz
    clean = baz-clean %f
    smudge = baz-smudge %f
    priority = 2"

  actual=$(git lfs ext list foo)
  [ "$actual" = "$fooExpected" ]

  actual=$(git lfs ext list bar)
  [ "$actual" = "$barExpected" ]

  actual=$(git lfs ext list baz)
  [ "$actual" = "$bazExpected" ]

  actual=$(git lfs ext list foo bar)
  expected=$(printf "%s\n%s" "$fooExpected" "$barExpected")
  [ "$actual" = "$expected" ]

  actual=$(git lfs ext list)
  expected=$(printf "%s\n%s\n%s" "$fooExpected" "$barExpected" "$bazExpected")
  [ "$actual" = "$expected" ]

  actual=$(git lfs ext)
  [ "$actual" = "$expected" ]
)
end_test