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.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 batch_create_dialogs, delete_dialogs
  18. @pytest.fixture(scope="function")
  19. def add_dialog_func(request, WebApiAuth, add_dataset_func):
  20. def cleanup():
  21. delete_dialogs(WebApiAuth)
  22. request.addfinalizer(cleanup)
  23. dataset_id = add_dataset_func
  24. return dataset_id, batch_create_dialogs(WebApiAuth, 1, [dataset_id])[0]
  25. @pytest.fixture(scope="class")
  26. def add_dialogs(request, WebApiAuth, add_dataset):
  27. def cleanup():
  28. delete_dialogs(WebApiAuth)
  29. request.addfinalizer(cleanup)
  30. dataset_id = add_dataset
  31. return dataset_id, batch_create_dialogs(WebApiAuth, 5, [dataset_id])
  32. @pytest.fixture(scope="function")
  33. def add_dialogs_func(request, WebApiAuth, add_dataset_func):
  34. def cleanup():
  35. delete_dialogs(WebApiAuth)
  36. request.addfinalizer(cleanup)
  37. dataset_id = add_dataset_func
  38. return dataset_id, batch_create_dialogs(WebApiAuth, 5, [dataset_id])