prek 0.3.11

A fast Git hook manager written in Rust, designed as a drop-in alternative to pre-commit, reimagined.
use crate::common::{TestContext, cmd_snapshot};

mod common;

#[test]
fn list_builtins_basic() {
    let context = TestContext::new();

    cmd_snapshot!(context.filters(), context.command().arg("util").arg("list-builtins"), @r"
    success: true
    exit_code: 0
    ----- stdout -----
    check-added-large-files
    check-case-conflict
    check-executables-have-shebangs
    check-illegal-windows-names
    check-json
    check-json5
    check-merge-conflict
    check-shebang-scripts-are-executable
    check-symlinks
    check-toml
    check-vcs-permalinks
    check-xml
    check-yaml
    destroyed-symlinks
    detect-private-key
    end-of-file-fixer
    file-contents-sorter
    fix-byte-order-marker
    forbid-new-submodules
    mixed-line-ending
    no-commit-to-branch
    pretty-format-json
    trailing-whitespace

    ----- stderr -----
    ");
}

#[test]
fn list_builtins_verbose() {
    let context = TestContext::new();

    cmd_snapshot!(context.filters(), context.command().arg("util").arg("list-builtins").arg("--verbose"), @"
    success: true
    exit_code: 0
    ----- stdout -----
    check-added-large-files
      prevents giant files from being committed.

    check-case-conflict
      checks for files that would conflict in case-insensitive filesystems

    check-executables-have-shebangs
      ensures that (non-binary) executables have a shebang.

    check-illegal-windows-names
      checks for filenames which cannot be created on Windows.

    check-json
      checks json files for parseable syntax.

    check-json5
      checks json5 files for parseable syntax.

    check-merge-conflict
      checks for files that contain merge conflict strings.

    check-shebang-scripts-are-executable
      ensures that (non-binary) files with a shebang are executable.

    check-symlinks
      checks for symlinks which do not point to anything.

    check-toml
      checks toml files for parseable syntax.

    check-vcs-permalinks
      ensures that links to vcs websites are permalinks.

    check-xml
      checks xml files for parseable syntax.

    check-yaml
      checks yaml files for parseable syntax.

    destroyed-symlinks
      detects symlinks that were replaced with regular files whose contents are the original symlink target path.

    detect-private-key
      detects the presence of private keys.

    end-of-file-fixer
      ensures that a file is either empty, or ends with one newline.

    file-contents-sorter
      sorts the lines in specified files (defaults to alphabetical).

    fix-byte-order-marker
      removes utf-8 byte order marker.

    forbid-new-submodules
      Prevent addition of new git submodules.

    mixed-line-ending
      replaces or checks mixed line ending.

    no-commit-to-branch

    pretty-format-json
      checks that JSON files are pretty-formatted.

    trailing-whitespace
      trims trailing whitespace.


    ----- stderr -----
    ");
}

#[test]
fn list_builtins_json() {
    let context = TestContext::new();

    cmd_snapshot!(context.filters(), context.command().arg("util").arg("list-builtins").arg("--output-format=json"), @r#"
    success: true
    exit_code: 0
    ----- stdout -----
    [
      {
        "id": "check-added-large-files",
        "name": "check for added large files",
        "description": "prevents giant files from being committed."
      },
      {
        "id": "check-case-conflict",
        "name": "check for case conflicts",
        "description": "checks for files that would conflict in case-insensitive filesystems"
      },
      {
        "id": "check-executables-have-shebangs",
        "name": "check that executables have shebangs",
        "description": "ensures that (non-binary) executables have a shebang."
      },
      {
        "id": "check-illegal-windows-names",
        "name": "check illegal windows names",
        "description": "checks for filenames which cannot be created on Windows."
      },
      {
        "id": "check-json",
        "name": "check json",
        "description": "checks json files for parseable syntax."
      },
      {
        "id": "check-json5",
        "name": "check json5",
        "description": "checks json5 files for parseable syntax."
      },
      {
        "id": "check-merge-conflict",
        "name": "check for merge conflicts",
        "description": "checks for files that contain merge conflict strings."
      },
      {
        "id": "check-shebang-scripts-are-executable",
        "name": "check that scripts with shebangs are executable",
        "description": "ensures that (non-binary) files with a shebang are executable."
      },
      {
        "id": "check-symlinks",
        "name": "check for broken symlinks",
        "description": "checks for symlinks which do not point to anything."
      },
      {
        "id": "check-toml",
        "name": "check toml",
        "description": "checks toml files for parseable syntax."
      },
      {
        "id": "check-vcs-permalinks",
        "name": "check vcs permalinks",
        "description": "ensures that links to vcs websites are permalinks."
      },
      {
        "id": "check-xml",
        "name": "check xml",
        "description": "checks xml files for parseable syntax."
      },
      {
        "id": "check-yaml",
        "name": "check yaml",
        "description": "checks yaml files for parseable syntax."
      },
      {
        "id": "destroyed-symlinks",
        "name": "detect destroyed symlinks",
        "description": "detects symlinks that were replaced with regular files whose contents are the original symlink target path."
      },
      {
        "id": "detect-private-key",
        "name": "detect private key",
        "description": "detects the presence of private keys."
      },
      {
        "id": "end-of-file-fixer",
        "name": "fix end of files",
        "description": "ensures that a file is either empty, or ends with one newline."
      },
      {
        "id": "file-contents-sorter",
        "name": "file contents sorter",
        "description": "sorts the lines in specified files (defaults to alphabetical)."
      },
      {
        "id": "fix-byte-order-marker",
        "name": "fix utf-8 byte order marker",
        "description": "removes utf-8 byte order marker."
      },
      {
        "id": "forbid-new-submodules",
        "name": "forbid new submodules",
        "description": "Prevent addition of new git submodules."
      },
      {
        "id": "mixed-line-ending",
        "name": "mixed line ending",
        "description": "replaces or checks mixed line ending."
      },
      {
        "id": "no-commit-to-branch",
        "name": "don't commit to branch",
        "description": null
      },
      {
        "id": "pretty-format-json",
        "name": "pretty format json",
        "description": "checks that JSON files are pretty-formatted."
      },
      {
        "id": "trailing-whitespace",
        "name": "trim trailing whitespace",
        "description": "trims trailing whitespace."
      }
    ]

    ----- stderr -----
    "#);
}