Build: #336 failed
Job: Default Job failed
Add multiple properties: Test case result
The below summarizes the result of the test "Add multiple properties" in build 336 of FLARECAST - propertyservice - Default Job.
- Description
- Add multiple properties
- Test class
- property_tests.PropertyTests
- Method
- test_add_multiple_properties
- 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>
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