File: bulk.t

package info (click to toggle)
task 2.3.0%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,728 kB
  • ctags: 4,813
  • sloc: cpp: 34,267; perl: 18,509; python: 298; sh: 257; makefile: 73; ruby: 32
file content (155 lines) | stat: -rwxr-xr-x 7,602 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#! /usr/bin/env perl
################################################################################
## taskwarrior - a command line task list manager.
##
## Copyright 2006-2014, Paul Beckingham, Federico Hernandez.
##
## Permission is hereby granted, free of charge, to any person obtaining a copy
## of this software and associated documentation files (the "Software"), to deal
## in the Software without restriction, including without limitation the rights
## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
## copies of the Software, and to permit persons to whom the Software is
## furnished to do so, subject to the following conditions:
##
## The above copyright notice and this permission notice shall be included
## in all copies or substantial portions of the Software.
##
## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
## OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
## THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
## LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
## OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
## SOFTWARE.
##
## http://www.opensource.org/licenses/mit-license.php
##
################################################################################

use strict;
use warnings;
use Test::More tests => 44;

# Ensure environment has no influence.
delete $ENV{'TASKDATA'};
delete $ENV{'TASKRC'};

# Create the rc file.
if (open my $fh, '>', 'bulk.rc')
{
  print $fh "data.location=.\n",
            "bulk=3\n";
  close $fh;
  ok (-r 'bulk.rc', 'Created bulk.rc');
}

# Exercise bulk and non-bulk confirmations for 'delete' and 'modify'.
qx{../src/task rc:bulk.rc add one 2>&1};
qx{../src/task rc:bulk.rc add two 2>&1};
qx{../src/task rc:bulk.rc add three 2>&1};
qx{../src/task rc:bulk.rc add four 2>&1};
qx{../src/task rc:bulk.rc add five 2>&1};
qx{../src/task rc:bulk.rc add six 2>&1};
qx{../src/task rc:bulk.rc add seven 2>&1};
qx{../src/task rc:bulk.rc add eight 2>&1};
qx{../src/task rc:bulk.rc add nine 2>&1};
qx{../src/task rc:bulk.rc add ten 2>&1};
qx{../src/task rc:bulk.rc add eleven 2>&1};
qx{../src/task rc:bulk.rc add twelve 2>&1};
qx{../src/task rc:bulk.rc add thirteen 2>&1};
qx{../src/task rc:bulk.rc add fourteen 2>&1};
qx{../src/task rc:bulk.rc add fifteen 2>&1};
qx{../src/task rc:bulk.rc add sixteen 2>&1};
qx{../src/task rc:bulk.rc add seventeen 2>&1};
qx{../src/task rc:bulk.rc add eighteen 2>&1};

# The 'delete' command is used, but it could be any write command.
# Note that 'y' is passed to task despite rc.confirmation=off.  This allows
# failing tests to complete without blocking on input.

# 'yes' tests:

# Test with 1 task.  1 is a special case.
my $output = qx{echo 'y' | ../src/task rc:bulk.rc rc.confirmation=off 1 delete 2>&1};
unlike ($output, qr/\(yes\/no\)/,            'Single delete with no confirmation');
unlike ($output, qr/\(yes\/no\/all\/quit\)/, 'Single delete with no bulk confirmation');
like   ($output, qr/Deleting task 1/,        'Verified delete 1');

$output = qx{echo 'y' | ../src/task rc:bulk.rc rc.confirmation=on 2 delete 2>&1};
like   ($output, qr/\(yes\/no\)/,            'Single delete with confirmation');
unlike ($output, qr/\(yes\/no\/all\/quit\)/, 'Single delete with no bulk confirmation');
like   ($output, qr/Deleting task 2/,        'Verified delete 2');

# Test with 2 tasks.  2 is greater than 1 and less than bulk.
$output = qx{echo 'y' | ../src/task rc:bulk.rc rc.confirmation=off 3-4 delete 2>&1};
unlike ($output, qr/\(yes\/no\)/,            'Multiple delete with no confirmation');
unlike ($output, qr/\(yes\/no\/all\/quit\)/, 'Multiple delete with no bulk confirmation');
like   ($output, qr/Deleting task 3/,        'Verified delete 3');
like   ($output, qr/Deleting task 4/,        'Verified delete 4');

$output = qx{printf 'y\ny\n' | ../src/task rc:bulk.rc rc.confirmation=on 5-6 delete 2>&1};
unlike ($output, qr/\(yes\/no\)/,            'Multiple delete with confirmation');
like   ($output, qr/\(yes\/no\/all\/quit\)/, 'Multiple delete with bulk confirmation');
like   ($output, qr/Deleting task 5/,        'Verified delete 5');
like   ($output, qr/Deleting task 6/,        'Verified delete 6');

# Test with 3 tasks.  3 is considered bulk.
$output = qx{printf 'y\ny\ny\n' | ../src/task rc:bulk.rc rc.confirmation=off 7-9 delete 2>&1};
unlike ($output, qr/\(yes\/no\)/,            'Bulk delete with no confirmation');
like   ($output, qr/\(yes\/no\/all\/quit\)/, 'Bulk delete with no bulk confirmation');
like   ($output, qr/Deleting task 7/,        'Verified delete 7');
like   ($output, qr/Deleting task 8/,        'Verified delete 8');
like   ($output, qr/Deleting task 9/,        'Verified delete 9');

$output = qx{printf 'y\ny\ny\n' | ../src/task rc:bulk.rc rc.confirmation=on 10-12 delete 2>&1};
unlike ($output, qr/\(yes\/no\)/,            'Bulk delete with confirmation');
like   ($output, qr/\(yes\/no\/all\/quit\)/, 'Bulk delete with bulk confirmation');
like   ($output, qr/Deleting task 10/,       'Verified delete 10');
like   ($output, qr/Deleting task 11/,       'Verified delete 11');
like   ($output, qr/Deleting task 12/,       'Verified delete 12');

# 'no' tests:

# Test with 1 task, denying delete.
$output = qx{echo 'n' | ../src/task rc:bulk.rc rc.confirmation=on 13 delete 2>&1};
like   ($output, qr/\(yes\/no\)/,            'Single delete with confirmation');
unlike ($output, qr/\(yes\/no\/all\/quit\)/, 'Single delete with no bulk confirmation');
unlike ($output, qr/Deleting task/,          'Verified no delete 13');

# Test with 2 tasks, denying delete.
$output = qx{printf 'n\nn\n' | ../src/task rc:bulk.rc rc.confirmation=on 13-14 delete 2>&1};
unlike ($output, qr/\(yes\/no\)/,            'Multiple delete with confirmation');
like   ($output, qr/\(yes\/no\/all\/quit\)/, 'Multiple delete with no bulk confirmation');
unlike ($output, qr/Deleting task/,          'Verified no delete 13-14');

# Test with 3 tasks, denying delete.
$output = qx{printf 'n\nn\nn\n' | ../src/task rc:bulk.rc rc.confirmation=on 13-15 delete 2>&1};
unlike ($output, qr/\(yes\/no\)/,            'Bulk delete with confirmation');
like   ($output, qr/\(yes\/no\/all\/quit\)/, 'Bulk delete with no bulk confirmation');
unlike ($output, qr/Deleting task/,          'Verified no delete 13-15');

# 'all' tests:
$output = qx{echo 'all' | ../src/task rc:bulk.rc rc.confirmation=on 13-15 delete 2>&1};
unlike ($output, qr/\(yes\/no\)/,            'Bulk delete with confirmation');
like   ($output, qr/\(yes\/no\/all\/quit\)/, 'Bulk delete with bulk confirmation');
like   ($output, qr/Deleting task 13/,       'Verified delete 13');
like   ($output, qr/Deleting task 14/,       'Verified delete 14');
like   ($output, qr/Deleting task 15/,       'Verified delete 15');

# 'quit' tests:
$output = qx{echo 'quit' | ../src/task rc:bulk.rc rc.confirmation=on 16-18 delete 2>&1};
unlike ($output, qr/\(yes\/no\)/,            'Bulk delete with no confirmation');
like   ($output, qr/\(yes\/no\/all\/quit\)/, 'Bulk delete with no bulk confirmation');
like   ($output, qr/Deleted 0 tasks./,       'No task deleted');
unlike ($output, qr/delete task 17/,         'No question asked for subsequent tasks');

# Cleanup.
unlink qw(pending.data completed.data undo.data backlog.data bulk.rc);
ok (! -r 'pending.data'   &&
    ! -r 'completed.data' &&
    ! -r 'undo.data'      &&
    ! -r 'backlog.data'   &&
    ! -r 'bulk.rc', 'Cleanup');

exit 0;