Build: #336 failed

Job: Default Job failed

Stages & jobs

  1. Default Stage

Add link: Test case result

The below summarizes the result of the test "Add link" in build 336 of FLARECAST - propertyservice - Default Job. View test case history
Description
Add link
Test class
link_tests.LinkTests
Method
test_add_link
Duration
< 1 sec
Status
Failed (New Failure)

Error Log

RestException: {   "status": 500,    "type": "about:blank",    "detail": "The server encountered an internal error and was unable to complete your request.  Either the server is overloaded or there is an error in the application.",    "title": "Internal Server Error" }
self = <tests.link_tests.LinkTests testMethod=test_add_link>

    def setUp(self):
        super(LinkTests, self).setUp()
>       data = self.client.get_properties(TEST_PROVENANCE)

link_tests.py:13: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/home/bamboo/.local/lib/python2.7/site-packages/flarecast/utils/property_service_client.py:113: in get_properties
    return self.__get_request(url)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

url = 'http://localhost:8002/property/test_prov/list'

    @staticmethod
    def __get_request(url):
        r = requests.get(url)
    
        if r.status_code != 200:
>           raise RestException(r)
E           RestException: {
E             "status": 500, 
E             "type": "about:blank", 
E             "detail": "The server encountered an internal error and was unable to complete your request.  Either the server is overloaded or there is an error in the application.", 
E             "title": "Internal Server Error"
E           }

/home/bamboo/.local/lib/python2.7/site-packages/flarecast/utils/property_service_client.py:214: RestException