aboutsummaryrefslogtreecommitdiff
path: root/t/01-reading.t
blob: ba9bd552e804069ff597001fda26c0e04fc77b24 (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
#! /usr/bin/env raku

use v6.d;
use Test;

plan 4;

use Config;
use Config::Parser::NULL;

my Config $config = Config.new;
my Config::Parser $null-parser = Config::Parser::NULL;

throws-like { $config.read('t/files/none'.IO) }, X::Config::FileNotFound, 'Reading nonexisting file';

my %hash = %(
    "a" => "a",
    "b" => %(
        "c" => "test",
    ),
);

$config.read: %hash;

is-deeply $config.get, %hash, 'Correctly sets hash';

$config.=read: %(
    "b" => %(
        "d" => "another",
    ),
);

is-deeply $config.get, %(
    "a" => "a",
    "b" => %(
        "c" => "test",
        "d" => "another",
    ),
), "Correctly merges new hash into existing config";

subtest {
    plan 3;

    ok $config.read(("t/files/config".IO, "t/files/config.yaml".IO), $null-parser, :skip-not-found), "All paths exist";
    ok $config.read(("t/files/config".IO, "t/files/none".IO, "t/files/config.yaml".IO), $null-parser, :skip-not-found), "At least one path exists";
    ok $config.read(("t/files/none".IO, "t/files/none.yaml".IO), $null-parser, :skip-not-found), "No paths exist";
}, "Read with a List of paths";