mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
41 lines
1.1 KiB
Bash
Executable File
41 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
source _unit-test/_test_setup.sh
|
|
source install/dc-detect-version.sh
|
|
$dcb --force-rm web
|
|
$dc pull nginx
|
|
|
|
export SETUP_JS_SDK_ASSETS=1
|
|
|
|
source install/setup-js-sdk-assets.sh
|
|
|
|
sdk_files=$($dcr --no-deps nginx ls -lah /var/www/js-sdk/)
|
|
sdk_tree=$($dcr --no-deps nginx tree /var/www/js-sdk/ | tail -n 1)
|
|
non_empty_file_count=$($dcr --no-deps nginx find /var/www/js-sdk/ -type f -size +1k | wc -l)
|
|
|
|
# `sdk_files` should contains 5 lines, '4.*', '5.*', '6.*', `7.*` and `8.*`
|
|
echo $sdk_files
|
|
total_directories=$(echo "$sdk_files" | grep -c '[45678]\.[0-9]*\.[0-9]*$')
|
|
echo $total_directories
|
|
test "5" == "$total_directories"
|
|
echo "Pass"
|
|
|
|
# `sdk_tree` should output "6 directories, 23 files"
|
|
echo "$sdk_tree"
|
|
test "6 directories, 23 files" == "$(echo "$sdk_tree")"
|
|
echo "Pass"
|
|
|
|
# Files should all be >1k (ensure they are not empty)
|
|
echo "Testing file sizes"
|
|
test "23" == "$non_empty_file_count"
|
|
echo "Pass"
|
|
|
|
# Files should be owned by the root user
|
|
echo "Testing file ownership"
|
|
directory_owners=$(echo "$sdk_files" | awk '$3=="root" { print $0 }' | wc -l)
|
|
echo "$directory_owners"
|
|
test "$directory_owners" == "8"
|
|
echo "Pass"
|
|
|
|
report_success
|