mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 10:37:41 +08:00
59 lines
1.5 KiB
Bash
Executable File
59 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Requirements:
|
|
# - critcmp. See: https://github.com/BurntSushi/critcmp
|
|
# - curl
|
|
|
|
# Usage
|
|
# $ bash compare.sh json_file1 json_file1
|
|
# ex: bash compare.sh songs_main_09a4321.json songs_geosearch_24ec456.json
|
|
|
|
# Checking that critcmp is installed
|
|
command -v critcmp > /dev/null 2>&1
|
|
if [[ "$?" -ne 0 ]]; then
|
|
echo 'You must install critcmp to make this script working.'
|
|
echo '$ cargo install critcmp'
|
|
echo 'See: https://github.com/BurntSushi/critcmp'
|
|
exit 1
|
|
fi
|
|
|
|
if [[ $# -ne 2 ]]
|
|
then
|
|
echo 'Need 2 arguments.'
|
|
echo 'Usage: '
|
|
echo ' $ ./compare.sh file_to_download1 file_to_download2'
|
|
echo 'Ex:'
|
|
echo ' $ ./compare.sh songs_main_09a4321.json songs_geosearch_24ec456.json'
|
|
exit 1
|
|
fi
|
|
|
|
file1="$1"
|
|
file2="$2"
|
|
s3_url='https://milli-benchmarks.fra1.digitaloceanspaces.com/critcmp_results'
|
|
file1_s3_url="$s3_url/$file1"
|
|
file2_s3_url="$s3_url/$file2"
|
|
file1_local_path="/tmp/$file1"
|
|
file2_local_path="/tmp/$file2"
|
|
|
|
if [[ ! -f "$file1_local_path" ]]; then
|
|
curl "$file1_s3_url" -O "$file1_local_path"
|
|
if [[ "$?" -ne 0 ]]; then
|
|
echo 'curl command failed.'
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "$file1 already present in /tmp, no need to download."
|
|
fi
|
|
|
|
if [[ ! -f "$file2_local_path" ]]; then
|
|
curl "$file2_s3_url" -O "$file2_local_path"
|
|
if [[ "$?" -ne 0 ]]; then
|
|
echo 'curl command failed.'
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "$file2 already present in /tmp, no need to download."
|
|
fi
|
|
|
|
critcmp --color always "$file1_local_path" "$file2_local_path"
|