Corpus structure
- archive/$version/forward_incompat/$type
- Checkout a clean repo (best not to do this where you normally work):
- git clone ceph.git
- cd ceph
- git submodule update --init --recursive
- Build with flag to dump objects to
/tmp/foo
:
- rm -rf /tmp/foo ; mkdir /tmp/foo
- do_cmake.sh -DCMAKE_CXX_FLAGS="-DENCODE_DUMP_PATH=/tmp/foo"
- cd build
- make
- Use as much functionality of the cluster as you can, to exercise as many object encoder methods as possible:
- bin/ceph osd pool create mypool
- bin/rados -p mypool bench 10 write -b 123
- bin/ceph osd in 0
- bin/init-ceph restart osd.1
- for f in ../qa/workunits/cls/*.sh ; do PATH="bin:$PATH" $f ; done
- PATH="bin:$PATH" ../qa/workunits/rados/test.sh
- bin/ceph_test_librbd
- bin/ceph_test_libcephfs
- bin/init-ceph restart mds.a
- ../qa/workunits/rgw/run-s3tests.sh
- ../src/stop.sh
- Import the corpus (this will take a few minutes):
- ../src/test/encoding/import.sh /tmp/foo `bin/ceph-dencoder version` ../ceph-object-corpus/archive
- ../src/test/encoding/import-generated.sh ../ceph-object-corpus/archive
- Prune it! There will be a bazillion copies of various objects, and we only want a representative sample.:
- Commit it to the corpus repo and push:
- pushd ../ceph-object-corpus
- git checkout -b wip-new
- git add archive/`../build/bin/ceph-dencoder version`
- git commit -m `../build/bin/ceph-dencoder version`
- git remote add cc git@github.com:ceph/ceph-object-corpus.git
- git push cc wip-new
- popd
- cd my/regular/tree
- cd ceph-object-corpus
- git fetch origin
- git checkout wip-new
- cd ../build
- ctest -R readable.sh