summaryrefslogtreecommitdiffstats
path: root/t/shared-letters.t
blob: 238ed23930d5baf4725b5e9f87d7eb7ace078ead (plain) (blame)
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
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;

use Games::Word qw(shared_letters shared_letters_by_position);

my @tests = (
    {a => "abcde", b => "edcba", sl => 5, slbp => 1,
     slbp_full => [undef, undef, 'c', undef, undef]},
    {a => "",      b => "",      sl => 0, slbp => 0,
     slbp_full => []},
    {a => "",      b => "abcde", sl => 0, slbp => 0,
     slbp_full => [undef, undef, undef, undef, undef]},
    {a => "aaa",   b => "aa",    sl => 2, slbp => 2,
     slbp_full => ['a', 'a', undef]},
    {a => "abc",   b => "abcde", sl => 3, slbp => 3,
     slbp_full => ['a', 'b', 'c', undef, undef]},
    {a => "cde",   b => "abcde", sl => 3, slbp => 0,
     slbp_full => [undef, undef, undef, undef, undef]},
    {a => "abcba", b => "aabbc", sl => 5, slbp => 2,
     slbp_full => ['a', undef, undef, 'b', undef]},
    {a => "abcde", b => "cdefg", sl => 3, slbp => 0,
     slbp_full => [undef, undef, undef, undef, undef]},
    {a => "bacaa", b => "gabca", sl => 4, slbp => 2,
     slbp_full => [undef, 'a', undef, undef, 'a']},
);

for (@tests) {
    my %test = %$_;
    my ($a, $b) = ($test{a}, $test{b});
    is(shared_letters($a, $b), $test{sl},
       "testing shared_letters: '$a' vs '$b'");
    is(shared_letters_by_position($a, $b), $test{slbp},
       "testing shared_letters_by_position: '$a' vs '$b'");
    is_deeply([shared_letters_by_position($a, $b)], $test{slbp_full},
       "testing shared_letters_by_position (list): '$a' vs '$b'");
}

done_testing;