From: Tom Sollers Date: Tue, 21 Oct 2025 15:52:07 +0000 (+0100) Subject: qa: Add a new test to test-erasure-code-plugins.sh to test for new health warn X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=256e27764aeed0d14957ab3fe0215330507615a4;p=ceph.git qa: Add a new test to test-erasure-code-plugins.sh to test for new health warn This commit adds a new test to test-erasure-code-plugins.sh that tests for the health warning caused by having a erasure-code-profile with the blaum-roth technique and a w+1 value that is not prime. Fixes: http://tracker.ceph.com/issues/64419 Signed-off-by: Tom Sollers --- diff --git a/qa/standalone/erasure-code/test-erasure-code-plugins.sh b/qa/standalone/erasure-code/test-erasure-code-plugins.sh index 677a76686393..05a8696dda2c 100755 --- a/qa/standalone/erasure-code/test-erasure-code-plugins.sh +++ b/qa/standalone/erasure-code/test-erasure-code-plugins.sh @@ -115,4 +115,29 @@ function TEST_ec_profile_warning() { teardown $dir || return 1 } +function TEST_ec_profile_blaum_roth_warning() { + local dir=$1 + + setup $dir || return 1 + run_mon $dir a || return 1 + run_mgr $dir x || return 1 + for id in $(seq 0 2) ; do + run_osd $dir $id || return 1 + done + create_rbd_pool || return 1 + wait_for_clean || return 1 + + echo "Starting test for blaum-roth profile health warning" + + #Check that the health warn for incorrect blaum-roth profiles is correct. + ceph osd erasure-code-profile set prof-${plugin} plugin=jerasure k=3 m=1 technique=blaum_roth w=7 --yes-i-really-mean-it --force + CEPH_ARGS='' ceph --admin-daemon $(get_asok_path mon.a) log flush || return 1 + sleep 10 + grep -F "1 or more EC profiles have a w value such that w+1 is not prime. This can result in data corruption" $dir/mon.a.log || return 1 + grep -F "w+1=8 for the EC profile prof-${plugin} is not prime and could lead to data corruption" $dir/mon.a.log || return 1 + + teardown $dir || return 1 + return 0 +} + main test-erasure-code-plugins "$@"