summaryrefslogtreecommitdiff
path: root/tests/script_test.sh
diff options
context:
space:
mode:
authorTobias Brox <tobias@redpill-linpro.com>2020-06-05 01:15:38 +0200
committerTobias Brox <tobias@redpill-linpro.com>2020-06-05 01:15:38 +0200
commit202825548178e61e2abc0d956ae386bb250cc919 (patch)
tree77e03a2813997169389d63675083d9e37e2430cd /tests/script_test.sh
parent863bf6f280d6d714c46deb55c93e99106083e8cc (diff)
downloadcalendar-cli-202825548178e61e2abc0d956ae386bb250cc919.zip
make it possible to create a calendar, resolves https://github.com/tobixen/calendar-cli/issues/69 - automated tests towards radicale, ref https://github.com/tobixen/calendar-cli/issues/68
Diffstat (limited to 'tests/script_test.sh')
-rwxr-xr-xtests/script_test.sh116
1 files changed, 0 insertions, 116 deletions
diff --git a/tests/script_test.sh b/tests/script_test.sh
deleted file mode 100755
index 3a3f91a..0000000
--- a/tests/script_test.sh
+++ /dev/null
@@ -1,116 +0,0 @@
-#!/bin/bash
-
-## Sorry - I have no idea how much of this script is compatible with
-## POSIX shell and how much is bashisms ... been using bash for too
-## long.
-
-set -e
-
-## SETUP
-
-error() {
- echo "$1"
- exit 255
-}
-
-[ -x ./calendar-cli.py ] && calendar_cli=./calendar-cli.py
-[ -x ../calendar-cli.py ] && calendar_cli=../calendar-cli.py
-[ -z "$calendar_cli" ] && error "couldn't find ./calendar_cli.py nor ../calendar_cli.py"
-
-calendar_cli() {
- echo " $calendar_cli $@"
- output=$($calendar_cli "$@")
- [ -z "$output" ] || echo $output
-}
-
-## CLEANUP from earlier failed test runs
-
-for uid in $($calendar_cli calendar agenda --from-time=2010-10-10 --agenda-days=4 --event-template='{uid}') ; do calendar_cli calendar delete --event-uid=$uid ; done
-calendar_cli todo --categories scripttest delete
-
-## TESTING
-
-## EVENTS
-
-echo "## testing $calendar_cli"
-echo "## this is a very simple test script without advanced error handling"
-echo "## if this test script doesn't output 'all tests completed' in the end, something went wrong"
-
-echo "## Attempting to add a past event at 2010-10-09 20:00:00, 2 hours duration"
-calendar_cli calendar add '2010-10-09 20:00:00+2h' 'testing testing'
-uid=$(echo $output | perl -ne '/uid=(.*)$/ && print $1')
-echo "## Attempting to add a past event at 2010-10-10 20:00:00, CET (1 hour duration is default)"
-calendar_cli calendar add '2010-10-10 20:00:00+01:00' 'testing testing' --set-description='this is a test calendar event' --set-location='Москва'
-uid2=$(echo $output | perl -ne '/uid=(.*)$/ && print $1')
-echo "## Attempting to add a past event at 2010-10-11 20:00:00, CET, 3h duration"
-calendar_cli calendar add '2010-10-11 20:00:00+01:00+3h' 'testing testing'
-uid3=$(echo $output | perl -ne '/uid=(.*)$/ && print $1')
-echo "## OK: Added the event, uid is $uid"
-
-echo "## Taking out the agenda for 2010-10-09 + four days"
-calendar_cli calendar agenda --from-time=2010-10-09 --agenda-days=4 --event-template='{description} {location}'
-echo $output | { grep -q 'this is a test calendar event Москва' && echo "## OK: found the event" ; } || echo "## FAIL: didn't find the event"
-
-echo "## Taking out the agenda for 2010-10-10, with uid"
-calendar_cli calendar agenda --from-time=2010-10-10 --agenda-days=1 --event-template='{dtstart} {uid}'
-echo $output | { grep -q $uid2 && echo "## OK: found the UID" ; } || echo "## FAIL: didn't find the UID"
-
-echo "## Deleting events with uid $uid $uid1 $uid2"
-calendar_cli calendar delete --event-uid=$uid
-calendar_cli calendar delete --event-uid=$uid2
-calendar_cli calendar delete --event-uid=$uid3
-echo "## Searching again for the deleted event"
-calendar_cli calendar agenda --from-time=2010-10-10 --agenda-days=1
-echo $output | { grep -q 'testing testing' && echo "## FAIL: still found the event" ; } || echo "## OK: didn't find the event"
-
-## TODOS / TASK LISTS
-
-echo "## Attempting to add a task with category 'scripttest'"
-calendar_cli todo add --set-categories scripttest "edit this task"
-uidtodo1=$(echo $output | perl -ne '/uid=(.*)$/ && print $1')
-
-echo "## Listing out all tasks with category set to 'scripttest'"
-calendar_cli todo --categories scripttest list
-[ $(echo "$output" | wc -l) == 1 ] && echo "## OK: found the todo item we just added and nothing more"
-
-echo "## Editing the task"
-calendar_cli todo --categories scripttest edit --set-summary "editing" --add-categories "scripttest2"
-
-echo "## Verifying that the edits got through"
-calendar_cli todo --categories scripttest list
-[ $(echo "$output" | wc -l) == 1 ] && echo "## OK: found the todo item we just edited and nothing more"
-calendar_cli todo --categories scripttest2 list
-[ $(echo "$output" | wc -l) == 1 ] && echo "## OK: found the todo item we just edited and nothing more"
-calendar_cli todo --comment editing list
-[ $(echo "$output" | wc -l) == 1 ] && echo "## OK: found the todo item we just edited and nothing more"
-
-echo "## Complete the task"
-calendar_cli todo --categories scripttest complete
-calendar_cli todo --categories scripttest list
-[ -z "$output" ] && echo "## OK: todo-item is done"
-calendar_cli todo --todo-uid $uidtodo1 delete
-
-## parent-child relationships
-echo "## Going to add three todo-items with children/parent relationships"
-calendar_cli todo add --set-categories scripttest "this is a grandparent"
-uidtodo2=$(echo $output | perl -ne '/uid=(.*)$/ && print $1')
-calendar_cli todo --categories=scripttest add --set-categories scripttest --is-child "this is a parent and a child"
-uidtodo3=$(echo $output | perl -ne '/uid=(.*)$/ && print $1')
-calendar_cli todo --categories=scripttest add --set-categories scripttest --is-child "this task has two parents"
-uidtodo4=$(echo $output | perl -ne '/uid=(.*)$/ && print $1')
-calendar_cli todo --categories scripttest list
-[ $(echo "$output" | wc -l) == 3 ] && echo "## OK: found three tasks"
-calendar_cli todo --hide-parents --categories scripttest list
-[ $(echo "$output" | wc -l) == 1 ] && echo "## OK: found only one task now"
-echo "## Going to complete the children task"
-calendar_cli todo --hide-parents --categories scripttest complete
-calendar_cli todo --hide-parents --categories scripttest list
-[ $(echo "$output" | wc -l) == 1 ] && echo "## OK: found only one task now"
-calendar_cli todo --hide-parents --categories scripttest complete
-calendar_cli todo --hide-parents --categories scripttest list
-[ $(echo "$output" | wc -l) == 1 ] && echo "## OK: found only one task now"
-calendar_cli todo --hide-parents --categories scripttest complete
-calendar_cli todo --hide-parents --categories scripttest list
-[ -z "$output" ] && echo "## OK: found no tasks now"
-
-echo "## all tests completed"