summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-04-03 22:16:29 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-04-03 22:16:29 +0200
commitf6e38b2c7d6c8268e05481ec989e3dba90b995bb (patch)
tree563823c540d2842ae31228ddf359fad6553be2ce
parent15f3c2d0996349284a02a7e20048b9ce511414e0 (diff)
Add import tests
-rw-r--r--src/import.rs82
1 files changed, 82 insertions, 0 deletions
diff --git a/src/import.rs b/src/import.rs
index 69a0aad..2bd3237 100644
--- a/src/import.rs
+++ b/src/import.rs
@@ -12,3 +12,85 @@ pub fn import<R: Read>(r: R) -> Result<Vec<Task>> {
TaskError::new(TaskErrorKind::ParserError, Some(Box::new(e)))
})
}
+
+#[test]
+fn test_one() {
+ let s = r#"
+[
+ {
+ "id": 1,
+ "description": "some description",
+ "entry": "20150619T165438Z",
+ "modified": "20160327T164007Z",
+ "project": "someproject",
+ "status": "waiting",
+ "tags": ["some", "tags", "are", "here"],
+ "uuid": "8ca953d5-18b4-4eb9-bd56-18f2e5b752f0",
+ "wait": "20160508T164007Z",
+ "urgency": 0.583562
+ }
+]
+"#;
+
+ let imported = import(s.as_bytes());
+ assert!(imported.is_ok());
+ let imported = imported.unwrap();
+ assert!(imported.len() == 1);
+}
+
+#[test]
+fn test_two() {
+ let s = r#"
+[
+ {
+ "id" : 1,
+ "description" : "test",
+ "entry" : "20150619T165438Z",
+ "modified" : "20160327T164007Z",
+ "project" : "self.software",
+ "status" : "waiting",
+ "tags" : ["check", "this", "crate", "out"],
+ "uuid" : "8ca953d5-18b4-4eb9-bd56-18f2e5b752f0",
+ "wait" : "20160508T164007Z",
+ "urgency" : 0.583562
+ },
+ {
+ "id" : 2,
+ "description" : "another test",
+ "entry" : "20150623T181011Z",
+ "modified" : "20160327T163718Z",
+ "priority" : "L",
+ "project" : "studying",
+ "status" : "waiting",
+ "tags" : ["I", "have", "awesome", "kittens"],
+ "uuid" : "54d49ffc-a06b-4dd8-b7d1-db5f50594312",
+ "wait" : "20160508T163718Z",
+ "annotations" : [
+ {
+ "entry" : "20150623T181018Z",
+ "description" : "fooooooobar"
+ }
+ ],
+ "urgency" : 3.16164
+ },
+ {
+ "id" : 3,
+ "description" : "I love kittens, really!",
+ "entry" : "20150919T222323Z",
+ "modified" : "20160327T163718Z",
+ "project" : "getkittens",
+ "status" : "waiting",
+ "tags" : ["kittens", "are", "so", "damn", "awesome"],
+ "uuid" : "08ee8dce-cb97-4c8c-9940-c9a440e90119",
+ "wait" : "20160508T163718Z",
+ "urgency" : 1.07397
+ }
+]
+
+"#;
+
+ let imported = import(s.as_bytes());
+ assert!(imported.is_ok());
+ let imported = imported.unwrap();
+ assert!(imported.len() == 3);
+}