Build: #429 failed

Job: Default Job failed

Stages & jobs

  1. Default Stage

3 get property groups: Test case result

The below summarizes the result of the test "3 get property groups" in build 429 of FLARECAST - propertyservice - Default Job. View test case history
Description
3 get property groups
Test class
property_group_tests.PropertyGroupTests
Method
test_3_get_property_groups
Duration
< 1 sec
Status
Failed (New Failure)

Error Log

test setup failure
self = <class 'tests.property_group_tests.PropertyGroupTests'>

    @classmethod
    def setUpClass(self):
        super(PropertyGroupTests, self).setUpClass()
>       post_request(self.service_url + self.__ADD_DATASETS, TEST_DATASETS)

property_group_tests.py:20: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

url = 'http://localhost:8002/dataset/bulk'
payload = [{'description': '...', 'name': 'test_ds1', 'responsible': 'John Doe'}, {'description': '...', 'name': 'test_ds2', 'responsible': 'John Doe'}]

    def post_request(url, payload):
        headers = {'Content-Type': 'application/json'}
        r = requests.post(url, json=payload, headers=headers)
    
        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           }

util.py:12: RestException