def _do_test_fail_not_found(self, api_client_mgmt, init_users, tenant_id=None): auth = None if tenant_id is not None: auth = make_auth("foo", tenant_id) try: not_found = api_client_mgmt.get_user("madeupid", auth) except bravado.exception.HTTPError as e: assert e.response.status_code == 404
def _do_test_ok(self, api_client_mgmt, init_users, tenant_id=None): auth = None if tenant_id is not None: auth = make_auth("foo", tenant_id) for u in init_users: found = api_client_mgmt.get_user(u.id, auth) assert found.id == u.id assert found.email == u.email assert found.created_ts == u.created_ts assert found.updated_ts == u.updated_ts