Add remaining tests. Merge bugfix for report printing.
This commit is contained in:
parent
a7dbe383e4
commit
dda4ff807d
5 changed files with 196 additions and 23 deletions
1
lib/ctt/test/fixtures/.ctt/foo1/2016-04-08-1200/comment
vendored
Normal file
1
lib/ctt/test/fixtures/.ctt/foo1/2016-04-08-1200/comment
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
foo1 12
|
1
lib/ctt/test/fixtures/.ctt/foo1/2016-04-08-1200/delta
vendored
Normal file
1
lib/ctt/test/fixtures/.ctt/foo1/2016-04-08-1200/delta
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
5000
|
|
@ -1 +1 @@
|
||||||
10.312733
|
10
|
||||||
|
|
|
@ -23,44 +23,202 @@
|
||||||
import unittest
|
import unittest
|
||||||
import ctt
|
import ctt
|
||||||
import ctt.test
|
import ctt.test
|
||||||
import ctt.tracker as tr
|
import ctt.report as report
|
||||||
import os
|
import sys
|
||||||
|
from io import StringIO
|
||||||
import datetime
|
import datetime
|
||||||
import shutil
|
import collections
|
||||||
|
|
||||||
|
|
||||||
# TODO implement tests
|
|
||||||
class ReportTestCase(ctt.test.CttTestCase):
|
class ReportTestCase(ctt.test.CttTestCase):
|
||||||
|
def setUp(self):
|
||||||
|
super(ReportTestCase, self).setUp()
|
||||||
|
self.sys_stdout = sys.stdout
|
||||||
|
out = StringIO()
|
||||||
|
sys.stdout = out
|
||||||
|
self.maxDiff = None
|
||||||
|
|
||||||
def test_commandline(self):
|
def _get_output(self):
|
||||||
pass
|
sys.stdout.flush()
|
||||||
|
output = sys.stdout.getvalue().strip()
|
||||||
|
return output
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
sys.stdout = self.sys_stdout
|
||||||
|
super(ReportTestCase, self).tearDown()
|
||||||
|
|
||||||
def test_print_report_time_entries(self):
|
def test_print_report_time_entries(self):
|
||||||
pass
|
report_data = {
|
||||||
|
'2016-04-07-0826': [
|
||||||
|
{
|
||||||
|
'start_datetime': '2016-04-07-0826',
|
||||||
|
'end_datetime': '2016-04-07-2359',
|
||||||
|
'comment': 'foo1',
|
||||||
|
'delta': '6',
|
||||||
|
'delta_seconds': '6',
|
||||||
|
'delta_minutes': '0',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
||||||
|
report.Report.print_report_time_entries(report_data, ctt.REPORTFORMAT,
|
||||||
|
False)
|
||||||
|
output = self._get_output()
|
||||||
|
expected_output = "2016-04-07-0826 (6): foo1"
|
||||||
|
self.assertEqual(output, expected_output)
|
||||||
|
|
||||||
|
def test_print_report_time_entries_summary(self):
|
||||||
|
report_data = {
|
||||||
|
'2016-04-07-0826': [
|
||||||
|
{
|
||||||
|
'start_datetime': '2016-04-07-0826',
|
||||||
|
'end_datetime': '2016-04-07-2359',
|
||||||
|
'comment': 'foo1',
|
||||||
|
'delta': '6',
|
||||||
|
'delta_seconds': '6',
|
||||||
|
'delta_minutes': '0',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
'2016-04-07-0926': [
|
||||||
|
{
|
||||||
|
'start_datetime': '2016-04-07-0926',
|
||||||
|
'end_datetime': '2016-04-07-2359',
|
||||||
|
'comment': 'foo12',
|
||||||
|
'delta': '10',
|
||||||
|
'delta_seconds': '10',
|
||||||
|
'delta_minutes': '0',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
||||||
|
report.Report.print_report_time_entries(report_data, ctt.REPORTFORMAT,
|
||||||
|
True)
|
||||||
|
output = self._get_output()
|
||||||
|
expected_output = ("2016-04-07-0826 (6): foo1\n"
|
||||||
|
"2016-04-07-0926 (10): foo12")
|
||||||
|
self.assertEqual(output, expected_output)
|
||||||
|
|
||||||
|
def test_print_reports(self):
|
||||||
|
reports = collections.OrderedDict()
|
||||||
|
for project in ('foo1', 'foo2'):
|
||||||
|
rep = report.Report(project, ('2016-04-07',), ('2016-04-08',),
|
||||||
|
ctt.REPORTFORMAT, None, None)
|
||||||
|
report_data = rep.report()
|
||||||
|
reports[project] = (rep, report_data)
|
||||||
|
expected_output = (
|
||||||
|
"Report for foo1 between 2016-04-07 00:00:00 and 2016-04-08 23:59:59\n"
|
||||||
|
"2016-04-07-0826 (0:00:06): foo1\n"
|
||||||
|
"2016-04-08-1200 (1:23:20): foo1 12\n"
|
||||||
|
"Report for foo2 between 2016-04-07 00:00:00 and 2016-04-08 23:59:59\n"
|
||||||
|
"2016-04-07-0810 (0:00:10): foo2"
|
||||||
|
)
|
||||||
|
rep.print_reports(reports, ctt.REPORTFORMAT, summary=False)
|
||||||
|
output = self._get_output()
|
||||||
|
self.assertEqual(output, expected_output)
|
||||||
|
|
||||||
|
def test_print_reports_summary(self):
|
||||||
|
reports = collections.OrderedDict()
|
||||||
|
for project in ('foo1', 'foo2'):
|
||||||
|
rep = report.Report(project, ('2016-04-07',), ('2016-04-08',),
|
||||||
|
ctt.REPORTFORMAT, None, None)
|
||||||
|
report_data = rep.report()
|
||||||
|
reports[project] = (rep, report_data)
|
||||||
|
expected_output = (
|
||||||
|
"2016-04-07-0810 (0:00:10): foo2\n"
|
||||||
|
"2016-04-07-0826 (0:00:06): foo1\n"
|
||||||
|
"2016-04-08-1200 (1:23:20): foo1 12"
|
||||||
|
)
|
||||||
|
rep.print_reports(reports, ctt.REPORTFORMAT, summary=True)
|
||||||
|
output = self._get_output()
|
||||||
|
self.assertEqual(output, expected_output)
|
||||||
|
|
||||||
def print_reports(self):
|
|
||||||
pass
|
|
||||||
|
|
||||||
def test__init_date(self):
|
def test__init_date(self):
|
||||||
pass
|
rep = report.Report('foo1', ('2016-04-07',), ('2016-04-07',),
|
||||||
|
ctt.REPORTFORMAT, None, None)
|
||||||
|
expected_start_date = datetime.datetime(2016, 4, 7)
|
||||||
|
expected_end_date = datetime.datetime(2016, 4, 7, 23, 59, 59)
|
||||||
|
self.assertEqual(rep.start_date, expected_start_date)
|
||||||
|
self.assertEqual(rep.end_date, expected_end_date)
|
||||||
|
|
||||||
|
@unittest.expectedFailure
|
||||||
|
def test__init_date_fail(self):
|
||||||
|
rep = report.Report('foo1', ('2016-04-08',), ('2016-04-07',),
|
||||||
|
ctt.REPORTFORMAT, None, None)
|
||||||
|
|
||||||
|
def test__init_date_defaults(self):
|
||||||
|
rep = report.Report('foo1', None, None,
|
||||||
|
ctt.REPORTFORMAT, None, None)
|
||||||
|
now = datetime.datetime.now()
|
||||||
|
expected_start_date = now.replace(day=1, hour=0, minute=0, second=0,
|
||||||
|
microsecond=0)
|
||||||
|
next_month = expected_start_date.replace(day=28) + datetime.timedelta(days=4)
|
||||||
|
first_day_next_month = next_month.replace(day=1)
|
||||||
|
expected_end_date = first_day_next_month - datetime.timedelta(seconds=1)
|
||||||
|
self.assertEqual(rep.start_date, expected_start_date)
|
||||||
|
self.assertEqual(rep.end_date, expected_end_date)
|
||||||
|
|
||||||
|
@unittest.expectedFailure
|
||||||
|
def test__init_report_db_fail(self):
|
||||||
|
rep = report.Report('unexisting', ('2016-04-07',), ('2016-04-07',),
|
||||||
|
ctt.REPORTFORMAT, None, None)
|
||||||
|
|
||||||
def test__init_report_db(self):
|
def test__init_report_db(self):
|
||||||
pass
|
rep = report.Report('foo1', ('2016-04-07',), ('2016-04-07',),
|
||||||
|
ctt.REPORTFORMAT, None, None)
|
||||||
|
expected_db = {
|
||||||
|
'2016-04-07-0826': {
|
||||||
|
'comment': 'foo1',
|
||||||
|
'delta': '6.248274'
|
||||||
|
},
|
||||||
|
}
|
||||||
|
self.assertEqual(rep._report_db, expected_db)
|
||||||
|
|
||||||
def test_header(self):
|
def test_header(self):
|
||||||
pass
|
rep = report.Report('foo1', ('2016-04-07',), ('2016-04-07',),
|
||||||
|
ctt.REPORTFORMAT, None, None)
|
||||||
|
rep.header()
|
||||||
|
output = self._get_output()
|
||||||
|
self.assertEqual(output, ("Report for foo1 between 2016-04-07 00:00:00"
|
||||||
|
" and 2016-04-07 23:59:59"))
|
||||||
|
|
||||||
def test_summary(self):
|
def test_summary(self):
|
||||||
pass
|
report.Report.summary(10)
|
||||||
|
output = self._get_output()
|
||||||
|
self.assertEqual(output, "Total time tracked: 0h 0m 10s.")
|
||||||
|
|
||||||
def test_total_time(self):
|
def test_total_time(self):
|
||||||
pass
|
rep = report.Report('foo1', ('2016-04-07',), ('2016-04-07',),
|
||||||
|
ctt.REPORTFORMAT, None, None)
|
||||||
def test__get_report_entry(self):
|
total_time = rep.total_time
|
||||||
pass
|
expected_total_time = 6.248274
|
||||||
|
self.assertEqual(total_time, expected_total_time)
|
||||||
|
|
||||||
def test_report(self):
|
def test_report(self):
|
||||||
pass
|
rep = report.Report('foo1', ('2016-04-07',), ('2016-04-08',),
|
||||||
|
ctt.REPORTFORMAT, None, None)
|
||||||
|
expected_entries = {
|
||||||
|
'2016-04-07-0826': [
|
||||||
|
{
|
||||||
|
'start_datetime': '2016-04-07-0826',
|
||||||
|
'end_datetime': '2016-04-07-0826',
|
||||||
|
'comment': 'foo1',
|
||||||
|
'delta': datetime.timedelta(seconds=6),
|
||||||
|
'delta_seconds': 6,
|
||||||
|
'delta_minutes': 0,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
'2016-04-08-1200': [
|
||||||
|
{
|
||||||
|
'start_datetime': '2016-04-08-1200',
|
||||||
|
'end_datetime': '2016-04-08-1323',
|
||||||
|
'comment': 'foo1 12',
|
||||||
|
'delta': datetime.timedelta(seconds=5000),
|
||||||
|
'delta_seconds': 5000,
|
||||||
|
'delta_minutes': 83,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
||||||
|
entries = rep.report()
|
||||||
|
self.assertEqual(entries, expected_entries)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
|
@ -29,6 +29,17 @@ import datetime
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
class TrackerTestCase(ctt.test.CttTestCase):
|
class TrackerTestCase(ctt.test.CttTestCase):
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
super(TrackerTestCase, self).setUp()
|
||||||
|
self.rm_dirs = []
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
for d in self.rm_dirs:
|
||||||
|
if os.path.exists(d):
|
||||||
|
shutil.rmtree(d)
|
||||||
|
super(TrackerTestCase, self).tearDown()
|
||||||
|
|
||||||
def test___init__(self):
|
def test___init__(self):
|
||||||
project = 'foo1'
|
project = 'foo1'
|
||||||
expected_project_dir = os.path.join(ctt.test.fixtures_dir,
|
expected_project_dir = os.path.join(ctt.test.fixtures_dir,
|
||||||
|
@ -90,9 +101,9 @@ class TrackerTestCase(ctt.test.CttTestCase):
|
||||||
expected_comment = "test"
|
expected_comment = "test"
|
||||||
tracker.comment = expected_comment
|
tracker.comment = expected_comment
|
||||||
expected_comment += "\n"
|
expected_comment += "\n"
|
||||||
timedir = os.path.join(os.path.join(
|
timedir = os.path.join(ctt.test.fixtures_dir, '.ctt', project,
|
||||||
ctt.test.fixtures_dir, os.path.join('.ctt', project)),
|
|
||||||
'2016-04-09-1730')
|
'2016-04-09-1730')
|
||||||
|
self.rm_dirs.append(timedir)
|
||||||
if os.path.exists(timedir):
|
if os.path.exists(timedir):
|
||||||
shutil.rmtree(timedir)
|
shutil.rmtree(timedir)
|
||||||
tracker.write_time()
|
tracker.write_time()
|
||||||
|
@ -106,6 +117,7 @@ class TrackerTestCase(ctt.test.CttTestCase):
|
||||||
with open(commentfile, "r") as f:
|
with open(commentfile, "r") as f:
|
||||||
comment = f.read()
|
comment = f.read()
|
||||||
self.assertEqual(comment, expected_comment)
|
self.assertEqual(comment, expected_comment)
|
||||||
|
print("timedir: ", timedir)
|
||||||
|
|
||||||
@unittest.expectedFailure
|
@unittest.expectedFailure
|
||||||
def test_write_time_fail(self):
|
def test_write_time_fail(self):
|
||||||
|
@ -119,13 +131,14 @@ class TrackerTestCase(ctt.test.CttTestCase):
|
||||||
tracker._tracked_time = True
|
tracker._tracked_time = True
|
||||||
expected_comment = "test"
|
expected_comment = "test"
|
||||||
tracker.comment = expected_comment
|
tracker.comment = expected_comment
|
||||||
timedir = os.path.join(os.path.join(
|
timedir = os.path.join(ctt.test.fixtures_dir, '.ctt', project,
|
||||||
ctt.test.fixtures_dir, os.path.join('.ctt', project)),
|
|
||||||
'2016-04-09-1730')
|
'2016-04-09-1730')
|
||||||
|
self.rm_dirs.append(timedir)
|
||||||
if os.path.exists(timedir):
|
if os.path.exists(timedir):
|
||||||
shutil.rmtree(timedir)
|
shutil.rmtree(timedir)
|
||||||
os.makedirs(timedir, mode=0o700)
|
os.makedirs(timedir, mode=0o700)
|
||||||
tracker.write_time()
|
tracker.write_time()
|
||||||
|
print("timedir: ", timedir)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
Loading…
Reference in a new issue