Build: #336 failed

Job: Default Job failed

Stages & jobs

  1. Default Stage

Add multiple properties from other provenance: Test case result

The below summarizes the result of the test "Add multiple properties from other provenance" in build 336 of FLARECAST - propertyservice - Default Job. View test case history
Description
Add multiple properties from other provenance
Test class
property_tests.PropertyTests
Method
test_add_multiple_properties_from_other_provenance
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.property_tests.PropertyTests testMethod=test_add_multiple_properties_from_other_provenance>

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

property_tests.py:14: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/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