aboutsummaryrefslogtreecommitdiff
path: root/tests/analyzers.rs
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2020-07-24 14:11:51 +0200
committerDaniel Schadt <kingdread@gmx.de>2020-07-24 14:11:51 +0200
commit9d27ec7034f9ad07d8a1d74ab30fdc470de4e02d (patch)
tree9c3927c8345f382a82714d8f38515fb1a2324d11 /tests/analyzers.rs
parentf6717fc45188870341e9b6185ef5f3102f5a96ae (diff)
downloadevtclib-9d27ec7034f9ad07d8a1d74ab30fdc470de4e02d.tar.gz
evtclib-9d27ec7034f9ad07d8a1d74ab30fdc470de4e02d.tar.bz2
evtclib-9d27ec7034f9ad07d8a1d74ab30fdc470de4e02d.zip
add some testing for analyzers
Diffstat (limited to 'tests/analyzers.rs')
-rw-r--r--tests/analyzers.rs31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/analyzers.rs b/tests/analyzers.rs
new file mode 100644
index 0000000..c7ed6bd
--- /dev/null
+++ b/tests/analyzers.rs
@@ -0,0 +1,31 @@
+//! Test for (some) analyzer functions.
+//!
+//! Even if those tests do not test the actual functionality, they ensure that the API is usable.
+
+use evtclib::{Compression, Outcome};
+
+#[test]
+fn test_xera_failed() {
+ let log = evtclib::process_file(
+ "tests/logs/analyzers/xera-failed-20200714.zevtc",
+ Compression::Zip,
+ )
+ .unwrap();
+
+ let analyzer = log.analyzer().expect("No analyzer for Xera!");
+
+ assert_eq!(analyzer.outcome(), Some(Outcome::Failure));
+}
+
+#[test]
+fn test_xera_succeeded() {
+ let log = evtclib::process_file(
+ "tests/logs/analyzers/xera-success-20200714.zevtc",
+ Compression::Zip,
+ )
+ .unwrap();
+
+ let analyzer = log.analyzer().expect("No analyzer for Xera!");
+
+ assert_eq!(analyzer.outcome(), Some(Outcome::Success));
+}