Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/tests/netedit/selection/basic/wrong_parameters/test.py
169708 views
1
#!/usr/bin/env python
2
# Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3
# Copyright (C) 2009-2025 German Aerospace Center (DLR) and others.
4
# This program and the accompanying materials are made available under the
5
# terms of the Eclipse Public License 2.0 which is available at
6
# https://www.eclipse.org/legal/epl-2.0/
7
# This Source Code may also be made available under the following Secondary
8
# Licenses when the conditions for such availability set forth in the Eclipse
9
# Public License 2.0 are satisfied: GNU General Public License, version 2
10
# or later which is available at
11
# https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13
14
# @file test.py
15
# @author Pablo Alvarez Lopez
16
# @date 2016-11-25
17
18
# import common functions for netedit tests
19
import os
20
import sys
21
22
sys.path.append(os.path.join(os.environ.get("SUMO_HOME", "."), "tools"))
23
import neteditTestFunctions as netedit # noqa
24
25
# Open netedit
26
neteditProcess, referencePosition = netedit.setupAndStart()
27
28
# go to select mode
29
netedit.changeMode("select")
30
31
# try to select node gneJ0 and delete it (Error in element set)
32
netedit.focusOnFrame()
33
for x in range(0, 8):
34
netedit.typeKey("tab")
35
36
# paste the new elementClass
37
netedit.updateText("dummyElement")
38
39
# set elementClass
40
netedit.typeKey("enter")
41
42
# try to select node gneJ0 and delete it (Error in element type)
43
netedit.focusOnFrame()
44
for x in range(0, 8):
45
netedit.typeKey("tab")
46
47
# paste the new elementClass
48
netedit.updateText("Network")
49
50
# jump to element
51
for x in range(0, 3):
52
netedit.typeKey("tab")
53
54
# paste the new elementType
55
netedit.updateText("dummyType")
56
57
# type tab to set elementType
58
netedit.typeKey("enter")
59
60
# try to select node gneJ0 and delete it (Error in set)
61
netedit.focusOnFrame()
62
for x in range(0, 8):
63
netedit.typeKey("tab")
64
65
# paste the new elementClass
66
netedit.updateText("Network")
67
68
# jump to element
69
for x in range(0, 3):
70
netedit.typeKey("tab")
71
72
# paste the new elementType
73
netedit.updateText("junction")
74
75
# jump to attribute
76
for x in range(0, 2):
77
netedit.typeKey("tab")
78
79
# paste the new attribute
80
netedit.updateText("dummyAttribute")
81
82
# type enter to set attribute
83
netedit.typeKey("enter")
84
85
# try to select node gneJ0 and delete it (Error in type of element)
86
netedit.selectNetworkItems("junction", "id", "J0")
87
netedit.delete()
88
89
# save Netedit config
90
netedit.saveExistentFile("neteditConfig")
91
92
# quit netedit
93
netedit.quit(neteditProcess)
94
95