summaryrefslogtreecommitdiffstats
path: root/packages/svgbob/tests/simple_shapes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'packages/svgbob/tests/simple_shapes.rs')
-rw-r--r--packages/svgbob/tests/simple_shapes.rs66
1 files changed, 66 insertions, 0 deletions
diff --git a/packages/svgbob/tests/simple_shapes.rs b/packages/svgbob/tests/simple_shapes.rs
new file mode 100644
index 0000000..152dd9b
--- /dev/null
+++ b/packages/svgbob/tests/simple_shapes.rs
@@ -0,0 +1,66 @@
+use svgbob::Settings;
+
+#[test]
+fn rect1() {
+ let bob = r#"
+ +----------+
+ | |
+ +----------+
+ "#;
+
+ let expected = r#"<svg xmlns="http://www.w3.org/2000/svg" width="136" height="80">
+ <rect x="36" y="24" width="88" height="32" class="solid nofill" rx="0"></rect>
+</svg>"#;
+
+ let mut settings = Settings::default();
+ settings.include_backdrop = false;
+ settings.include_styles = false;
+ settings.include_defs = false;
+ let svg = svgbob::to_svg_with_settings(bob, &settings);
+ println!("{}", svg);
+ assert_eq!(expected, svg);
+}
+
+#[test]
+fn escaped_shape() {
+ let bob = r#"
+ "+----------+"
+ "| |"
+ "+----------+"
+ "#;
+
+ let expected = r#"<svg xmlns="http://www.w3.org/2000/svg" width="16" height="32">
+ <text x="34" y="28" >+----------+</text>
+ <text x="34" y="44" >| |</text>
+ <text x="34" y="60" >+----------+</text>
+</svg>"#;
+
+ let mut settings = Settings::default();
+ settings.include_backdrop = false;
+ settings.include_styles = false;
+ settings.include_defs = false;
+ let svg = svgbob::to_svg_with_settings(bob, &settings);
+ println!("{}", svg);
+ assert_eq!(expected, svg);
+}
+
+#[test]
+fn rounded_rect() {
+ let bob = r#"
+ .----------.
+ | |
+ '----------'
+ "#;
+
+ let expected = r#"<svg xmlns="http://www.w3.org/2000/svg" width="136" height="80">
+ <rect x="36" y="24" width="88" height="32" class="solid nofill" rx="4"></rect>
+</svg>"#;
+
+ let mut settings = Settings::default();
+ settings.include_backdrop = false;
+ settings.include_styles = false;
+ settings.include_defs = false;
+ let svg = svgbob::to_svg_with_settings(bob, &settings);
+ println!("{}", svg);
+ assert_eq!(expected, svg);
+}