tvl-depot/users/Profpatsch/netstring/tests.nix
Profpatsch cc3f54a0ee feat(users/Profpatsch/netstring): add rust to_netstring
Change-Id: I539472fc9ebc3ebe6c34e01fde9c08d3e2e3558c
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2431
Reviewed-by: Profpatsch <mail@profpatsch.de>
Tested-by: BuildkiteCI
2021-01-23 15:33:50 +00:00

61 lines
1.4 KiB
Nix

{ depot, lib, pkgs, python-netstring, rust-netstring, toNetstring, toNetstringKeyVal }:
let
python-netstring-test = depot.users.Profpatsch.writers.python3 {
name = "python-netstring-test";
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' }
)
'';
rust-netstring-test = depot.users.Profpatsch.writers.rustSimple {
name = "rust-netstring-test";
dependencies = [
rust-netstring
];
} ''
extern crate netstring;
fn main() {
assert_eq!(
std::str::from_utf8(&netstring::to_netstring(b"hello")).unwrap(),
r##"${toNetstring "hello"}"##
);
assert_eq!(
std::str::from_utf8(&netstring::to_netstring("".as_bytes())).unwrap(),
r##"${toNetstring ""}"##
);
}
'';
in {
inherit
python-netstring-test
rust-netstring-test
;
}