diff options
author | Alex Crichton <alex@alexcrichton.com> | 2016-05-12 11:26:18 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2016-05-12 11:26:18 -0700 |
commit | 50dfc8ac79bf8a18a03a8b9f53a520335c1fd2d0 (patch) | |
tree | ef364868ff5502e6636dd627a0b668f733d442e3 | |
parent | ef60313a5db3adc5cd5cc5d15fa6008aea34ca4e (diff) | |
parent | 848227c6053019918b726fa7356f5dfb87861420 (diff) | |
download | milf-rs-50dfc8ac79bf8a18a03a8b9f53a520335c1fd2d0.tar.gz milf-rs-50dfc8ac79bf8a18a03a8b9f53a520335c1fd2d0.zip |
Merge pull request #94 from zofrex/require-newline-after-table
Require newline after table
-rw-r--r-- | src/lib.rs | 2 | ||||
-rw-r--r-- | src/parser.rs | 10 | ||||
-rw-r--r-- | tests/invalid.rs | 4 | ||||
-rw-r--r-- | tests/invalid/key-after-array.toml | 1 | ||||
-rw-r--r-- | tests/invalid/key-after-table.toml | 1 |
5 files changed, 17 insertions, 1 deletions
@@ -447,7 +447,7 @@ mod tests { #[test] fn lookup_advanced_table() { - let value: Value = r#"[table."name.other"] value = "my value""#.parse().unwrap(); + let value: Value = "[table.\"name.other\"]\nvalue = \"my value\"".parse().unwrap(); let looked = value.lookup(r#"table."name.other".value"#).unwrap(); assert_eq!(*looked, Value::String(String::from("my value"))); } diff --git a/src/parser.rs b/src/parser.rs index 2a156e3..8c689f8 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -271,6 +271,16 @@ impl<'a> Parser<'a> { values: BTreeMap::new(), defined: true, }; + self.ws(); + self.comment(); + if !self.newline() { + self.errors.push(ParserError { + lo: start, + hi: start, + desc: format!("expected a newline after table definition"), + }); + return None + } if !self.values(&mut table) { return None } if array { self.insert_array(&mut ret, &keys, Value::Table(table), diff --git a/tests/invalid.rs b/tests/invalid.rs index 829e795..63e4de8 100644 --- a/tests/invalid.rs +++ b/tests/invalid.rs @@ -50,6 +50,10 @@ test!(float_no_leading_zero, include_str!("invalid/float-no-leading-zero.toml")); test!(float_no_trailing_digits, include_str!("invalid/float-no-trailing-digits.toml")); +test!(key_after_array, + include_str!("invalid/key-after-array.toml")); +test!(key_after_table, + include_str!("invalid/key-after-table.toml")); test!(key_empty, include_str!("invalid/key-empty.toml")); test!(key_hash, diff --git a/tests/invalid/key-after-array.toml b/tests/invalid/key-after-array.toml new file mode 100644 index 0000000..5c1a1b0 --- /dev/null +++ b/tests/invalid/key-after-array.toml @@ -0,0 +1 @@ +[[agencies]] owner = "S Cjelli" diff --git a/tests/invalid/key-after-table.toml b/tests/invalid/key-after-table.toml new file mode 100644 index 0000000..4bc8213 --- /dev/null +++ b/tests/invalid/key-after-table.toml @@ -0,0 +1 @@ +[history] guard = "sleeping" |