summaryrefslogtreecommitdiff
path: root/test.pl
blob: 54884bada4129b8f3b9ea1f0612949535c24941e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/usr/bin/perl

use strict;
use warnings;
use Test::More;
use AnyEvent;

use_ok 'Tanja';


# Simple matching tests.
# (Doesn't test a whole lot, since the semantics aren't final yet anyway).
ok  Tanja::match([], []);
ok  Tanja::match([], [1, 2, 3]);
ok  Tanja::match([], [undef]);
ok !Tanja::match([undef], []);
ok  Tanja::match([undef], [1]);
ok  Tanja::match([1], [1]);
ok  Tanja::match([1], [1, "b"]);
ok  Tanja::match([1], [undef, 3]);
ok !Tanja::match([2], [1]);


# Simple single-session test
{
	my $serv = Tanja::Server->new;
	isa_ok $serv, 'Tanja::Server';
	my $ses = $serv->session;
	isa_ok $ses, 'Tanja::Session';
	my $done = AnyEvent->condvar;
	my $n = 0;
	my $n2 = 0;
	$ses->reg([], sub {
		my($t, $r) = @_;
		isa_ok $r, 'Tanja::ReturnPath';
		ok $r->null;
		is_deeply $t, [$n];
		ok $n <= 5;
		if(++$n == 5) {
			$ses->close;
			$done->send;
		}
	});
	$ses->reg_once([undef], sub {
		my($t, $r) = @_;
		isa_ok $r, 'Tanja::ReturnPath';
		ok $r->null;
		is_deeply $t, [0];
		$n2++;
	});
	$ses->send([$_]) for (0..10);
	is $n, 0; # Make sure that ->send() doesn't run the callbacks. The event system should.
	is $n2, 0;
	$done->recv;
	is $n, 5;
	is $n2, 1;
}


# Simple double-session test with return-path
{
	my $serv = Tanja::Server->new;
	my $a = $serv->session;
	my $b = $serv->session;
	my $done = AnyEvent->condvar;
	$a->reg(["msg"], sub {
		my($t, $r) = @_;
		isa_ok $r, 'Tanja::ReturnPath';
		ok !$r->null;
		$r->reply(['b', 9]);
		is_deeply $t, ["msg", 'a'];
		$a->send(["b"]);
	});
	$b->reg(["b"], sub {
		my($t, $r) = @_;
		isa_ok $r, 'Tanja::ReturnPath';
		ok $r->null;
		is_deeply $t, ["b"];
		$done->send;
	});
	my $n = 0;
	$b->send(["msg", 'a'], sub {
		!$n++ ? is_deeply $_[0], ['b', 9] : ok !@_;
	});
	$done->recv;
	is $n, 2;
}


done_testing();

# vim:noet:sw=4:ts=4