memories/scripts/ci-test.sh

53 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
# Build vue
cd apps/memories
npm i
cp ../../vue.zip .
unzip -qq vue.zip
cd ../..
# Speed up loads
php occ app:disable comments
php occ app:disable contactsinteraction:
php occ app:disable dashboard
php occ app:disable weather_status
php occ app:disable user_status
php occ app:disable updatenotification
php occ app:disable systemtags
php occ app:disable files_sharing
# Enable apps
php occ app:enable --force viewer
php occ app:enable --force memories
set -e
# Set debug mode and start dev server
php occ config:system:set --type bool --value true debug
php -S localhost:8080 &
# Get test photo files
cd data/admin/files
wget https://github.com/pulsejet/memories-assets/raw/main/Files.zip
unzip Files.zip
cd ../../..
# Setup
cd apps/memories
make exiftool
cd ../..
# Index
php occ files:scan --all
php occ memories:index
# Set admin timeline path
php occ user:setting admin memories timelinePath "/Photos"
# Run e2e tests
cd apps/memories
sudo npx playwright install-deps chromium
npm run e2e
cd ../..