mdsf 0.12.1

Format, and lint, markdown code snippets using your favorite tools
Documentation
#[inline]
pub fn setup_pipx_run_command(package_name: &str, executable_name: &str) -> std::process::Command {
    let mut cmd = std::process::Command::new("pipx");

    cmd.arg("run");
    cmd.arg("--quiet");

    if package_name == executable_name {
        cmd.arg(package_name);
    } else {
        cmd.arg("--spec");
        cmd.arg(package_name);
        cmd.arg(executable_name);
    }

    cmd
}

#[cfg(test)]
mod test_pipx {
    #[test_with::executable(pipx)]
    fn test_can_execute_command() -> Result<(), Box<dyn core::error::Error>> {
        let input = r#"program example
    implicit none (type, external)

    contains
        integer function addnum(a, b)
            integer, intent(in) :: a, b
            return a + b
        end function addnum

end program example"#;

        let output = r#"program example
implicit none (type, external)

contains
integer function addnum(a, b)
    integer, intent(in) :: a, b
    return a + b
end function addnum

end program example
"#;

        let file_ext = crate::filetype::get_file_extension(".f90");

        let snippet = crate::execution::setup_snippet(input, &file_ext)?;

        let result = crate::execution::run_tools(
            &[crate::runners::CommandType::Pipx(
                "fortran-linter",
                "fortran-linter",
            )],
            snippet.path(),
            crate::tools::fortran_linter::set_args,
            crate::testing::DEFAULT_TEST_FORMATTER_TIMEOUT,
            crate::tools::fortran_linter::IS_STDIN,
            crate::testing::DEFAULT_TEST_DEBUG_ENABLED,
            &crate::config::MdsfConfigRunners {
                pipx: true,
                ..Default::default()
            },
        )?;

        assert!(!result.0);
        assert_eq!(result.1, Some(output.to_string()));

        Ok(())
    }

    #[test_with::executable(pipx)]
    fn it_works_with_executable_name() -> Result<(), Box<dyn core::error::Error>> {
        let input = r#"
<note>
  <to>Tove</to>
          <from>Jani</from>
      <heading>Reminder</heading>
        <body>Don't forget me this weekend!</body>
   </note>"#;

        let output = r#"<note>
  <to>Tove</to>
  <from>Jani</from>
  <heading>Reminder</heading>
  <body>Don't forget me this weekend!</body>
</note>"#;

        let file_ext = crate::filetype::get_file_extension("xml");

        let snippet = crate::execution::setup_snippet(input, &file_ext)?;

        let result = crate::execution::run_tools(
            &[crate::runners::CommandType::Pipx(
                "xmlformatter",
                "xmlformat",
            )],
            snippet.path(),
            crate::tools::xmlformat::set_args,
            crate::testing::DEFAULT_TEST_FORMATTER_TIMEOUT,
            crate::tools::xmlformat::IS_STDIN,
            crate::testing::DEFAULT_TEST_DEBUG_ENABLED,
            &crate::config::MdsfConfigRunners {
                pipx: true,
                ..Default::default()
            },
        )?;

        assert!(!result.0);
        assert_eq!(result.1, Some(output.to_string()));

        Ok(())
    }
}