summaryrefslogtreecommitdiff
path: root/t/tests/webcoso.t
blob: 6712effe9b8bede732d5f17879e0fe894dc2313b (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
# -*- mode: perl6 -*- 
use Test;
use File::Temp;
use WebCoso;
 
sub cmp-files($a,$b,$msg) {
    ok(
        ($a.defined and $b.defined and $a.keys eqv $b.keys and
         [andmap {
                my $cmp = $b{$_};
                if $cmp ~~ Callable {
                    $cmp.($a{$_})
                }
                else {
                    $a{$_}.abspath eq $cmp.abspath
                }
            }, $a.keys),
        $msg,
    );
}
 
my $testdir = tempdir.IO;
my $srcdir = $testdir.child('src');
my $destdir = $testdir.child('dst');
 
my $one = $srcdir.child('one');
 
$one.mkdir;
$destdir.mkdir;
 
$one.child('document.it.txt').spurt('foo');
$one.child('document.en.txt').spurt('foo');
 
my $wc = WebCoso.new(:$srcdir,:$destdir);
 
subtest {
    my %one = $wc.get-files('one','document','txt');
 
    cmp-files(
        %one,
        {
            it => $one.child('document.it.txt'),
            en => $one.child('document.en.txt'),
        },
        'get-files works',
    );
}, 'getting files';
 
subtest {
    $wc.put-file('two','document','en','txt',
                 'something');
    my %two = $wc.get-files('two','document','txt');
 
    cmp-files(
        %two,
        {
            en => { $^f.abspath ~~ /two\/document\.en\.txt$/ },
        },
        'put-file works',
    );
 
}, 'putting files';
 
done-testing;