summaryrefslogtreecommitdiff
path: root/tests/sentinel/tests/15-config-set-config-get.tcl
blob: f9831f8e8664fa45f3cb9ec14d53b50d01139cc0 (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
source "../tests/includes/init-tests.tcl"

test "SENTINEL CONFIG SET and SENTINEL CONFIG GET handles multiple variables" {
    foreach_sentinel_id id {
        assert_equal {OK} [S $id SENTINEL CONFIG SET resolve-hostnames yes announce-port 1234]
    }
    assert_match {*yes*1234*} [S 1 SENTINEL CONFIG GET resolve-hostnames announce-port]
    assert_match {announce-port 1234} [S 1 SENTINEL CONFIG GET announce-port]
}

test "SENTINEL CONFIG GET for duplicate and unknown variables" {
    assert_equal {OK} [S 1 SENTINEL CONFIG SET resolve-hostnames yes announce-port 1234]
    assert_match {resolve-hostnames yes} [S 1 SENTINEL CONFIG GET resolve-hostnames resolve-hostnames does-not-exist]
}

test "SENTINEL CONFIG GET for patterns" {
    assert_equal {OK} [S 1 SENTINEL CONFIG SET loglevel notice announce-port 1234 announce-hostnames yes ]
    assert_match {loglevel notice} [S 1 SENTINEL CONFIG GET log* *level loglevel]
    assert_match {announce-hostnames yes announce-ip*announce-port 1234} [S 1 SENTINEL CONFIG GET announce*]
}

test "SENTINEL CONFIG SET duplicate variables" {
    catch {[S 1 SENTINEL CONFIG SET resolve-hostnames yes announce-port 1234 announce-port 100]} e
    if {![string match "*Duplicate argument*" $e]} {
        fail "Should give wrong arity error"
    }
}

test "SENTINEL CONFIG SET, one option does not exist" {
    foreach_sentinel_id id {
        assert_equal {OK} [S $id SENTINEL CONFIG SET announce-port 111]
        catch {[S $id SENTINEL CONFIG SET does-not-exist yes announce-port 1234]} e
        if {![string match "*Invalid argument*" $e]} {
            fail "Should give Invalid argument error"
        }
    }
    # The announce-port should not be set to 1234 as it was called with a wrong argument
    assert_match {*111*} [S 1 SENTINEL CONFIG GET announce-port]
}

test "SENTINEL CONFIG SET, one option with wrong value" {
    foreach_sentinel_id id {
        assert_equal {OK} [S $id SENTINEL CONFIG SET resolve-hostnames no]
        catch {[S $id SENTINEL CONFIG SET announce-port -1234 resolve-hostnames yes]} e
        if {![string match "*Invalid value*" $e]} {
            fail "Expected to return Invalid value error"
        }
    }
    # The resolve-hostnames should not be set to yes as it was called after an argument with an invalid value
    assert_match {*no*} [S 1 SENTINEL CONFIG GET resolve-hostnames]
}

test "SENTINEL CONFIG SET, wrong number of arguments" {
    catch {[S 1 SENTINEL CONFIG SET resolve-hostnames yes announce-port 1234 announce-ip]} e
    if {![string match "*Missing argument*" $e]} {
        fail "Expected to return Missing argument error"
    }
}