mirror of
https://github.com/hwchase17/langchain
synced 2024-10-29 17:07:25 +00:00
cc33bde74f
Adding Confluence to Jira tool. Can create a page in Confluence with this PR. If accepted, will extend functionality to Bitbucket and additional Confluence features. --------- Co-authored-by: Ethan Bowen <ethan.bowen@slalom.com>
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
"""Integration test for JIRA API Wrapper."""
|
|
from langchain.utilities.jira import JiraAPIWrapper
|
|
|
|
|
|
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
|
|
|
|
|
|
def test_create_confluence_page() -> None:
|
|
"""Test for getting projects on JIRA"""
|
|
jira = JiraAPIWrapper()
|
|
create_page_dict = (
|
|
'{"space": "ROC", "title":"This is the title",'
|
|
'"body":"This is the body. You can use '
|
|
'<strong>HTML tags</strong>!"}'
|
|
)
|
|
|
|
output = jira.run("create_page", create_page_dict)
|
|
assert "type" in output
|
|
assert "page" in output
|