From 1da22249bd65ffeb6de1382d0a39da9240e63091 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 8 Aug 2019 22:20:00 +0100 Subject: test: Add some simple tests for type-checks Does not currently test check failures, which makes it sort of not as useful as you'd think. --- yants-tests.nix | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 yants-tests.nix (limited to 'yants-tests.nix') diff --git a/yants-tests.nix b/yants-tests.nix new file mode 100644 index 000000000000..8847758ced8a --- /dev/null +++ b/yants-tests.nix @@ -0,0 +1,48 @@ +with (import ./yants.nix {}); +with builtins; + +# Note: Derivations are not included in the tests below as they cause +# issues with deepSeq. + +deepSeq rec { + # Test that all primitive types match + primitives = [ + (int 15) + (bool false) + (float 13.37) + (string "Hello!") + (function (x: x * 2)) + ]; + + # Test that polymorphic types work as intended + poly = [ + (option int null) + (list string [ "foo" "bar" ]) + (either int float 42) + ]; + + # Test that structures work as planned. + person = struct "person" { + name = string; + age = int; + + contact = option (struct { + email = string; + phone = option string; + }); + }; + + testPerson = person { + name = "Brynhjulf"; + age = 42; + contact.email = "brynhjulf@yants.nix"; + }; + + # Test enum definitions & matching + colour = enum "colour" [ "red" "blue" "green" ]; + testMatch = colour.match "red" { + red = "It is in fact red!"; + blue = throw "It should not be blue!"; + green = throw "It should not be green!"; + }; +} "All tests passed!\n" -- cgit 1.4.1