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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
|
#!/bin/bash
include './src/pomodoro.sh'
include './tests/utils.sh'
function setUp()
{
mkdir -p "$TMP_TEST_DIR"
export POMODORO_LOG_FILE="$SHUNIT_TMPDIR/pomodoro_current.log"
export KW_POMODORO_DATA="$SHUNIT_TMPDIR/pomodoro"
export KW_POMODORO_TAG_LIST="$KW_POMODORO_DATA/tags"
touch "$POMODORO_LOG_FILE"
}
function tearDown()
{
rm -rf "$SHUNIT_TMPDIR"
mkdir -p "$SHUNIT_TMPDIR"
}
function test_register_timebox()
{
local timebox='3332232557'
local output
local expected_result
options_values['TIMER']='2m'
register_timebox "$timebox"
output=$(cat "$POMODORO_LOG_FILE")
expected_result="$timebox,${options_values['TIMER']}"
assert_equals_helper 'Regitered file did not match' "$LINENO" "$expected_result" "$output"
declare -a expected_content=(
"$expected_result"
'4332232557,30m'
'433222557,1h'
)
options_values['TIMER']='30m'
register_timebox '4332232557'
options_values['TIMER']='1h'
register_timebox '433222557'
output=$(cat "$POMODORO_LOG_FILE")
compare_command_sequence '' "$LINENO" 'expected_content' "$output"
}
function test_remove_completed_timebox()
{
# Register a bunch of data
options_values['TIMER']='30m'
register_timebox '4332232557'
options_values['TIMER']='1h'
register_timebox '433222557'
options_values['TIMER']='43s'
register_timebox '933222557'
declare -a expected_content=(
'4332232557,30m'
'933222557,43s'
)
remove_completed_timebox '433222557'
output=$(cat "$POMODORO_LOG_FILE")
compare_command_sequence '' "$LINENO" 'expected_content' "$output"
remove_completed_timebox '933222557'
output=$(cat "$POMODORO_LOG_FILE")
assert_equals_helper 'Line was not removed' "$LINENO" '4332232557,30m' "$output"
remove_completed_timebox '4332232557'
output=$(cat "$POMODORO_LOG_FILE")
assert_equals_helper 'File should be empty' "$LINENO" '' "$output"
# Invalid timestamp
remove_completed_timebox '99032432'
output=$(cat "$POMODORO_LOG_FILE")
assert_equals_helper 'Line was not removed' "$LINENO" '' "$output"
}
function test_calculate_missing_time()
{
local output
output=$(calculate_missing_time '2m' 59)
assert_equals_helper 'Expected 61 seconds' "$LINENO" "$output" '61'
output=$(calculate_missing_time '2m' 10)
assert_equals_helper 'Expected 110 seconds' "$LINENO" "$output" '110'
output=$(calculate_missing_time '337s' 40)
assert_equals_helper 'Expected 297 seconds' "$LINENO" "$output" '297'
# No time type, we suppose seconds
output=$(calculate_missing_time '337' 40)
assert_equals_helper 'Expected 297 seconds' "$LINENO" "$output" '297'
output=$(calculate_missing_time '2h' 0)
assert_equals_helper 'Expected 7200 seconds' "$LINENO" "$output" '7200'
output=$(calculate_missing_time '10m' 0)
assert_equals_helper 'Expected 600 seconds' "$LINENO" "$output" '600'
# Negative value
output=$(calculate_missing_time '10s' 20)
assert_equals_helper 'Expected 0 seconds' "$LINENO" "$output" '0'
}
function get_timestamp_sec_mock()
{
printf '%s\n' '3332232700'
}
function test_show_active_pomodoro_timebox()
{
local timestamp='3332232557'
local timestamp_to_date
local missing_time
local diff_time
local output
shopt -s expand_aliases
alias get_timestamp_sec='get_timestamp_sec_mock'
options_values['TIMER']='2m'
register_timebox "$timestamp"
output=$(show_active_pomodoro_timebox)
timestamp_to_date=$(date_to_format "@$timestamp" '+%H:%M:%S[%Y/%m/%d]')
diff_time=$((3332232700 - timestamp))
elapsed_time=$(sec_to_format "$diff_time")
missing_time=$(calculate_missing_time "${options_values['TIMER']}" "$diff_time")
missing_time=$(sec_to_format "$missing_time")
declare -a expected_content=(
"Started at: $timestamp_to_date"
"- Elapsed time: $elapsed_time"
"- You still have $missing_time"
)
output=$(show_active_pomodoro_timebox)
compare_command_sequence '' "$LINENO" 'expected_content' "$output"
rm "$POMODORO_LOG_FILE"
output=$(show_active_pomodoro_timebox 2>&1)
assert_equals_helper 'We should have no output' "$LINENO" "$output" ''
}
function test_pomodoro_parser()
{
local output
pomodoro_parser '-t 10m'
assert_equals_helper 'Time parser failed (minutes)' "$LINENO" "${options_values['TIMER']}" '10m'
pomodoro_parser '-t 333h'
assert_equals_helper 'Time parser failed (hour)' "$LINENO" "${options_values['TIMER']}" '333h'
pomodoro_parser '--set-timer 234s'
assert_equals_helper 'Time parser failed (sec)' "$LINENO" "${options_values['TIMER']}" '234s'
output=$(pomodoro_parser '--set-timer 23 s')
assert_equals_helper 'No space' "$LINENO" "$?" '22'
output=$(pomodoro_parser '--set-timer 234')
assert_equals_helper 'No suffix' "$LINENO" "$?" '22'
output=$(pomodoro_parser '--set-timer uum')
assert_equals_helper 'No a number' "$LINENO" "$?" '22'
pomodoro_parser '--list'
assert_equals_helper 'Show current timebox' "$LINENO" "${options_values['SHOW_TIMER']}" '1'
pomodoro_parser '--tag Something is here'
assert_equals_helper 'Get tag' "$LINENO" "${options_values['TAG']}" 'Something is here'
pomodoro_parser '--tag Extra space '
assert_equals_helper 'Handle extra space failed' "$LINENO" "${options_values['TAG']}" 'Extra space'
output=$(pomodoro_parser '--description lala lalala')
assert_equals_helper 'Description requires tag' "$LINENO" "$?" '22'
str_sample='This is just a simple description'
pomodoro_parser "--tag Extra space -d $str_sample"
assert_equals_helper 'Get description' "$LINENO" "${options_values['DESCRIPTION']}" "$str_sample"
str_sample_spaces=' This is just a simple description '
pomodoro_parser "--tag Extra space -d $str_sample_spaces"
assert_equals_helper 'Get description' "$LINENO" "${options_values['DESCRIPTION']}" "$str_sample"
apostrophe="Let's try something with apostrophe (I'm, you're, we're)"
pomodoro_parser "--tag apostrophe -d $apostrophe"
assert_equals_helper 'Get description' "$LINENO" "${options_values['DESCRIPTION']}" "$apostrophe"
str_sample='Does --comment --lal -u -x xpto-bla and xpto--blablbal'
pomodoro_parser "--tag Extra space -d $str_sample"
assert_equals_helper 'Get description' "$LINENO" "${options_values['DESCRIPTION']}" "$str_sample"
str_sample='--com --lal -u -x xpo-la x--bl'
pomodoro_parser "--tag $str_sample"
assert_equals_helper 'Get description' "$LINENO" "${options_values['TAG']}" "$str_sample"
}
function test_setup_pomodoro()
{
local output
local year_month
local today
year_month=$(date '+%Y/%m')
today=$(date '+%d')
output=$(setup_pomodoro)
assertTrue 'Date file was not created' '[[ -f "$KW_POMODORO_DATA/$year_month/$today" ]]'
}
function test_register_data_for_report()
{
local output
local year_month
local today
local description
local sample_str
year_month=$(date '+%Y/%m')
today=$(date '+%d')
options_values['TAG']='Test 12'
options_values['TIMER']='30m'
output=$(register_data_for_report)
assertTrue 'Date file was not created' '[[ -f "$KW_POMODORO_DATA/$year_month/$today" ]]'
data=$(cat "$KW_POMODORO_DATA/$year_month/$today")
tag=$(printf '%s\n' "$data" | cut -d',' -f1)
timer=$(printf '%s\n' "$data" | cut -d',' -f2)
assert_equals_helper 'Label did not match' "$LINENO" "$tag" "${options_values['TAG']}"
assert_equals_helper 'Timer did not match' "$LINENO" "$timer" "${options_values['TIMER']}"
rm "$KW_POMODORO_DATA/$year_month/$today"
sample_str='Simple description'
options_values['DESCRIPTION']="$sample_str"
output=$(register_data_for_report)
data=$(cat "$KW_POMODORO_DATA/$year_month/$today")
description=$(printf '%s\n' "$data" | cut -d',' -f4)
assert_equals_helper 'Label did not match' "$LINENO" "$sample_str" "${options_values['DESCRIPTION']}"
}
function test_register_tag()
{
local output
# We need basic setup for tags
setup_pomodoro > /dev/null
declare -a expected_content=(
'tag 1'
'tag 2'
)
register_tag 'tag 1'
register_tag 'tag 2'
output=$(cat "$KW_POMODORO_TAG_LIST")
compare_command_sequence '' "$LINENO" 'expected_content' "$output"
# Try to register the same tag
register_tag 'tag 2'
compare_command_sequence '' "$LINENO" 'expected_content' "$output"
# Try to register an empty tag
register_tag ''
compare_command_sequence '' "$LINENO" 'expected_content' "$output"
}
function test_is_tag_already_registered()
{
# We need basic setup for test this function
setup_pomodoro > /dev/null
touch "$KW_POMODORO_TAG_LIST"
is_tag_already_registered 'Tag 0'
assertNotEquals "$LINENO: We should not get a success" "$?" 0
is_tag_already_registered ''
assertNotEquals "$LINENO: We should not get a success" "$?" 0
printf '%s\n' 'Tag 0' >> "$KW_POMODORO_TAG_LIST"
is_tag_already_registered 'Tag 0'
assertEquals "$LINENO: We expect to find Tag 0" "$?" 0
}
function test_translate_id_to_tag()
{
local output
setup_pomodoro > /dev/null
translate_id_to_tag ''
assert_equals_helper 'Empty string should be detected' "$LINENO" "$?" '22'
register_tag 'tag 1'
register_tag 'tag 2'
register_tag 'tag 3'
register_tag 'tag 4'
for i in {1..4}; do
output=$(translate_id_to_tag "$i")
expected="tag $i"
assert_equals_helper 'We expect to find a tag' "$LINENO: ($i)" "$output" "$expected"
done
# Try to get an ID out of range
translate_id_to_tag 65
assert_equals_helper 'Out of range' "$LINENO" "$?" '22'
translate_id_to_tag -2
assert_equals_helper 'Out of range' "$LINENO" "$?" '22'
}
invoke_shunit
|