-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(lua): add support for luaformatter
Closes #111
- Loading branch information
Showing
3 changed files
with
97 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
use super::execute_command; | ||
|
||
#[inline] | ||
pub fn format_using_luaformatter( | ||
snippet_path: &std::path::Path, | ||
) -> std::io::Result<(bool, Option<String>)> { | ||
let mut cmd = std::process::Command::new("lua-format"); | ||
|
||
cmd.arg("-i").arg(snippet_path); | ||
|
||
execute_command(&mut cmd, snippet_path) | ||
} | ||
|
||
#[cfg(test)] | ||
mod test_luaformatter { | ||
use crate::{ | ||
formatters::{luaformatter::format_using_luaformatter, setup_snippet}, | ||
languages::Language, | ||
}; | ||
|
||
#[test_with::executable(lua-format)] | ||
#[test] | ||
fn it_should_format_lua() { | ||
let input = " | ||
local function add ( a , b | ||
) | ||
local c=a+b | ||
return c | ||
end | ||
"; | ||
|
||
let expected_output = "local function add(a, b) | ||
local c = a + b | ||
return c | ||
end | ||
"; | ||
|
||
let snippet = | ||
setup_snippet(input, Language::Lua.to_file_ext()).expect("it to create a snippet file"); | ||
|
||
let output = format_using_luaformatter(snippet.path()) | ||
.expect("it to be successful") | ||
.1 | ||
.expect("it to be some"); | ||
|
||
assert_eq!(expected_output, output); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters