perkeep/clients/curl/example.sh

43 lines
1.3 KiB
Bash
Raw Normal View History

#!/bin/bash
# Example client accesses to blob server using curl.
2010-11-05 05:10:20 +00:00
# Configuration variables here:
BSHOST=localhost:3179/bs
2010-11-05 05:10:20 +00:00
BSUSER=user
2010-11-05 05:01:01 +00:00
BSPASS=foo
2010-11-05 05:10:20 +00:00
# Shorter name for curl auth param:
AUTH=$BSUSER:$BSPASS
# Stat -- 200 response
curl -u $AUTH -d camliversion=1 http://$BSHOST/camli/stat
# Upload -- 200 response
2010-11-05 05:10:20 +00:00
curl -u $AUTH -v -L \
-F sha1-126249fd8c18cbb5312a5705746a2af87fba9538=@./test_data.txt \
#<the url returned by stat>
# Put with bad blob_ref parameter -- 400 response
curl -v -L \
-F sha1-22a7fdd575f4c3e7caa3a55cc83db8b8a6714f0f=@./test_data.txt \
#<the url returned by stat>
# Get present -- the blob
2010-11-05 05:10:20 +00:00
curl -u $AUTH -v http://$BSHOST/camli/sha1-126249fd8c18cbb5312a5705746a2af87fba9538
# Get missing -- 404
2010-11-05 05:10:20 +00:00
curl -u $AUTH -v http://$BSHOST/camli/sha1-22a7fdd575f4c3e7caa3a55cc83db8b8a6714f0f
# Check present -- 200 with only headers
2010-11-05 05:10:20 +00:00
curl -u $AUTH -I http://$BSHOST/camli/sha1-126249fd8c18cbb5312a5705746a2af87fba9538
# Check missing -- 404 with empty list response
2010-11-05 05:01:01 +00:00
curl -I http://$BSHOST/camli/sha1-22a7fdd575f4c3e7caa3a55cc83db8b8a6714f0f
# List -- 200 with list of blobs (just one)
2010-11-05 05:10:20 +00:00
curl -v -u $AUTH http://$BSHOST/camli/enumerate-blobs?limit=1
# List offset -- 200 with list of no blobs
2010-11-05 05:10:20 +00:00
curl -v -u $AUTH http://$BSHOST/camli/enumerate-blobs?after=sha1-126249fd8c18cbb5312a5705746a2af87fba9538