aboutsummaryrefslogtreecommitdiff
path: root/test-suite/tests/invalid-misc.rs
diff options
context:
space:
mode:
authorAndres Suarez <zertosh@gmail.com>2019-07-28 16:56:22 +0000
committerAndres Suarez <zertosh@gmail.com>2019-07-28 12:58:26 -0400
commit2a9df8afb951592252d5319c646fdd99ec9891c3 (patch)
tree4ae6080dae6b1c70d958f62d32cda275ebb20648 /test-suite/tests/invalid-misc.rs
parent844a1a4651d6b77a5b48159348d9cccbd8f4c88f (diff)
downloadmilf-rs-2a9df8afb951592252d5319c646fdd99ec9891c3.tar.gz
milf-rs-2a9df8afb951592252d5319c646fdd99ec9891c3.zip
Fully expand error messages in tests
Diffstat (limited to 'test-suite/tests/invalid-misc.rs')
-rw-r--r--test-suite/tests/invalid-misc.rs56
1 files changed, 38 insertions, 18 deletions
diff --git a/test-suite/tests/invalid-misc.rs b/test-suite/tests/invalid-misc.rs
index 5c7f779..a4e7740 100644
--- a/test-suite/tests/invalid-misc.rs
+++ b/test-suite/tests/invalid-misc.rs
@@ -1,28 +1,48 @@
extern crate toml;
+macro_rules! bad {
+ ($toml:expr, $msg:expr) => {
+ match $toml.parse::<toml::Value>() {
+ Ok(s) => panic!("parsed to: {:#?}", s),
+ Err(e) => assert_eq!(e.to_string(), $msg),
+ }
+ };
+}
+
#[test]
fn bad() {
- fn bad(s: &str) {
- assert!(s.parse::<toml::Value>().is_err());
- }
-
- bad("a = 01");
- bad("a = 1__1");
- bad("a = 1_");
- bad("''");
- bad("a = 9e99999");
+ bad!("a = 01", "invalid number at line 1");
+ bad!("a = 1__1", "invalid number at line 1");
+ bad!("a = 1_", "invalid number at line 1");
+ bad!("''", "empty table key found at line 1");
+ bad!("a = 9e99999", "invalid number at line 1");
- bad("a = \"\u{7f}\"");
- bad("a = '\u{7f}'");
+ bad!(
+ "a = \"\u{7f}\"",
+ "invalid character in string: `\\u{7f}` at line 1"
+ );
+ bad!(
+ "a = '\u{7f}'",
+ "invalid character in string: `\\u{7f}` at line 1"
+ );
- bad("a = -0x1");
- bad("a = 0x-1");
+ bad!("a = -0x1", "invalid number at line 1");
+ bad!("a = 0x-1", "failed to parse datetime for key `a`");
// Dotted keys.
- bad("a.b.c = 1
+ bad!(
+ "a.b.c = 1
a.b = 2
- ");
- bad("a = 1
- a.b = 2");
- bad("a = {k1 = 1, k1.name = \"joe\"}")
+ ",
+ "duplicate key: `b` for key `a`"
+ );
+ bad!(
+ "a = 1
+ a.b = 2",
+ "dotted key attempted to extend non-table type at line 1"
+ );
+ bad!(
+ "a = {k1 = 1, k1.name = \"joe\"}",
+ "dotted key attempted to extend non-table type at line 1"
+ );
}