捕获jira-python异常

时间:2013-08-21 22:16:23

标签: python jira python-3.3 python-jira

我正在尝试处理jira-python异常,但我的尝试,除了似乎没有抓住它。我还需要添加更多行才能发布此内容。他们就是那些线。

try:
    new_issue = jira.create_issue(fields=issue_dict)
    stdout.write(str(new_issue.id))
except jira.exceptions.JIRAError:
    stdout.write("JIRAError")
    exit(1)

以下是引发异常的代码:

import json


class JIRAError(Exception):
    """General error raised for all problems in operation of the client."""
    def __init__(self, status_code=None, text=None, url=None):
        self.status_code = status_code
        self.text = text
        self.url = url

    def __str__(self):
        if self.text:
            return 'HTTP {0}: "{1}"\n{2}'.format(self.status_code, self.text, self.url)
        else:
            return 'HTTP {0}: {1}'.format(self.status_code, self.url)


def raise_on_error(r):
    if r.status_code >= 400:
        error = ''
        if r.text:
            try:
                response = json.loads(r.text)
                if 'message' in response:
                    # JIRA 5.1 errors
                    error = response['message']
                elif 'errorMessages' in response and len(response['errorMessages']) > 0:
                    # JIRA 5.0.x error messages sometimes come wrapped in this array
                    # Sometimes this is present but empty
                    errorMessages = response['errorMessages']
                    if isinstance(errorMessages, (list, tuple)):
                        error = errorMessages[0]
                    else:
                        error = errorMessages
                elif 'errors' in response and len(response['errors']) > 0:
                    # JIRA 6.x error messages are found in this array.
                    error = response['errors']
                else:
                    error = r.text
            except ValueError:
                error = r.text
        raise JIRAError(r.status_code, error, r.url)

4 个答案:

答案 0 :(得分:5)

我知道我没有回答这个问题,但我觉得我需要提醒那些可能会被代码混淆的人(正如我所做的那样)...... 也许你正在尝试编写自己的jira-python版本,或者它是旧版本?

在任何情况下,security feature introduced指向JIRAError类的jira-python代码的链接 和here代码列表

从该包中捕获异常我使用下面的代码

from jira import JIRA, JIRAError
try:
   ...
except JIRAError as e:
   print e.status_code, e.text

答案 1 :(得分:2)

我可能错了,但看起来你正在追赶jira.exceptions.JIRAError,同时提出JIRAError - 这些是不同的类型。您需要从jira.exceptions.语句中删除“except”部分,或者提升jira.exceptions.JIRAError

答案 2 :(得分:1)

也许这很明显,这就是为什么你的代码粘贴中没有它,以防万一你有

from jira.exceptions import JIRAError

代码中的某处?

评论的声誉不够,所以我会为@arynhard添加答案: 我发现文档在示例方面非常轻松,你可能会发现这个repo中的脚本很有用,因为它们都是在某种程度上利用jira-python。 https://github.com/eucalyptus/jira-scripts/

答案 3 :(得分:1)

好吧,这是一个非常古老的问题,但我遇到了同样的问题,这个页面仍在显示。

以下是我如何捕获异常,我使用了Exception对象。

 try:
        issue = jira.issue('jira-1')
 except  Exception as e:
        if 'EXIST' in e.text:
                print 'The issue does not exist'
                exit(1)

问候