rustypaste/fixtures/test-url-encode/test.sh

22 lines
466 B
Bash

#!/usr/bin/env bash
content="test data for URL encoding"
setup() {
echo "$content" > "test file with spaces.txt"
}
run_test() {
# Upload the file and get the URL.
encoded_url=$(curl -s -F "file=@test file with spaces.txt" localhost:8000)
# Ensure the URL is encoded correctly.
expected_url="http://localhost:8000/test%20file%20with%20spaces.txt"
test "$encoded_url" = "$expected_url"
}
teardown() {
rm "test file with spaces.txt"
rm -r upload
}