diff options
Diffstat (limited to 'src/test/cli/monmaptool/rm-nonexistent.t')
-rw-r--r-- | src/test/cli/monmaptool/rm-nonexistent.t | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/test/cli/monmaptool/rm-nonexistent.t b/src/test/cli/monmaptool/rm-nonexistent.t new file mode 100644 index 00000000..ef680d85 --- /dev/null +++ b/src/test/cli/monmaptool/rm-nonexistent.t @@ -0,0 +1,25 @@ + $ monmaptool --create --add foo 2.3.4.5:6789 mymonmap + monmaptool: monmap file mymonmap + monmaptool: generated fsid [0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12} (re) + monmaptool: writing epoch 0 to mymonmap (1 monitors) + + $ ORIG_FSID="$(monmaptool --print mymonmap|grep ^fsid)" + + $ monmaptool --rm doesnotexist mymonmap + monmaptool: monmap file mymonmap + monmaptool: removing doesnotexist + monmaptool: map does not contain doesnotexist + monmaptool -h for usage + [1] + + $ monmaptool --print mymonmap + monmaptool: monmap file mymonmap + epoch 0 + fsid [0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12} (re) + last_changed \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d+ (re) + created \d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d+ (re) + min_mon_release 0 (unknown) + 0: v1:2.3.4.5:6789/0 mon.foo + + $ NEW_FSID="$(monmaptool --print mymonmap|grep ^fsid)" + $ [ "$ORIG_FSID" = "$NEW_FSID" ] |