#!/bin/bash # Setup the sync parameters for user X and create a few folders and notes to # allow sharing. Also calls the API to create the test users and clear the data. # ---------------------------------------------------------------------------------- # For example, to setup a user for sharing, and another as recipient with E2EE # enabled: # ---------------------------------------------------------------------------------- # ./runForTesting.sh 1 createUsers,createData,reset,e2ee,sync && ./runForTesting.sh 2 reset,e2ee,sync && ./runForTesting.sh 1 # ---------------------------------------------------------------------------------- # First user has E2EE, but second one doesn't: # ---------------------------------------------------------------------------------- # ./runForTesting.sh 1 createUsers,createData,reset,e2ee,sync && ./runForTesting.sh 2 reset,sync && ./runForTesting.sh 1 # ---------------------------------------------------------------------------------- # Without E2EE: # ---------------------------------------------------------------------------------- # ./runForTesting.sh 1 createUsers,createData,reset,sync && ./runForTesting.sh 2 reset,sync && ./runForTesting.sh 1 # ---------------------------------------------------------------------------------- # To create two client profiles, in sync, both used by the same user: # ---------------------------------------------------------------------------------- # ./runForTesting.sh 1 createUsers,createData,reset,sync && ./runForTesting.sh 1a reset,sync && ./runForTesting.sh 1 # ./runForTesting.sh 1a set -e SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" ROOT_DIR="$SCRIPT_DIR/../.." if [ "$1" == "" ]; then echo "User number is required" exit 1 fi USER_NUM=$1 USER_PROFILE_NUM=$USER_NUM if [ "$USER_NUM" = "1a" ]; then USER_NUM=1 USER_PROFILE_NUM=1a fi if [ "$USER_NUM" = "1b" ]; then USER_NUM=1 USER_PROFILE_NUM=1b fi COMMANDS=($(echo $2 | tr "," "\n")) PROFILE_DIR=~/.config/joplindev-desktop-$USER_PROFILE_NUM CMD_FILE="$SCRIPT_DIR/runForTestingCommands-$USER_PROFILE_NUM.txt" rm -f "$CMD_FILE" touch "$CMD_FILE" for CMD in "${COMMANDS[@]}" do if [[ $CMD == "createUsers" ]]; then curl --data '{"action": "createTestUsers"}' -H 'Content-Type: application/json' http://api.joplincloud.local:22300/api/debug elif [[ $CMD == "createUserDeletions" ]]; then curl --data '{"action": "createUserDeletions"}' -H 'Content-Type: application/json' http://api.joplincloud.local:22300/api/debug elif [[ $CMD == "createData" ]]; then echo 'mkbook "shared"' >> "$CMD_FILE" echo 'mkbook "other"' >> "$CMD_FILE" echo 'use "shared"' >> "$CMD_FILE" echo 'mknote "note 1"' >> "$CMD_FILE" echo 'mknote "note 2"' >> "$CMD_FILE" elif [[ $CMD == "reset" ]]; then USER_EMAIL="user$USER_NUM@example.com" rm -rf "$PROFILE_DIR" # rm -rf "$HOME/Temp/SyncTestE2EE copy" # rsync -a "$HOME/Temp/SyncTestE2EE/" "$HOME/Temp/SyncTestE2EE copy/" # echo "config sync.target 2" >> "$CMD_FILE" # echo "config sync.2.path \"$HOME/Temp/SyncTestE2EE copy/\"" >> "$CMD_FILE" echo "config keychain.supported 0" >> "$CMD_FILE" echo "config sync.target 10" >> "$CMD_FILE" # echo "config sync.10.path http://api.joplincloud.local:22300" >> "$CMD_FILE" echo "config sync.10.username $USER_EMAIL" >> "$CMD_FILE" echo "config sync.10.password 111111" >> "$CMD_FILE" elif [[ $CMD == "e2ee" ]]; then echo "e2ee enable --password 111111" >> "$CMD_FILE" elif [[ $CMD == "sync" ]]; then echo "sync --use-lock 0" >> "$CMD_FILE" # elif [[ $CMD == "generatePpk" ]]; then # echo "e2ee generate-ppk --password 111111" >> "$CMD_FILE" # echo "sync" >> "$CMD_FILE" else echo "Unknown command: $CMD" exit 1 fi done cd "$ROOT_DIR/packages/app-cli" yarn start --profile "$PROFILE_DIR" batch "$CMD_FILE" if [[ $COMMANDS != "" ]]; then exit 0 fi cd "$ROOT_DIR/packages/app-desktop" yarn start --profile "$PROFILE_DIR"