Build: #666 failed

Job: Default Job failed

Stages & jobs

  1. Default Stage

3 get link graph: Test case result

The below summarizes the result of the test "3 get link graph" in build 666 of FLARECAST - propertyservice - Default Job. View test case history
Description
3 get link graph
Test class
link_tests.LinkTests
Method
test_3_get_link_graph
Duration
< 1 sec
Status
Failed (Existing Failure)

Error Log

Exception: <Response [500]>
self = <tests.link_tests.LinkTests testMethod=test_3_get_link_graph>

    def test_3_get_link_graph(self):
        result = get_request(
            self.service_url + self.__GET_LINK_GRAPH,
            {
                "fc_id": self.test_links[0]["fk_source"],
>               "type": self.test_links[0]["type"]
            }
        )

link_tests.py:69: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

url = 'http://localhost:8002/link/graph'
params = {'fc_id': 'flarecast-test_ds1-00000000-0000-0000-0000-000000000003', 'type': 'type1'}

    def get_request(url, params={}):
        r = requests.get(url, params=params)
    
        if r.status_code != 200:
>           raise Exception(r)
E           Exception: <Response [500]>

util.py:29: Exception