aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-05-18 01:58:50 +0000
committerFuwn <[email protected]>2022-05-18 01:58:50 +0000
commiteefb7681d3d78c04d927eaf069b600b0d5812efb (patch)
treefb08c84c36a5d10a7eb4a6204a332a2372640f69 /tests
parentfix: global clippy lint fixes (diff)
downloadgerm-eefb7681d3d78c04d927eaf069b600b0d5812efb.tar.xz
germ-eefb7681d3d78c04d927eaf069b600b0d5812efb.zip
ci(tests): add ast tests
Diffstat (limited to 'tests')
-rw-r--r--tests/ast.rs70
1 files changed, 70 insertions, 0 deletions
diff --git a/tests/ast.rs b/tests/ast.rs
new file mode 100644
index 0000000..2fbc1d3
--- /dev/null
+++ b/tests/ast.rs
@@ -0,0 +1,70 @@
+// This file is part of Germ <https://github.com/gemrest/germ>.
+// Copyright (C) 2022-2022 Fuwn <[email protected]>
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, version 3.
+//
+// This program is distributed in the hope that it will be useful, but
+// WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+//
+// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// SPDX-License-Identifier: GPL-3.0-only
+
+#[cfg(test)]
+mod test {
+ use germ::ast::{build, Node};
+
+ #[test]
+ fn build_multi_line_list_with_text() {
+ assert_eq!(
+ build("* item1\n* 2\nhi text"),
+ vec![
+ Node::List(vec!["item1".to_string(), "2".to_string()]),
+ Node::Text("hi text".to_string()),
+ ],
+ );
+ }
+
+ #[test]
+ fn build_multi_line_vec() {
+ assert_eq!(
+ build("=> /test hi\nhi there\n> hi"),
+ vec![
+ Node::Link {
+ to: "/test".to_string(),
+ text: Some("hi".to_string()),
+ },
+ Node::Text("hi there".to_string()),
+ Node::Blockquote("hi".to_string()),
+ ],
+ );
+ }
+
+ #[test]
+ fn build_single_0th_from_vec() {
+ assert_eq!(
+ build("=> /test hi"),
+ vec![Node::Link {
+ to: "/test".to_string(),
+ text: Some("hi".to_string()),
+ }],
+ );
+ }
+
+ #[test]
+ fn build_single_element() {
+ assert_eq!(
+ build("=> /test hi").get(0).unwrap(),
+ &Node::Link {
+ to: "/test".to_string(),
+ text: Some("hi".to_string()),
+ },
+ );
+ }
+}