dockerfile_parser/instructions/
cmd.rsuse std::convert::TryFrom;
use crate::Span;
use crate::dockerfile_parser::Instruction;
use crate::error::*;
use crate::util::*;
use crate::parser::*;
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct CmdInstruction {
pub span: Span,
pub expr: ShellOrExecExpr,
}
impl CmdInstruction {
pub(crate) fn from_record(record: Pair) -> Result<CmdInstruction> {
let span = Span::from_pair(&record);
let field = record.into_inner().next().unwrap();
match field.as_rule() {
Rule::cmd_exec => Ok(CmdInstruction {
span,
expr: ShellOrExecExpr::Exec(parse_string_array(field)?),
}),
Rule::cmd_shell => Ok(CmdInstruction {
span,
expr: ShellOrExecExpr::Shell(parse_any_breakable(field)?),
}),
_ => Err(unexpected_token(field)),
}
}
pub fn into_shell(self) -> Option<BreakableString> {
self.expr.into_shell()
}
pub fn as_shell(&self) -> Option<&BreakableString> {
self.expr.as_shell()
}
pub fn into_exec(self) -> Option<StringArray> {
self.expr.into_exec()
}
pub fn as_exec(&self) -> Option<&StringArray> {
self.expr.as_exec()
}
}
impl<'a> TryFrom<&'a Instruction> for &'a CmdInstruction {
type Error = Error;
fn try_from(instruction: &'a Instruction) -> std::result::Result<Self, Self::Error> {
if let Instruction::Cmd(c) = instruction {
Ok(c)
} else {
Err(Error::ConversionError {
from: format!("{:?}", instruction),
to: "CmdInstruction".into()
})
}
}
}
#[cfg(test)]
mod tests {
use indoc::indoc;
use pretty_assertions::assert_eq;
use super::*;
use crate::Span;
use crate::test_util::*;
#[test]
fn cmd_basic() -> Result<()> {
assert_eq!(
parse_single(r#"CMD echo "hello world""#, Rule::cmd)?
.as_cmd().unwrap()
.as_shell().unwrap(),
&BreakableString::new((4, 22))
.add_string((4, 22), "echo \"hello world\"")
);
assert_eq!(
parse_single(r#"CMD echo "hello world""#, Rule::cmd)?
.as_cmd().unwrap()
.as_shell().unwrap()
.to_string(),
"echo \"hello world\""
);
assert_eq!(
parse_single(r#"cmd ["echo", "hello world"]"#, Rule::cmd)?,
CmdInstruction {
span: Span::new(0, 27),
expr: ShellOrExecExpr::Exec(StringArray {
span: Span::new(4, 27),
elements: vec![SpannedString {
span: Span::new(5, 11),
content: "echo".to_string(),
}, SpannedString {
span: Span::new(13, 26),
content: "hello world".to_string(),
}]
}),
}.into()
);
Ok(())
}
#[test]
fn cmd_multiline_exec() -> Result<()> {
assert_eq!(
parse_single(r#"cmd\
[\
"echo", \
"hello world"\
]"#, Rule::cmd)?,
CmdInstruction {
span: Span::new(0, 66),
expr: ShellOrExecExpr::Exec(StringArray {
span: Span::new(13, 66),
elements: vec![SpannedString {
span: Span::new(24, 30),
content: "echo".to_string(),
}, SpannedString {
span: Span::new(42, 55),
content: "hello world".to_string(),
}]
}),
}.into()
);
Ok(())
}
#[test]
fn cmd_multiline_shell() -> Result<()> {
assert_eq!(
parse_single(indoc!(r#"
cmd echo \
"hello world"
"#), Rule::cmd)?
.as_cmd().unwrap()
.as_shell().unwrap(),
&BreakableString::new((4, 26))
.add_string((4, 9), "echo ")
.add_string((11, 26), " \"hello world\"")
);
assert_eq!(
parse_single(indoc!(r#"
cmd echo \
"hello world"
"#), Rule::cmd)?
.as_cmd().unwrap()
.as_shell().unwrap()
.to_string(),
"echo \"hello world\""
);
Ok(())
}
#[test]
fn cmd_multiline_shell_large() -> Result<()> {
let ins = parse_single(
indoc!(r#"
cmd set -x && \
# lorem ipsum
echo "hello world" && \
# dolor sit amet,
# consectetur \
# adipiscing elit, \
# sed do eiusmod
# tempor incididunt ut labore
echo foo && \
echo 'bar' \
&& echo baz \
# et dolore magna aliqua."#),
Rule::cmd
)?.into_cmd().unwrap().into_shell().unwrap();
assert_eq!(
ins,
BreakableString::new((4, 266))
.add_string((4, 14), "set -x && ")
.add_comment((20, 33), "# lorem ipsum")
.add_string((34, 60), " echo \"hello world\" && ")
.add_comment((66, 83), "# dolor sit amet,")
.add_comment((88, 103), "# consectetur \\")
.add_comment((108, 128), "# adipiscing elit, \\")
.add_comment((133, 149), "# sed do eiusmod")
.add_comment((154, 183), "# tempor incididunt ut labore")
.add_string((184, 200), " echo foo && ")
.add_string((202, 217), " echo 'bar' ")
.add_string((219, 235), " && echo baz ")
.add_comment((241, 266), "# et dolore magna aliqua.")
);
assert_eq!(
ins.to_string(),
r#"set -x && echo "hello world" && echo foo && echo 'bar' && echo baz "#
);
Ok(())
}
}