gradio/test/test_flagging.py

72 lines
2.8 KiB
Python
Raw Normal View History

2022-01-26 13:44:41 +08:00
import os
import tempfile
import unittest
2022-01-26 13:44:41 +08:00
from unittest.mock import MagicMock
import huggingface_hub
import gradio as gr
from gradio import flagging
2022-01-24 12:54:48 +08:00
class TestDefaultFlagging(unittest.TestCase):
2022-01-26 13:44:41 +08:00
def test_default_flagging_callback(self):
with tempfile.TemporaryDirectory() as tmpdirname:
2021-11-13 14:33:59 +08:00
io = gr.Interface(lambda x: x, "text", "text", flagging_dir=tmpdirname)
io.launch(prevent_thread_lock=True)
2021-11-17 02:43:40 +08:00
row_count = io.flagging_callback.flag(io, ["test"], ["test"])
2021-11-13 14:33:59 +08:00
self.assertEqual(row_count, 1) # 2 rows written including header
2021-11-17 02:43:40 +08:00
row_count = io.flagging_callback.flag(io, ["test"], ["test"])
2021-11-13 14:33:59 +08:00
self.assertEqual(row_count, 2) # 3 rows written including header
io.close()
2022-01-24 12:54:48 +08:00
class TestSimpleFlagging(unittest.TestCase):
2022-01-26 13:44:41 +08:00
def test_simple_csv_flagging_callback(self):
2021-11-13 14:33:59 +08:00
with tempfile.TemporaryDirectory() as tmpdirname:
io = gr.Interface(
lambda x: x,
"text",
"text",
flagging_dir=tmpdirname,
flagging_callback=flagging.SimpleCSVLogger(),
)
2021-11-13 14:33:59 +08:00
io.launch(prevent_thread_lock=True)
2021-11-17 02:43:40 +08:00
row_count = io.flagging_callback.flag(io, ["test"], ["test"])
2022-01-26 13:44:41 +08:00
self.assertEqual(row_count, 0) # no header in SimpleCSVLogger
2021-11-17 02:43:40 +08:00
row_count = io.flagging_callback.flag(io, ["test"], ["test"])
2022-01-26 13:44:41 +08:00
self.assertEqual(row_count, 1) # no header in SimpleCSVLogger
2021-11-13 14:33:59 +08:00
io.close()
2022-01-24 12:54:48 +08:00
2022-01-26 13:44:41 +08:00
class TestHuggingFaceDatasetSaver(unittest.TestCase):
def test_saver_setup(self):
huggingface_hub.create_repo = MagicMock()
huggingface_hub.Repository = MagicMock()
flagger = flagging.HuggingFaceDatasetSaver("test", "test")
with tempfile.TemporaryDirectory() as tmpdirname:
flagger.setup(tmpdirname)
huggingface_hub.create_repo.assert_called_once()
def test_saver_flag(self):
huggingface_hub.create_repo = MagicMock()
huggingface_hub.Repository = MagicMock()
with tempfile.TemporaryDirectory() as tmpdirname:
io = gr.Interface(
lambda x: x,
"text",
"text",
flagging_dir=tmpdirname,
flagging_callback=flagging.HuggingFaceDatasetSaver("test", "test"),
)
os.mkdir(os.path.join(tmpdirname, "test"))
io.launch(prevent_thread_lock=True)
row_count = io.flagging_callback.flag(io, ["test"], ["test"])
self.assertEqual(row_count, 1) # 2 rows written including header
row_count = io.flagging_callback.flag(io, ["test"], ["test"])
self.assertEqual(row_count, 2) # 3 rows written including header
if __name__ == "__main__":
unittest.main()