You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.0 KiB

7 years ago
7 years ago
  1. #!/bin/bash
  2. set -e
  3. source $(dirname $0)/helpers.sh
  4. export src=$(mktemp -d /tmp/in-src.XXXXXX)
  5. # set FILE_URL_WITH_LAST_MODIFIED_INFO with a URL of a file whose HTTP HEADER info provides a Last-Modified entry
  6. # to check it do "curl -I -R <url>"
  7. export FILE_URL_WITH_LAST_MODIFIED_INFO=https://s3-us-west-1.amazonaws.com/lsilva-bpws/PCF_usage/pcf-sandbox-usage-from-2016-09-01-to-2016-09-30_1475771124.json
  8. export FILE_NAME_1=pcf-sandbox.json
  9. # set FILE_URL_WITHOUT_LAST_MODIFIED_INFO with a URL of a file whose HTTP HEADER info DOES NOT provide a Last-Modified entry
  10. # to check it do "curl -I -R <url>"
  11. export FILE_URL_WITHOUT_LAST_MODIFIED_INFO=https://raw.githubusercontent.com/pivotalservices/concourse-curl-resource/master/test/data/pivotal-1.0.0.txt
  12. export FILE_NAME_2=ivotal-1.0.0.txt
  13. it_can_get_file_with_date_info() {
  14. jq -n "{
  15. source: {
  16. url: $(echo $FILE_URL_WITH_LAST_MODIFIED_INFO | jq -R .),
  17. filename: $(echo $FILE_NAME_1 | jq -R .)
  18. }
  19. }" | $resource_dir/in "$src" | tee /dev/stderr
  20. }
  21. run it_can_get_file_with_date_info