1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
use super::core::Parser;
use super::core::Rec;
use super::core::Result;
use crate::syntax::Command;
impl Parser<'_, '_> {
pub async fn command(&mut self) -> Result<Rec<Option<Command>>> {
match self.simple_command().await? {
Rec::AliasSubstituted => Ok(Rec::AliasSubstituted),
Rec::Parsed(None) => self
.full_compound_command()
.await
.map(|c| Rec::Parsed(c.map(Command::Compound))),
Rec::Parsed(Some(c)) => self
.short_function_definition(c)
.await
.map(|c| Rec::Parsed(Some(c))),
}
}
}
#[cfg(test)]
mod tests {
use super::super::lex::Lexer;
use super::super::lex::TokenId::EndOfInput;
use super::*;
use crate::source::Source;
use assert_matches::assert_matches;
use futures_executor::block_on;
#[test]
fn parser_command_simple() {
let mut lexer = Lexer::from_memory("foo < bar", Source::Unknown);
let aliases = Default::default();
let mut parser = Parser::new(&mut lexer, &aliases);
let result = block_on(parser.command()).unwrap().unwrap().unwrap();
assert_matches!(result, Command::Simple(c) => {
assert_eq!(c.to_string(), "foo <bar");
});
let next = block_on(parser.peek_token()).unwrap();
assert_eq!(next.id, EndOfInput);
}
#[test]
fn parser_command_compound() {
let mut lexer = Lexer::from_memory("(foo) < bar", Source::Unknown);
let aliases = Default::default();
let mut parser = Parser::new(&mut lexer, &aliases);
let result = block_on(parser.command()).unwrap().unwrap().unwrap();
assert_matches!(result, Command::Compound(c) => {
assert_eq!(c.to_string(), "(foo) <bar");
});
let next = block_on(parser.peek_token()).unwrap();
assert_eq!(next.id, EndOfInput);
}
#[test]
fn parser_command_function() {
let mut lexer = Lexer::from_memory("fun () ( echo )", Source::Unknown);
let aliases = Default::default();
let mut parser = Parser::new(&mut lexer, &aliases);
let result = block_on(parser.command()).unwrap().unwrap().unwrap();
assert_matches!(result, Command::Function(f) => {
assert_eq!(f.to_string(), "fun() (echo)");
});
let next = block_on(parser.peek_token()).unwrap();
assert_eq!(next.id, EndOfInput);
}
#[test]
fn parser_command_eof() {
let mut lexer = Lexer::from_memory("", Source::Unknown);
let aliases = Default::default();
let mut parser = Parser::new(&mut lexer, &aliases);
let option = block_on(parser.command()).unwrap().unwrap();
assert_eq!(option, None);
}
}