Пример #1
0
    def test_parse_activity(self):
        """Test activity bug parsing"""

        raw_html = read_file('data/bugzilla_bug_activity.html')

        activity = Bugzilla.parse_bug_activity(raw_html)
        result = [event for event in activity]

        self.assertEqual(len(result), 14)

        expected = {
            'Who': '*****@*****.**',
            'When': '2013-06-25 11:57:23 CEST',
            'What': 'Attachment #172 Attachment is obsolete',
            'Removed': '0',
            'Added': '1'
        }
        self.assertDictEqual(result[0], expected)

        expected = {
            'Who': '*****@*****.**',
            'When': '2013-06-25 11:59:07 CEST',
            'What': 'Depends on',
            'Removed': '350',
            'Added': ''
        }
        self.assertDictEqual(result[6], expected)
Пример #2
0
    def test_parse_activity(self):
        """Test activity bug parsing"""

        raw_html = read_file('data/bugzilla_bug_activity.html')

        activity = Bugzilla.parse_bug_activity(raw_html)
        result = [event for event in activity]

        self.assertEqual(len(result), 14)

        expected = {
                    'Who' : '*****@*****.**',
                    'When' : '2013-06-25 11:57:23 CEST',
                    'What' : 'Attachment #172 Attachment is obsolete',
                    'Removed' : '0',
                    'Added' : '1'
                   }
        self.assertDictEqual(result[0], expected)

        expected = {
                    'Who' : '*****@*****.**',
                    'When' : '2013-06-25 11:59:07 CEST',
                    'What' : 'Depends on',
                    'Removed' : '350',
                    'Added' : ''
                   }
        self.assertDictEqual(result[6], expected)
Пример #3
0
    def test_parse_activity_no_table(self):
        """Test if it raises an exception the activity table is not found"""

        raw_html = read_file('data/bugzilla_bug_activity_not_valid.html')

        with self.assertRaises(ParseError):
            activity = Bugzilla.parse_bug_activity(raw_html)
            _ = [event for event in activity]
Пример #4
0
    def test_parse_empty_activity(self):
        """Test the parser when the activity table is empty"""

        raw_html = read_file('data/bugzilla_bug_activity_empty.html')

        activity = Bugzilla.parse_bug_activity(raw_html)
        result = [event for event in activity]
        self.assertEqual(len(result), 0)
Пример #5
0
    def test_parse_activity_no_table(self):
        """Test if it raises an exception the activity table is not found"""

        raw_html = read_file('data/bugzilla_bug_activity_not_valid.html')

        with self.assertRaises(ParseError):
            activity = Bugzilla.parse_bug_activity(raw_html)
            _ = [event for event in activity]
Пример #6
0
    def test_parse_empty_activity(self):
        """Test the parser when the activity table is empty"""

        raw_html = read_file('data/bugzilla_bug_activity_empty.html')

        activity = Bugzilla.parse_bug_activity(raw_html)
        result = [event for event in activity]
        self.assertEqual(len(result), 0)
Пример #7
0
    def test_parse_empty_activity(self):
        """Test the parser when the activity table is empty"""

        # There are two possible cases for empty tables.
        # The first case includes the term 'bug' while the second
        # one replaces it by 'issue'.

        raw_html = read_file('data/bugzilla_bug_activity_empty.html')

        activity = Bugzilla.parse_bug_activity(raw_html)
        result = [event for event in activity]
        self.assertEqual(len(result), 0)

        raw_html = read_file('data/bugzilla_bug_activity_empty_alt.html')

        activity = Bugzilla.parse_bug_activity(raw_html)
        result = [event for event in activity]
        self.assertEqual(len(result), 0)
Пример #8
0
    def test_parse_empty_activity(self):
        """Test the parser when the activity table is empty"""

        # There are two possible cases for empty tables.
        # The first case includes the term 'bug' while the second
        # one replaces it by 'issue'.

        raw_html = read_file('data/bugzilla_bug_activity_empty.html')

        activity = Bugzilla.parse_bug_activity(raw_html)
        result = [event for event in activity]
        self.assertEqual(len(result), 0)

        raw_html = read_file('data/bugzilla_bug_activity_empty_alt.html')

        activity = Bugzilla.parse_bug_activity(raw_html)
        result = [event for event in activity]
        self.assertEqual(len(result), 0)