diff options
Diffstat (limited to 'users/Profpatsch/netstring/tests.nix')
-rw-r--r-- | users/Profpatsch/netstring/tests.nix | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/users/Profpatsch/netstring/tests.nix b/users/Profpatsch/netstring/tests.nix new file mode 100644 index 000000000000..26853e13eebe --- /dev/null +++ b/users/Profpatsch/netstring/tests.nix @@ -0,0 +1,45 @@ +{ depot, lib, pkgs, python-netstring, toNetstring, toNetstringKeyVal }: + +let + imports = { + inherit (depot.users.Profpatsch) + writers + ; + }; + + python-netstring-test = imports.writers.python3 "python-netstring" { + libraries = p: [ + python-netstring + ]; + } '' + import netstring + + def assEq(left, right): + assert left == right, "{} /= {}".format(str(left), str(right)) + + assEq( + netstring.read_netstring(b"""${toNetstring "hi!"}"""), + (b"hi!", b"") + ) + + assEq( + netstring.read_netstring_key_val( + b"""${toNetstringKeyVal { foo = "42"; }}""" + ), + (b'foo', b'42', b"") + ) + + assEq( + netstring.read_netstring_key_val_list( + b"""${toNetstringKeyVal { foo = "42"; bar = "hi"; }}""" + ), + { b'foo': b'42', b'bar': b'hi' } + ) + + ''; + +in { + inherit + python-netstring-test + ; +} |