prek 0.3.11

A fast Git hook manager written in Rust, designed as a drop-in alternative to pre-commit, reimagined.
use assert_fs::fixture::{FileWriteStr, PathChild};
use prek_consts::env_vars::EnvVars;

use crate::common::{TestContext, cmd_snapshot};

#[test]
fn local_hook() -> anyhow::Result<()> {
    let context = TestContext::new();

    context.init_project();

    context.write_pre_commit_config(indoc::indoc! {r"
        repos:
          - repo: local
            hooks:
              - id: hello
                name: hello
                language: haskell
                entry: hello
                always_run: true
                verbose: true
                pass_filenames: false
    "});

    context
        .work_dir()
        .child("hello.cabal")
        .write_str(indoc::indoc! {r"
            cabal-version:       3.0
            name:                hello
            version:             0.1.0.0
            build-type:          Simple

            executable hello
              main-is:             Main.hs
              default-language:    GHC2021
              build-depends:       base >= 4.19 && < 5
        "})?;

    context
        .work_dir()
        .child("Main.hs")
        .write_str(indoc::indoc! {r#"
            module Main where
            main :: IO ()
            main = putStrLn "Hello Haskell!"
        "#})?;

    context.git_add(".");

    cmd_snapshot!(context.filters(), context.run().env(EnvVars::PREK_INTERNAL__SKIP_CABAL_UPDATE, "1"), @"
    success: true
    exit_code: 0
    ----- stdout -----
    hello....................................................................Passed
    - hook id: hello
    - duration: [TIME]

      Hello Haskell!

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

    // Run again to check `health_check` works correctly.
    cmd_snapshot!(context.filters(), context.run().env(EnvVars::PREK_INTERNAL__SKIP_CABAL_UPDATE, "1"), @"
    success: true
    exit_code: 0
    ----- stdout -----
    hello....................................................................Passed
    - hook id: hello
    - duration: [TIME]

      Hello Haskell!

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

    Ok(())
}

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

    context.init_project();

    context.write_pre_commit_config(indoc::indoc! {r#"
        repos:
          - repo: local
            hooks:
              - id: hello
                name: hello
                language: haskell
                entry: hello
                additional_dependencies: ["hello"]
                always_run: true
                verbose: true
                pass_filenames: false
    "#});

    context.git_add(".");

    let filters = context.filters();

    cmd_snapshot!(filters, context.run().env(EnvVars::PREK_INTERNAL__SKIP_CABAL_UPDATE, "1"), @"
    success: true
    exit_code: 0
    ----- stdout -----
    hello....................................................................Passed
    - hook id: hello
    - duration: [TIME]

      Hello, World!

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

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

    context.init_project();

    context.write_pre_commit_config(indoc::indoc! {r"
        repos:
          - repo: https://github.com/prek-test-repos/haskell-hooks
            rev: v1.0.0
            hooks:
              - id: hello
                always_run: true
                verbose: true
    "});

    context.git_add(".");

    let filters = context.filters();

    cmd_snapshot!(filters, context.run().env(EnvVars::PREK_INTERNAL__SKIP_CABAL_UPDATE, "1"), @"
    success: true
    exit_code: 0
    ----- stdout -----
    hello....................................................................Passed
    - hook id: hello
    - duration: [TIME]

      This is a remote haskell hook

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