manage.sh 4.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. #!/bin/sh
  2. BASE_DIR=$(dirname "`readlink -f "$0"`")
  3. PYTHONPATH=$BASE_DIR
  4. SEARX_DIR="$BASE_DIR/searx"
  5. ACTION=$1
  6. cd $BASE_DIR
  7. update_packages() {
  8. pip install -r "$BASE_DIR/requirements.txt"
  9. }
  10. update_dev_packages() {
  11. update_packages
  12. pip install -r "$BASE_DIR/requirements-dev.txt"
  13. }
  14. install_geckodriver() {
  15. echo '[!] Checking geckodriver'
  16. set -e
  17. geckodriver -V 2>1 > /dev/null || NOTFOUND=1
  18. set +e
  19. if [ -z $NOTFOUND ]; then
  20. return
  21. fi
  22. GECKODRIVER_VERSION="v0.18.0"
  23. PLATFORM=`python -c "import platform; print platform.system().lower(), platform.architecture()[0]"`
  24. case $PLATFORM in
  25. "linux 32bit" | "linux2 32bit") ARCH="linux32";;
  26. "linux 64bit" | "linux2 64bit") ARCH="linux64";;
  27. "windows 32 bit") ARCH="win32";;
  28. "windows 64 bit") ARCH="win64";;
  29. "mac 64bit") ARCH="macos";;
  30. esac
  31. GECKODRIVER_URL="https://github.com/mozilla/geckodriver/releases/download/$GECKODRIVER_VERSION/geckodriver-$GECKODRIVER_VERSION-$ARCH.tar.gz";
  32. if [ -z "$VIRTUAL_ENV" ]; then
  33. echo "geckodriver can't be installed because VIRTUAL_ENV is not set, you should download it from\n $GECKODRIVER_URL"
  34. exit
  35. else
  36. echo "Installing $VIRTUAL_ENV from\n $GECKODRIVER_URL"
  37. FILE=`mktemp`
  38. wget "$GECKODRIVER_URL" -qO $FILE && tar xz -C $VIRTUAL_ENV/bin/ -f $FILE geckodriver
  39. rm $FILE
  40. chmod 777 $VIRTUAL_ENV/bin/geckodriver
  41. fi
  42. }
  43. pep8_check() {
  44. echo '[!] Running pep8 check'
  45. # ignored rules:
  46. # E402 module level import not at top of file
  47. # W503 line break before binary operator
  48. pep8 --exclude=searx/static --max-line-length=120 --ignore "E402,W503" "$SEARX_DIR" "$BASE_DIR/tests"
  49. }
  50. unit_tests() {
  51. echo '[!] Running unit tests'
  52. python -m nose2 -s "$BASE_DIR/tests/unit"
  53. }
  54. py_test_coverage() {
  55. echo '[!] Running python test coverage'
  56. PYTHONPATH=`pwd` python -m nose2 -C --coverage "$SEARX_DIR" -s "$BASE_DIR/tests/unit"
  57. coverage report
  58. coverage html
  59. }
  60. robot_tests() {
  61. echo '[!] Running robot tests'
  62. PYTHONPATH=`pwd` python "$SEARX_DIR/testing.py" robot
  63. }
  64. tests() {
  65. set -e
  66. pep8_check
  67. unit_tests
  68. install_geckodriver
  69. robot_tests
  70. set +e
  71. }
  72. build_style() {
  73. lessc --clean-css="--s1 --advanced --compatibility=ie9" "$BASE_DIR/searx/static/$1" "$BASE_DIR/searx/static/$2"
  74. }
  75. styles() {
  76. echo '[!] Building styles'
  77. build_style themes/legacy/less/style.less themes/legacy/css/style.css
  78. build_style themes/legacy/less/style-rtl.less themes/legacy/css/style-rtl.css
  79. build_style themes/courgette/less/style.less themes/courgette/css/style.css
  80. build_style themes/courgette/less/style-rtl.less themes/courgette/css/style-rtl.css
  81. build_style less/bootstrap/bootstrap.less css/bootstrap.min.css
  82. build_style themes/oscar/less/pointhi/oscar.less themes/oscar/css/pointhi.min.css
  83. build_style themes/oscar/less/logicodev/oscar.less themes/oscar/css/logicodev.min.css
  84. build_style themes/pix-art/less/style.less themes/pix-art/css/style.css
  85. build_style themes/simple/less/style.less themes/simple/css/searx.min.css
  86. build_style themes/simple/less/style-rtl.less themes/simple/css/searx-rtl.min.css
  87. }
  88. grunt_packages() {
  89. echo '[!] Grunt packages: install dependencies'
  90. cd $BASE_DIR/searx/static/themes/oscar
  91. npm install
  92. cd $BASE_DIR/searx/static/themes/simple
  93. npm install
  94. }
  95. grunt_build() {
  96. echo '[!] Grunt build : oscar theme'
  97. grunt --gruntfile "$SEARX_DIR/static/themes/oscar/gruntfile.js"
  98. echo '[!] Grunt build : simple theme'
  99. grunt --gruntfile "$SEARX_DIR/static/themes/simple/gruntfile.js"
  100. }
  101. locales() {
  102. pybabel compile -d "$SEARX_DIR/translations"
  103. }
  104. help() {
  105. [ -z "$1" ] || printf "Error: $1\n"
  106. echo "Searx manage.sh help
  107. Commands
  108. ========
  109. grunt_packages - Download & install dependencies
  110. grunt_build - Build js files
  111. help - This text
  112. locales - Compile locales
  113. pep8_check - Pep8 validation
  114. py_test_coverage - Unit test coverage
  115. robot_tests - Run selenium tests
  116. styles - Build less files
  117. tests - Run all python tests (pep8, unit, robot)
  118. unit_tests - Run unit tests
  119. update_dev_packages - Check & update development and production dependency changes
  120. update_packages - Check & update dependency changes
  121. install_geckodriver - Download & install geckodriver if not already installed (required for robot_tests)
  122. "
  123. }
  124. [ "$(command -V "$ACTION" | grep ' function$')" = "" ] \
  125. && help "action not found" \
  126. || $ACTION