summaryrefslogtreecommitdiffstats
path: root/qa/standalone/osd/bad-inc-map.sh
blob: cc3cf27cc136054d71e0dcf7a13882d18bccab16 (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
#!/usr/bin/env bash

source $CEPH_ROOT/qa/standalone/ceph-helpers.sh

mon_port=$(get_unused_port)

function run() {
    local dir=$1
    shift

    export CEPH_MON="127.0.0.1:$mon_port"
    export CEPH_ARGS
    CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
    CEPH_ARGS+="--mon-host=$CEPH_MON "
    set -e

    local funcs=${@:-$(set | sed -n -e 's/^\(TEST_[0-9a-z_]*\) .*/\1/p')}
    for func in $funcs ; do
        setup $dir || return 1
	$func $dir || return 1
        teardown $dir || return 1
    done
}

function TEST_bad_inc_map() {
    local dir=$1

    run_mon $dir a
    run_mgr $dir x
    run_osd $dir 0
    run_osd $dir 1
    run_osd $dir 2

    ceph config set osd.2 osd_inject_bad_map_crc_probability 1

    # osd map churn
    create_pool foo 8
    ceph osd pool set foo min_size 1
    ceph osd pool set foo min_size 2

    sleep 5

    # make sure all the OSDs are still up
    TIMEOUT=10 wait_for_osd up 0
    TIMEOUT=10 wait_for_osd up 1
    TIMEOUT=10 wait_for_osd up 2

    # check for the signature in the log
    grep "injecting map crc failure" $dir/osd.2.log || return 1
    grep "bailing because last" $dir/osd.2.log || return 1

    echo success

    delete_pool foo
    kill_daemons $dir || return 1
}

main bad-inc-map "$@"

# Local Variables:
# compile-command: "make -j4 && ../qa/run-standalone.sh bad-inc-map.sh"
# End: