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
use File;
use BufReader;
use Path;
use *;
// #[test]
// fn check_parse() {
// let dir = Path::new("src/grammar");
// let files = std::fs::read_dir(dir)
// .expect("Failed to read grammar directory")
// .filter_map(Result::ok)
// .map(|os_str| os_str.path())
// .filter(|p| p.is_file())
// .filter(|f| f.extension().unwrap_or_default() == "gbnf")
// .map(File::open)
// .collect::<Vec<_>>();
// assert!(
// !files.is_empty(),
// "No grammar files found in {}",
// dir.canonicalize().unwrap().display()
// );
// for file in files {
// let reader = BufReader::new(file.unwrap());
// let file = std::io::read_to_string(reader).unwrap();
// LlamaGrammar::from_str(&file).unwrap();
// }
// }
// #[test]
// fn check_parse_simple() {
// let parse_state = ParseState::from_str(r#"root ::= "cat""#).unwrap();
// assert_eq!(
// ParseState {
// symbol_ids: BTreeMap::from([("root".to_string(), 0),]),
// rules: vec![vec![
// llama_grammar_element {
// type_: llama_cpp_sys_4::LLAMA_GRETYPE_CHAR,
// value: 'c' as u32,
// },
// llama_grammar_element {
// type_: llama_cpp_sys_4::LLAMA_GRETYPE_CHAR,
// value: 'a' as u32,
// },
// llama_grammar_element {
// type_: llama_cpp_sys_4::LLAMA_GRETYPE_CHAR,
// value: 't' as u32,
// },
// llama_grammar_element {
// type_: llama_cpp_sys_4::LLAMA_GRETYPE_END,
// value: 0,
// }
// ]],
// },
// parse_state
// );
// }
// #[test]
// fn check_parse_char_range() {
// let parse_state = ParseState::from_str(r#"root ::= [a-zA-Z]"#).unwrap();
// assert_eq!(
// ParseState {
// symbol_ids: BTreeMap::from([("root".to_string(), 0),]),
// rules: vec![vec![
// llama_grammar_element {
// type_: llama_cpp_sys_4::LLAMA_GRETYPE_CHAR,
// value: 'a' as u32
// },
// llama_grammar_element {
// type_: llama_cpp_sys_4::LLAMA_GRETYPE_CHAR_RNG_UPPER,
// value: 'z' as u32
// },
// llama_grammar_element {
// type_: llama_cpp_sys_4::LLAMA_GRETYPE_CHAR_ALT,
// value: 'A' as u32
// },
// llama_grammar_element {
// type_: llama_cpp_sys_4::LLAMA_GRETYPE_CHAR_RNG_UPPER,
// value: 'Z' as u32
// },
// llama_grammar_element {
// type_: llama_cpp_sys_4::LLAMA_GRETYPE_END,
// value: 0
// }
// ]]
// },
// parse_state
// );
// }