示例#1
0
    def test_new_job(self):
        # We can't give anything much sensible if the job is not finished yet,
        # but we *don't* want to just totally explode and return a 500 error.
        job = data_setup.create_job(recipe_whiteboard=u'new job')
        self.assertEqual(job.status, TaskStatus.new)
        out = job_to_junit_xml(job)
        expected = """\
<?xml version='1.0' encoding='utf8'?>
<testsuites>
  <testsuite name="new job" id="R:%s" tests="0" skipped="0" failures="0" errors="0"/>
</testsuites>
""" % job.recipesets[0].recipes[0].id
        self.assertMultiLineEqual(expected, out)
示例#2
0
    def test_new_job(self):
        # We can't give anything much sensible if the job is not finished yet, 
        # but we *don't* want to just totally explode and return a 500 error.
        job = data_setup.create_job(recipe_whiteboard=u'new job')
        self.assertEqual(job.status, TaskStatus.new)
        out = job_to_junit_xml(job)
        expected = """\
<?xml version='1.0' encoding='utf8'?>
<testsuites>
  <testsuite name="new job" id="R:%s" tests="0" skipped="0" failures="0" errors="0"/>
</testsuites>
""" % job.recipesets[0].recipes[0].id
        self.assertMultiLineEqual(expected, out)
示例#3
0
    def test_aborted_recipe_has_tasks_never_started(self):
        job = data_setup.create_job(recipe_whiteboard=u'aborted')
        job.abort(msg=u'External Watchdog Expired')
        job.update_status()
        recipe = job.recipesets[0].recipes[0]
        out = job_to_junit_xml(job)
        expected = """\
<?xml version='1.0' encoding='utf8'?>
<testsuites>
  <testsuite name="aborted" id="R:%s" tests="2" failures="0" errors="1">
    <testcase classname="/distribution/reservesys">
      <system-out></system-out>
    </testcase>
    <testcase classname="/distribution/reservesys" name="(none)">
      <error message="External Watchdog Expired" type="error"/>
      <system-out></system-out>
    </testcase>
  </testsuite>
</testsuites>
""" % recipe.id
        self.assertMultiLineEqual(expected, out)
示例#4
0
    def test_aborted_recipe_has_tasks_never_started(self):
        job = data_setup.create_job(recipe_whiteboard=u'aborted')
        job.abort(msg=u'External Watchdog Expired')
        job.update_status()
        recipe = job.recipesets[0].recipes[0]
        out = job_to_junit_xml(job)
        expected = """\
<?xml version='1.0' encoding='utf8'?>
<testsuites>
  <testsuite name="aborted" id="R:%s" tests="2" failures="0" errors="1">
    <testcase classname="/distribution/reservesys">
      <system-out></system-out>
    </testcase>
    <testcase classname="/distribution/reservesys" name="(none)">
      <error message="External Watchdog Expired" type="error"/>
      <system-out></system-out>
    </testcase>
  </testsuite>
</testsuites>
""" % recipe.id
        self.assertMultiLineEqual(expected, out)
示例#5
0
    def test_cancelled_recipe_has_tasks_never_started(self):
        job = data_setup.create_job(recipe_whiteboard=u'cancelled',
                                    task_name=u'/test_junixml/cancelled')
        job.cancel(msg=u'I cancelled it')
        recipe = job.recipesets[0].recipes[0]
        job.update_status()
        out = job_to_junit_xml(job)
        expected = """\
<?xml version=\'1.0\' encoding=\'utf8\'?>
<testsuites>
  <testsuite name="cancelled" id="R:%s" tests="1" failures="0" errors="0">
    <testcase classname="/test_junixml/cancelled">
      <system-out></system-out>
    </testcase>
    <testcase classname="/test_junixml/cancelled" name="(none)">
      <skipped message="I cancelled it" type="skipped"/>
      <system-out></system-out>
    </testcase>
  </testsuite>
</testsuites>
""" % recipe.id
        self.assertMultiLineEqual(expected, out)
示例#6
0
    def test_cancelled_recipe_has_tasks_never_started(self):
        job = data_setup.create_job(recipe_whiteboard=u'cancelled',
                task_name=u'/test_junixml/cancelled')
        job.cancel(msg=u'I cancelled it')
        recipe = job.recipesets[0].recipes[0]
        job.update_status()
        out = job_to_junit_xml(job)
        expected = """\
<?xml version=\'1.0\' encoding=\'utf8\'?>
<testsuites>
  <testsuite name="cancelled" id="R:%s" tests="1" failures="0" errors="0">
    <testcase classname="/test_junixml/cancelled">
      <system-out></system-out>
    </testcase>
    <testcase classname="/test_junixml/cancelled" name="(none)">
      <skipped message="I cancelled it" type="skipped"/>
      <system-out></system-out>
    </testcase>
  </testsuite>
</testsuites>
""" % recipe.id
        self.assertMultiLineEqual(expected, out)