-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest_dash.py
91 lines (67 loc) · 2.03 KB
/
test_dash.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
from oneface.dash_app import *
from oneface.core import one
from oneface.dash_app.embed import flask_route
from funcdesc import Val
from dash import dcc
def test_app_create():
@app
@one
def func(a: Val(int, [0, 10]), b: Val(float, [0, 5])):
return a + b
assert func.get_dash_app() is not None
assert func.input_names == ['a', 'b']
assert func.input_types == [int, float]
def test_field_default_value():
@app
@one
def func(a: Val[int, [-10, 10]] = 0,
b: int = 20):
return a + b
dash_app = func.get_dash_app()
assert 0 == dash_app.layout.children[1].children[1].value
assert 20 == dash_app.layout.children[2].children[1].value
@app
@one
def func1(a: bool):
return a
dash_app = func1.get_dash_app()
assert 'True' == dash_app.layout.children[1].children[1].value
def test_download_show_type():
@app(result_show_type="download")
@one
def func(a: str):
return ""
dash_app = func.get_dash_app()
assert isinstance(dash_app.layout.children[-1], dcc.Download)
def test_plotly_show_type():
@app(result_show_type="plotly")
@one
def func():
import plotly.express as px
fig = px.scatter(x=[0, 1, 2, 3, 4], y=[0, 1, 4, 9, 16])
return fig
dash_app = func.get_dash_app()
assert isinstance(dash_app.layout.children[-1], dcc.Graph)
def test_embed():
from flask import Flask
server = Flask("test")
@flask_route(server, "/dash")
@app
@one
def func(name: str):
return name
def test_on_native_func():
@app
def func(a: int, b: float):
return a + b
assert func.get_dash_app() is not None
assert func.input_names == ['a', 'b']
assert func.input_types == [int, float]
class A():
@app
def mth1(self, name: str, weight: float):
return name, weight
a = A()
assert a.mth1.get_dash_app() is not None
assert a.mth1.input_names == ['name', 'weight']
assert a.mth1.input_types == [str, float]