mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-21 11:59:48 -05:00
24 lines
604 B
Bash
Executable file
24 lines
604 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
content="test content"
|
|
|
|
setup() {
|
|
echo "$content" > file
|
|
}
|
|
|
|
run_test() {
|
|
first_file_url=$(curl -s -F "file=@file" -H "expire:1s" localhost:8000)
|
|
second_file_url=$(curl -s -F "file=@file" -H "expire:4s" localhost:8000)
|
|
test "$content" = "$(curl -s $first_file_url)"
|
|
test "$content" = "$(curl -s $second_file_url)"
|
|
sleep 3s
|
|
test "file is not found or expired :(" = "$(curl -s $first_file_url)"
|
|
test "$content" = "$(curl -s $second_file_url)"
|
|
sleep 1s
|
|
test "file is not found or expired :(" = "$(curl -s $second_file_url)"
|
|
}
|
|
|
|
teardown() {
|
|
rm file
|
|
rm -r upload
|
|
}
|