You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

conftest.py 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #
  2. # Copyright 2025 The InfiniFlow Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. import pytest
  17. from common import create_session_with_chat_assistant, delete_session_with_chat_assistants
  18. @pytest.fixture(scope="class")
  19. def add_sessions_with_chat_assistant(request, api_key, add_chat_assistants):
  20. _, _, chat_assistant_ids = add_chat_assistants
  21. def cleanup():
  22. for chat_assistant_id in chat_assistant_ids:
  23. delete_session_with_chat_assistants(api_key, chat_assistant_id)
  24. request.addfinalizer(cleanup)
  25. session_ids = []
  26. for i in range(5):
  27. res = create_session_with_chat_assistant(api_key, chat_assistant_ids[0], {"name": f"session_with_chat_assistant_{i}"})
  28. session_ids.append(res["data"]["id"])
  29. return chat_assistant_ids[0], session_ids
  30. @pytest.fixture(scope="function")
  31. def add_sessions_with_chat_assistant_func(request, api_key, add_chat_assistants):
  32. _, _, chat_assistant_ids = add_chat_assistants
  33. def cleanup():
  34. for chat_assistant_id in chat_assistant_ids:
  35. delete_session_with_chat_assistants(api_key, chat_assistant_id)
  36. request.addfinalizer(cleanup)
  37. session_ids = []
  38. for i in range(5):
  39. res = create_session_with_chat_assistant(api_key, chat_assistant_ids[0], {"name": f"session_with_chat_assistant_{i}"})
  40. session_ids.append(res["data"]["id"])
  41. return chat_assistant_ids[0], session_ids