mirror of
https://github.com/hwchase17/langchain
synced 2024-10-29 17:07:25 +00:00
d2f922f525
The awesome JIRA tool created by @zywilliamli calls the `create_issue()` method to create issues, however, the actual method is `issue_create()`. Details in the Documentation here: https://atlassian-python-api.readthedocs.io/jira.html#manage-issues
24 lines
859 B
Python
24 lines
859 B
Python
"""Integration test for JIRA API Wrapper."""
|
|
from langchain.utilities.jira import JiraAPIWrapper
|
|
import json
|
|
|
|
def test_search() -> None:
|
|
"""Test for Searching issues on JIRA"""
|
|
jql = "project = TP"
|
|
jira = JiraAPIWrapper()
|
|
output = jira.run("jql", jql)
|
|
assert 'issues' in output
|
|
|
|
def test_getprojects() -> None:
|
|
"""Test for getting projects on JIRA"""
|
|
jira = JiraAPIWrapper()
|
|
output = jira.run("get_projects", "")
|
|
assert 'projects' in output
|
|
|
|
def test_create_ticket() -> None:
|
|
"""Test the Create Ticket Call that Creates a Issue/Ticket on JIRA."""
|
|
issue_string = '{"summary": "Test Summary", "description": "Test Description", "issuetype": {"name": "Bug"}, "project": {"key": "TP"}}'
|
|
jira = JiraAPIWrapper()
|
|
output = jira.run("create_issue", issue_string)
|
|
assert 'id' in output
|
|
assert 'key' in output |