1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- # Copyright 2021-2024 Avaiga Private Limited
- #
- # Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
- # the License. You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
- # an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
- # specific language governing permissions and limitations under the License.
- import pandas as pd
- import taipy.gui.builder as tgb
- from taipy.gui import Gui
- def test_selector_builder_1(gui: Gui, test_client, helpers):
- gui._bind_var_val("selected_val", ["l1", "l2"])
- gui._bind_var_val("selector_properties", {"lov": [("l1", "v1"), ("l2", "v2"), ("l3", "v3")], "filter": True})
- with tgb.Page(frame=None) as page:
- tgb.selector(value="{selected_val}", properties="{selector_properties}", multiple=True) # type: ignore[attr-defined]
- expected_list = [
- "<Selector",
- 'defaultLov="[["l1", "v1"], ["l2", "v2"], ["l3", "v3"]]"', # noqa: E501
- 'defaultValue="["l1", "l2"]"',
- "filter={true}",
- "multiple={true}",
- 'updateVarName="_TpLv_tpec_TpExPr_selected_val_TPMDL_0"',
- "value={_TpLv_tpec_TpExPr_selected_val_TPMDL_0}",
- ]
- helpers.test_control_builder(gui, page, expected_list)
- def test_selector_builder_2(gui: Gui, test_client, helpers):
- gui._bind_var_val("selected_val", "Item 2")
- with tgb.Page(frame=None) as page:
- tgb.selector(value="{selected_val}", lov="Item 1;Item 2; This is a another value") # type: ignore[attr-defined]
- expected_list = [
- "<Selector",
- 'defaultLov="["Item 1", "Item 2", " This is a another value"]"',
- 'defaultValue="["Item 2"]"',
- 'updateVarName="_TpLv_tpec_TpExPr_selected_val_TPMDL_0"',
- "value={_TpLv_tpec_TpExPr_selected_val_TPMDL_0}",
- ]
- helpers.test_control_builder(gui, page, expected_list)
- def test_selector_builder_3(gui: Gui, test_client, helpers):
- gui._bind_var_val("elt", None)
- gui._bind_var_val(
- "scenario_list",
- [{"id": "1", "name": "scenario 1"}, {"id": "3", "name": "scenario 3"}, {"id": "2", "name": "scenario 2"}],
- )
- gui._bind_var_val("selected_obj", {"id": "1", "name": "scenario 1"})
- with tgb.Page(frame=None) as page:
- tgb.selector( # type: ignore[attr-defined]
- value="{selected_obj}",
- lov="{scenario_list}",
- adapter="{lambda elt: (elt['id'], elt['name'])}",
- propagate=False,
- )
- expected_list = [
- "<Selector",
- 'defaultLov="[["1", "scenario 1"], ["3", "scenario 3"], ["2", "scenario 2"]]"', # noqa: E501
- 'defaultValue="["1"]"',
- "lov={_TpL_tp_TpExPr_gui_get_adapted_lov_scenario_list_dict_TPMDL_0_0}",
- "propagate={false}",
- 'updateVars="lov=_TpL_tp_TpExPr_gui_get_adapted_lov_scenario_list_dict_TPMDL_0_0"',
- 'updateVarName="_TpLv_tpec_TpExPr_selected_obj_TPMDL_0"',
- "value={_TpLv_tpec_TpExPr_selected_obj_TPMDL_0}",
- ]
- helpers.test_control_builder(gui, page, expected_list)
- def test_selector_pandas_series(gui: Gui, test_client, helpers):
- pd_series = pd.Series(["l1", "l2", "l3"])
- gui._bind_var_val("selected_val", "l1")
- gui._bind_var_val("selector_properties", pd_series)
- with tgb.Page(frame=None) as page:
- tgb.selector(value="{selected_val}", lov="{selector_properties}") # type: ignore[attr-defined]
- expected_list = [
- "<Selector",
- 'defaultLov="["l1", "l2", "l3"]"',
- 'defaultValue="["l1"]"',
- 'updateVarName="_TpLv_tpec_TpExPr_selected_val_TPMDL_0"',
- "value={_TpLv_tpec_TpExPr_selected_val_TPMDL_0}",
- ]
- helpers.test_control_builder(gui, page, expected_list)
|