Пример #1
0
 def testSingleLine(self):
   """Tests when all bugs can fit on a single line."""
   urls = [
       'crbug.com/1234',
       'https://crbug.com/angleproject/2345',
   ]
   result_output._OutputUrlsForClDescription(urls, self._file_handle)
   self._file_handle.close()
   with open(self._filepath) as f:
     self.assertEqual(f.read(), ('Affected bugs for CL description:\n'
                                 'Bug: 1234, angleproject:2345\n'))
Пример #2
0
 def testSingleBugOverLineLimit(self):
   """Tests the behavior when a single bug by itself is over the line limit."""
   project_name = result_output.MAX_CHARACTERS_PER_CL_LINE * 'a'
   urls = [
       'crbug.com/%s/1' % project_name,
       'crbug.com/2',
   ]
   result_output._OutputUrlsForClDescription(urls, self._file_handle)
   self._file_handle.close()
   with open(self._filepath) as f:
     self.assertEqual(f.read(), ('Affected bugs for CL description:\n'
                                 'Bug: %s:1\n'
                                 'Bug: 2\n' % project_name))
Пример #3
0
 def testBugLimit(self):
   """Tests that only a certain number of bugs are allowed per line."""
   urls = [
       'crbug.com/1',
       'crbug.com/2',
       'crbug.com/3',
       'crbug.com/4',
       'crbug.com/5',
       'crbug.com/6',
   ]
   result_output._OutputUrlsForClDescription(urls, self._file_handle)
   self._file_handle.close()
   with open(self._filepath) as f:
     self.assertEqual(f.read(), ('Affected bugs for CL description:\n'
                                 'Bug: 1, 2, 3, 4, 5\n'
                                 'Bug: 6\n'))
Пример #4
0
    def testLengthLimit(self):
        """Tests that only a certain number of characters are allowed per line."""
        urls = [
            'crbug.com/averylongprojectthatwillgooverthelinelength/1',
            'crbug.com/averylongprojectthatwillgooverthelinelength/2',
        ]
        result_output._OutputUrlsForClDescription(urls, self._file_handle)
        self._file_handle.close()
        with open(self._filepath) as f:
            self.assertEqual(
                f.read(),
                ('Affected bugs for CL description:\n'
                 'Bug: averylongprojectthatwillgooverthelinelength:1\n'
                 'Bug: averylongprojectthatwillgooverthelinelength:2\n'))

        project_name = (result_output.MAX_CHARACTERS_PER_CL_LINE -
                        len('Bug: ') - len(':1, 2')) * 'a'
        urls = [
            'crbug.com/%s/1' % project_name,
            'crbug.com/2',
        ]
        with open(self._filepath, 'w') as f:
            result_output._OutputUrlsForClDescription(urls, f)
        with open(self._filepath) as f:
            self.assertEqual(f.read(), ('Affected bugs for CL description:\n'
                                        'Bug: %s:1, 2\n' % project_name))

        project_name += 'a'
        urls = [
            'crbug.com/%s/1' % project_name,
            'crbug.com/2',
        ]
        with open(self._filepath, 'w') as f:
            result_output._OutputUrlsForClDescription(urls, f)
        with open(self._filepath) as f:
            self.assertEqual(f.read(), ('Affected bugs for CL description:\n'
                                        'Bug: %s:1\nBug: 2\n' % project_name))