浏览代码

Add some missing options unit tests

Benjamin Sago 4 年之前
父节点
当前提交
402ef1e207
共有 1 个文件被更改,包括 52 次插入0 次删除
  1. 52 0
      src/options.rs

+ 52 - 0
src/options.rs

@@ -645,6 +645,46 @@ mod test {
         });
     }
 
+    #[test]
+    fn edns_and_tweaks() {
+        let options = Options::getopts(&[ "dom.ain", "--edns", "show", "-Z", "authentic" ]).unwrap();
+        assert_eq!(options.requests.edns, UseEDNS::SendAndShow);
+        assert_eq!(options.requests.protocol_tweaks.set_authentic_flag, true);
+    }
+
+    #[test]
+    fn short_mode() {
+        let tf = TextFormat { format_durations: true };
+        let options = Options::getopts(&[ "dom.ain", "--short" ]).unwrap();
+        assert_eq!(options.format, OutputFormat::Short(tf));
+
+        let tf = TextFormat { format_durations: false };
+        let options = Options::getopts(&[ "dom.ain", "--short", "--seconds" ]).unwrap();
+        assert_eq!(options.format, OutputFormat::Short(tf));
+    }
+
+    #[test]
+    fn json_output() {
+        let options = Options::getopts(&[ "dom.ain", "--json" ]).unwrap();
+        assert_eq!(options.format, OutputFormat::JSON);
+    }
+
+    #[test]
+    fn specific_txid() {
+        let options = Options::getopts(&[ "dom.ain", "--txid", "1234" ]).unwrap();
+        assert_eq!(options.requests.txid_generator,
+                   TxidGenerator::Sequence(1234));
+    }
+
+    #[test]
+    fn all_transport_types() {
+        use crate::connect::TransportType::*;
+
+        let options = Options::getopts(&[ "dom.ain", "--https", "--tls", "--tcp", "--udp" ]).unwrap();
+        assert_eq!(options.requests.inputs.transport_types,
+                   vec![ HTTPS, TLS, TCP, UDP ]);
+    }
+
     // invalid options tests
 
     #[test]
@@ -671,6 +711,18 @@ mod test {
                    OptionsResult::InvalidOptions(OptionsError::InvalidTxid("0x10000".into())));
     }
 
+    #[test]
+    fn invalid_edns() {
+        assert_eq!(Options::getopts(&[ "--edns=yep" ]),
+                   OptionsResult::InvalidOptions(OptionsError::InvalidEDNS("yep".into())));
+    }
+
+    #[test]
+    fn invalid_tweaks() {
+        assert_eq!(Options::getopts(&[ "-Zsleep" ]),
+                   OptionsResult::InvalidOptions(OptionsError::InvalidTweak("sleep".into())));
+    }
+
     #[test]
     fn opt() {
         assert_eq!(Options::getopts(&[ "OPT", "lookup.dog" ]),