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
|
import unittest
from bugwarrior import config, services
LONG_MESSAGE = """\
Some message that is over 100 characters. This message is so long it's
going to fill up your floppy disk taskwarrior backup. Actually it's not
that long.""".replace('\n', ' ')
class TestIssueService(unittest.TestCase):
def setUp(self):
super(TestIssueService, self).setUp()
self.config = config.BugwarriorConfigParser()
self.config.add_section('general')
def test_build_annotations_default(self):
service = services.IssueService(self.config, 'general', 'test')
annotations = service.build_annotations(
(('some_author', LONG_MESSAGE),), 'example.com')
self.assertEqual(annotations, [
u'@some_author - Some message that is over 100 characters. Thi...'
])
def test_build_annotations_limited(self):
self.config.set('general', 'annotation_length', '20')
service = services.IssueService(self.config, 'general', 'test')
annotations = service.build_annotations(
(('some_author', LONG_MESSAGE),), 'example.com')
self.assertEqual(
annotations, [u'@some_author - Some message that is...'])
def test_build_annotations_limitless(self):
self.config.set('general', 'annotation_length', '')
service = services.IssueService(self.config, 'general', 'test')
annotations = service.build_annotations(
(('some_author', LONG_MESSAGE),), 'example.com')
self.assertEqual(annotations, [
u'@some_author - {message}'.format(message=LONG_MESSAGE)])
class TestIssue(unittest.TestCase):
def setUp(self):
super(TestIssue, self).setUp()
self.config = config.BugwarriorConfigParser()
self.config.add_section('general')
def makeIssue(self):
service = services.IssueService(self.config, 'general', 'test')
service.ISSUE_CLASS = services.Issue
return service.get_issue_for_record(None)
def test_build_default_description_default(self):
issue = self.makeIssue()
description = issue.build_default_description(LONG_MESSAGE)
self.assertEqual(
description, u'(bw)Is# - Some message that is over 100 chara')
def test_build_default_description_limited(self):
self.config.set('general', 'description_length', '20')
issue = self.makeIssue()
description = issue.build_default_description(LONG_MESSAGE)
self.assertEqual(
description, u'(bw)Is# - Some message that is')
def test_build_default_description_limitless(self):
self.config.set('general', 'description_length', '')
issue = self.makeIssue()
description = issue.build_default_description(LONG_MESSAGE)
self.assertEqual(
description, u'(bw)Is# - {message}'.format(message=LONG_MESSAGE))
|