2022-10-27 07:10:26 +08:00
|
|
|
import pytest
|
2023-03-14 08:12:41 +08:00
|
|
|
from fastapi.testclient import TestClient
|
2022-10-27 07:10:26 +08:00
|
|
|
|
|
|
|
import gradio as gr
|
|
|
|
|
|
|
|
|
2023-02-17 23:20:57 +08:00
|
|
|
class TestEvent:
|
|
|
|
def test_clear_event(self):
|
|
|
|
def fn_img_cleared():
|
|
|
|
print("image cleared")
|
|
|
|
|
|
|
|
with gr.Blocks() as demo:
|
|
|
|
img = gr.Image(
|
|
|
|
type="pil", label="Start by uploading an image", elem_id="input_image"
|
|
|
|
)
|
|
|
|
|
|
|
|
img.clear(fn_img_cleared, [], [])
|
|
|
|
|
|
|
|
assert demo.config["dependencies"][0]["trigger"] == "clear"
|
|
|
|
|
2023-03-14 08:12:41 +08:00
|
|
|
def test_event_data(self):
|
|
|
|
with gr.Blocks() as demo:
|
|
|
|
text = gr.Textbox()
|
|
|
|
gallery = gr.Gallery()
|
|
|
|
|
|
|
|
def fn_img_index(evt: gr.SelectData):
|
|
|
|
return evt.index
|
|
|
|
|
|
|
|
gallery.select(fn_img_index, None, text)
|
|
|
|
|
|
|
|
app, _, _ = demo.launch(prevent_thread_lock=True)
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
|
|
resp = client.post(
|
|
|
|
f"{demo.local_url}run/predict",
|
|
|
|
json={"fn_index": 0, "data": [], "event_data": {"index": 1, "value": None}},
|
|
|
|
)
|
|
|
|
assert resp.status_code == 200
|
|
|
|
assert resp.json()["data"][0] == "1"
|
|
|
|
|
2023-03-12 12:38:22 +08:00
|
|
|
def test_consecutive_events(self):
|
|
|
|
def double(x):
|
|
|
|
return x + x
|
|
|
|
|
|
|
|
def reverse(x):
|
|
|
|
return x[::-1]
|
|
|
|
|
|
|
|
def clear():
|
|
|
|
return ""
|
|
|
|
|
|
|
|
with gr.Blocks() as child:
|
|
|
|
txt1 = gr.Textbox()
|
|
|
|
txt2 = gr.Textbox()
|
|
|
|
txt3 = gr.Textbox()
|
|
|
|
|
|
|
|
txt1.submit(double, txt1, txt2).then(reverse, txt2, txt3).success(
|
|
|
|
clear, None, txt1
|
|
|
|
)
|
|
|
|
|
|
|
|
with gr.Blocks() as parent:
|
|
|
|
txt0 = gr.Textbox()
|
|
|
|
txt0.submit(lambda x: x, txt0, txt0)
|
|
|
|
child.render()
|
|
|
|
|
|
|
|
assert parent.config["dependencies"][1]["trigger_after"] is None
|
|
|
|
assert parent.config["dependencies"][2]["trigger_after"] == 1
|
|
|
|
assert parent.config["dependencies"][3]["trigger_after"] == 2
|
|
|
|
|
|
|
|
assert not parent.config["dependencies"][2]["trigger_only_on_success"]
|
|
|
|
assert parent.config["dependencies"][3]["trigger_only_on_success"]
|
|
|
|
|
2023-05-30 04:52:23 +08:00
|
|
|
def test_load_chaining(self):
|
|
|
|
calls = 0
|
|
|
|
|
|
|
|
def increment():
|
|
|
|
nonlocal calls
|
|
|
|
calls += 1
|
|
|
|
return str(calls)
|
|
|
|
|
|
|
|
with gr.Blocks() as demo:
|
|
|
|
out = gr.Textbox(label="Call counter")
|
|
|
|
demo.load(increment, inputs=None, outputs=out).then(
|
|
|
|
increment, inputs=None, outputs=out
|
|
|
|
)
|
|
|
|
|
|
|
|
assert demo.config["dependencies"][0]["trigger"] == "load"
|
|
|
|
assert demo.config["dependencies"][0]["trigger_after"] is None
|
|
|
|
assert demo.config["dependencies"][1]["trigger"] == "then"
|
|
|
|
assert demo.config["dependencies"][1]["trigger_after"] == 0
|
|
|
|
|
|
|
|
def test_load_chaining_reuse(self):
|
|
|
|
calls = 0
|
|
|
|
|
|
|
|
def increment():
|
|
|
|
nonlocal calls
|
|
|
|
calls += 1
|
|
|
|
return str(calls)
|
|
|
|
|
|
|
|
with gr.Blocks() as demo:
|
|
|
|
out = gr.Textbox(label="Call counter")
|
|
|
|
demo.load(increment, inputs=None, outputs=out).then(
|
|
|
|
increment, inputs=None, outputs=out
|
|
|
|
)
|
|
|
|
|
|
|
|
with gr.Blocks() as demo2:
|
|
|
|
demo.render()
|
|
|
|
|
|
|
|
assert demo2.config["dependencies"][0]["trigger"] == "load"
|
|
|
|
assert demo2.config["dependencies"][0]["trigger_after"] is None
|
|
|
|
assert demo2.config["dependencies"][1]["trigger"] == "then"
|
|
|
|
assert demo2.config["dependencies"][1]["trigger_after"] == 0
|
|
|
|
|
2023-02-17 23:20:57 +08:00
|
|
|
|
2022-10-27 07:10:26 +08:00
|
|
|
class TestEventErrors:
|
|
|
|
def test_event_defined_invalid_scope(self):
|
|
|
|
with gr.Blocks() as demo:
|
|
|
|
textbox = gr.Textbox()
|
|
|
|
textbox.blur(lambda x: x + x, textbox, textbox)
|
|
|
|
|
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
demo.load(lambda: "hello", None, textbox)
|
|
|
|
|
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
textbox.change(lambda x: x + x, textbox, textbox)
|