mirror of
https://github.com/nushell/nushell
synced 2024-11-14 17:07:07 +00:00
Add some tests
This commit is contained in:
parent
c1240f214c
commit
2675ad9304
2 changed files with 75 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
use std::ops::{Index, IndexMut};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
lex, lite_parse,
|
lex, lite_parse,
|
||||||
parser_state::{Type, VarId},
|
parser_state::{Type, VarId},
|
||||||
|
@ -97,7 +99,31 @@ pub enum Import {}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Block {
|
pub struct Block {
|
||||||
stmts: Vec<Statement>,
|
pub stmts: Vec<Statement>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Block {
|
||||||
|
pub fn len(&self) -> usize {
|
||||||
|
self.stmts.len()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn is_empty(&self) -> bool {
|
||||||
|
self.stmts.is_empty()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Index<usize> for Block {
|
||||||
|
type Output = Statement;
|
||||||
|
|
||||||
|
fn index(&self, index: usize) -> &Self::Output {
|
||||||
|
&self.stmts[index]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl IndexMut<usize> for Block {
|
||||||
|
fn index_mut(&mut self, index: usize) -> &mut Self::Output {
|
||||||
|
&mut self.stmts[index]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for Block {
|
impl Default for Block {
|
||||||
|
@ -583,3 +609,47 @@ impl ParserWorkingSet {
|
||||||
(output, error)
|
(output, error)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use crate::Signature;
|
||||||
|
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
pub fn parse_int() {
|
||||||
|
let mut working_set = ParserWorkingSet::new(None);
|
||||||
|
|
||||||
|
let (block, err) = working_set.parse_source(b"3");
|
||||||
|
|
||||||
|
assert!(err.is_none());
|
||||||
|
assert!(block.len() == 1);
|
||||||
|
assert!(matches!(
|
||||||
|
block[0],
|
||||||
|
Statement::Expression(Expression {
|
||||||
|
expr: Expr::Int(3),
|
||||||
|
..
|
||||||
|
})
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
pub fn parse_call() {
|
||||||
|
let mut working_set = ParserWorkingSet::new(None);
|
||||||
|
|
||||||
|
let sig = Signature::build("foo").named("--jazz", SyntaxShape::Int, "jazz!!", Some('j'));
|
||||||
|
working_set.add_decl((b"foo").to_vec(), sig);
|
||||||
|
|
||||||
|
let (block, err) = working_set.parse_source(b"foo");
|
||||||
|
|
||||||
|
assert!(err.is_none());
|
||||||
|
assert!(block.len() == 1);
|
||||||
|
assert!(matches!(
|
||||||
|
block[0],
|
||||||
|
Statement::Expression(Expression {
|
||||||
|
expr: Expr::Call(Call { decl_id: 0, .. }),
|
||||||
|
..
|
||||||
|
})
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -53,6 +53,10 @@ impl ParserState {
|
||||||
// Take the mutable reference and extend the permanent state from the working set
|
// Take the mutable reference and extend the permanent state from the working set
|
||||||
if let Some(this) = std::sync::Arc::<ParserState>::get_mut(this) {
|
if let Some(this) = std::sync::Arc::<ParserState>::get_mut(this) {
|
||||||
this.files.extend(working_set.files);
|
this.files.extend(working_set.files);
|
||||||
|
this.decls.extend(working_set.decls);
|
||||||
|
this.vars.extend(working_set.vars);
|
||||||
|
|
||||||
|
//FIXME: add scope frame merging
|
||||||
} else {
|
} else {
|
||||||
panic!("Internal error: merging working set should always succeed");
|
panic!("Internal error: merging working set should always succeed");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue