mirror of
https://github.com/ceph/ceph
synced 2025-02-03 08:53:38 +00:00
a232d273c1
... filesystems other than 'cephfs'. It is not required to set 'allow_new_snaps' to True to allow snapshot to be created on a filesystem. Remove that setting. Remove 'fs/snaps/snaptest-0.sh' that is racy when running in parallel on an another client that mounted the same file system. Include a similar test in qa/tasks/cephfs/test_snapshots.py Signed-off-by: Ramana Raja <rraja@redhat.com>
40 lines
1.0 KiB
Bash
Executable File
40 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "making directory tree and files"
|
|
mkdir -p 1/a/b/c/
|
|
echo "i'm file1" > 1/a/file1
|
|
echo "i'm file2" > 1/a/b/file2
|
|
echo "i'm file3" > 1/a/b/c/file3
|
|
echo "snapshotting"
|
|
mkdir 1/.snap/foosnap1
|
|
mkdir 2
|
|
echo "moving tree"
|
|
mv 1/a 2
|
|
echo "checking snapshot contains tree..."
|
|
dir1=`find 1/.snap/foosnap1 | wc -w`
|
|
dir2=`find 2/ | wc -w`
|
|
#diff $dir1 $dir2 && echo "Success!"
|
|
test $dir1==$dir2 && echo "Success!"
|
|
echo "adding folder and file to tree..."
|
|
mkdir 2/a/b/c/d
|
|
echo "i'm file 4!" > 2/a/b/c/d/file4
|
|
echo "snapshotting tree 2"
|
|
mkdir 2/.snap/barsnap2
|
|
echo "comparing snapshots"
|
|
dir1=`find 1/.snap/foosnap1/ -maxdepth 2 | wc -w`
|
|
dir2=`find 2/.snap/barsnap2/ -maxdepth 2 | wc -w`
|
|
#diff $dir1 $dir2 && echo "Success!"
|
|
test $dir1==$dir2 && echo "Success!"
|
|
echo "moving subtree to first folder"
|
|
mv 2/a/b/c 1
|
|
echo "comparing snapshots and new tree"
|
|
dir1=`find 1/ | wc -w`
|
|
dir2=`find 2/.snap/barsnap2/a/b/c | wc -w`
|
|
#diff $dir1 $dir2 && echo "Success!"
|
|
test $dir1==$dir2 && echo "Success!"
|
|
rmdir 1/.snap/*
|
|
rmdir 2/.snap/*
|
|
echo "OK"
|