Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Request listing of all files
    1. The existing files in the system should be listed with their size and a count of pillars where the file is present.
      1. bash bin/bitmag.sh get-file-ids -c integrationtest1
List known file
  1. Request listing of a single existing file, see it comes back in the listing with the correct file size and pillar count.
      1. bash bin/bitmag.sh get-file-ids -c integrationtest1 -i DefaultFile
List unknown file
  1. Request listing of a file not in the collection.
    1. An empty list is returned.
      1. bash bin/bitmag.sh get-file-ids -c integrationtest1 -i This_File_Does_Not_Exist_10293847857675684930201
Missing files
  1. Put a new file to a single pillar
  2. Request listing of all files.
    1. Verify that the new file is present on all pillars and that they agree on its size.
  3. Delete the file on one or more pillars.
  4. Request listing of all files.
    1. Verify that the pillar count for the file reflects the number of deletions, and that the original set of files is still listed.
  5. Delete the new file on the remaining pillars.
    1. Verify that the all the pillars only list the original files.

...