From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/test/cli/crushtool/add-item.t | 133 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 src/test/cli/crushtool/add-item.t (limited to 'src/test/cli/crushtool/add-item.t') diff --git a/src/test/cli/crushtool/add-item.t b/src/test/cli/crushtool/add-item.t new file mode 100644 index 000000000..dc056d005 --- /dev/null +++ b/src/test/cli/crushtool/add-item.t @@ -0,0 +1,133 @@ + $ crushtool -i "$TESTDIR/simple.template" --add-item 0 1.0 device0 --loc host host0 --loc cluster cluster0 -o one > /dev/null + $ crushtool -i one --add-item 1 1.0 device1 --loc host host0 --loc cluster cluster0 -o two > /dev/null + $ crushtool -i two --create-simple-rule simple-rule cluster0 host firstn -o two > /dev/null + $ crushtool -d two + # begin crush map + + # devices + device 0 device0 + device 1 device1 + + # types + type 0 device + type 1 host + type 2 cluster + + # buckets + host host0 { + \tid -2\t\t# do not change unnecessarily (esc) + \t# weight 2.00000 (esc) + \talg straw (esc) + \thash 0\t# rjenkins1 (esc) + \titem device0 weight 1.00000 (esc) + \titem device1 weight 1.00000 (esc) + } + cluster cluster0 { + \tid -1\t\t# do not change unnecessarily (esc) + \t# weight 2.00000 (esc) + \talg straw (esc) + \thash 0\t# rjenkins1 (esc) + \titem host0 weight 2.00000 (esc) + } + + # rules + rule data { + \tid 0 (esc) + \ttype replicated (esc) + \tstep take cluster0 (esc) + \tstep chooseleaf firstn 0 type host (esc) + \tstep emit (esc) + } + rule metadata { + \tid 1 (esc) + \ttype replicated (esc) + \tstep take cluster0 (esc) + \tstep chooseleaf firstn 0 type host (esc) + \tstep emit (esc) + } + rule rbd { + \tid 2 (esc) + \ttype replicated (esc) + \tstep take cluster0 (esc) + \tstep chooseleaf firstn 0 type host (esc) + \tstep emit (esc) + } + rule simple-rule { + \tid 3 (esc) + \ttype replicated (esc) + \tstep take cluster0 (esc) + \tstep chooseleaf firstn 0 type host (esc) + \tstep emit (esc) + } + + # end crush map + $ crushtool -i two --remove-rule simple-rule -o two > /dev/null + $ crushtool -d two + # begin crush map + + # devices + device 0 device0 + device 1 device1 + + # types + type 0 device + type 1 host + type 2 cluster + + # buckets + host host0 { + \tid -2\t\t# do not change unnecessarily (esc) + \t# weight 2.00000 (esc) + \talg straw (esc) + \thash 0\t# rjenkins1 (esc) + \titem device0 weight 1.00000 (esc) + \titem device1 weight 1.00000 (esc) + } + cluster cluster0 { + \tid -1\t\t# do not change unnecessarily (esc) + \t# weight 2.00000 (esc) + \talg straw (esc) + \thash 0\t# rjenkins1 (esc) + \titem host0 weight 2.00000 (esc) + } + + # rules + rule data { + \tid 0 (esc) + \ttype replicated (esc) + \tstep take cluster0 (esc) + \tstep chooseleaf firstn 0 type host (esc) + \tstep emit (esc) + } + rule metadata { + \tid 1 (esc) + \ttype replicated (esc) + \tstep take cluster0 (esc) + \tstep chooseleaf firstn 0 type host (esc) + \tstep emit (esc) + } + rule rbd { + \tid 2 (esc) + \ttype replicated (esc) + \tstep take cluster0 (esc) + \tstep chooseleaf firstn 0 type host (esc) + \tstep emit (esc) + } + + # end crush map + $ crushtool -d two -o final + $ diff final "$TESTDIR/simple.template.two" + $ crushtool -i two --add-item 1 1.0 device1 --loc host host0 --loc cluster cluster0 -o three 2>/dev/null >/dev/null || echo FAIL + FAIL + $ crushtool -i two --remove-item device1 -o four > /dev/null + $ crushtool -d four -o final + $ diff final "$TESTDIR/simple.template.four" + $ crushtool -i two --update-item 1 2.0 osd1 --loc host host1 --loc cluster cluster0 -o five > /dev/null + $ crushtool -d five -o final + $ diff final "$TESTDIR/simple.template.five" + $ crushtool -i five --update-item 1 2.0 osd1 --loc host host1 --loc cluster cluster0 -o six > /dev/null + $ crushtool -i five --show-location 1 + cluster\tcluster0 (esc) + host\thost1 (esc) + $ crushtool -d six -o final + $ diff final "$TESTDIR/simple.template.five" -- cgit v1.2.3