forked from AtsushiSakai/PythonRobotics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_grid_based_sweep_coverage_path_planner.py
118 lines (98 loc) · 3.14 KB
/
test_grid_based_sweep_coverage_path_planner.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import conftest
from PathPlanning.GridBasedSweepCPP \
import grid_based_sweep_coverage_path_planner
grid_based_sweep_coverage_path_planner.do_animation = False
RIGHT = grid_based_sweep_coverage_path_planner. \
SweepSearcher.MovingDirection.RIGHT
LEFT = grid_based_sweep_coverage_path_planner. \
SweepSearcher.MovingDirection.LEFT
UP = grid_based_sweep_coverage_path_planner. \
SweepSearcher.SweepDirection.UP
DOWN = grid_based_sweep_coverage_path_planner. \
SweepSearcher.SweepDirection.DOWN
def test_planning1():
ox = [0.0, 20.0, 50.0, 100.0, 130.0, 40.0, 0.0]
oy = [0.0, -20.0, 0.0, 30.0, 60.0, 80.0, 0.0]
resolution = 5.0
px, py = grid_based_sweep_coverage_path_planner.planning(
ox, oy, resolution,
moving_direction=RIGHT,
sweeping_direction=DOWN,
)
assert len(px) >= 5
px, py = grid_based_sweep_coverage_path_planner.planning(
ox, oy, resolution,
moving_direction=LEFT,
sweeping_direction=DOWN,
)
assert len(px) >= 5
px, py = grid_based_sweep_coverage_path_planner.planning(
ox, oy, resolution,
moving_direction=RIGHT,
sweeping_direction=UP,
)
assert len(px) >= 5
px, py = grid_based_sweep_coverage_path_planner.planning(
ox, oy, resolution,
moving_direction=RIGHT,
sweeping_direction=UP,
)
assert len(px) >= 5
def test_planning2():
ox = [0.0, 50.0, 50.0, 0.0, 0.0]
oy = [0.0, 0.0, 30.0, 30.0, 0.0]
resolution = 1.3
px, py = grid_based_sweep_coverage_path_planner.planning(
ox, oy, resolution,
moving_direction=RIGHT,
sweeping_direction=DOWN,
)
assert len(px) >= 5
px, py = grid_based_sweep_coverage_path_planner.planning(
ox, oy, resolution,
moving_direction=LEFT,
sweeping_direction=DOWN,
)
assert len(px) >= 5
px, py = grid_based_sweep_coverage_path_planner.planning(
ox, oy, resolution,
moving_direction=RIGHT,
sweeping_direction=UP,
)
assert len(px) >= 5
px, py = grid_based_sweep_coverage_path_planner.planning(
ox, oy, resolution,
moving_direction=RIGHT,
sweeping_direction=DOWN,
)
assert len(px) >= 5
def test_planning3():
ox = [0.0, 20.0, 50.0, 200.0, 130.0, 40.0, 0.0]
oy = [0.0, -80.0, 0.0, 30.0, 60.0, 80.0, 0.0]
resolution = 5.1
px, py = grid_based_sweep_coverage_path_planner.planning(
ox, oy, resolution,
moving_direction=RIGHT,
sweeping_direction=DOWN,
)
assert len(px) >= 5
px, py = grid_based_sweep_coverage_path_planner.planning(
ox, oy, resolution,
moving_direction=LEFT,
sweeping_direction=DOWN,
)
assert len(px) >= 5
px, py = grid_based_sweep_coverage_path_planner.planning(
ox, oy, resolution,
moving_direction=RIGHT,
sweeping_direction=UP,
)
assert len(px) >= 5
px, py = grid_based_sweep_coverage_path_planner.planning(
ox, oy, resolution,
moving_direction=RIGHT,
sweeping_direction=DOWN,
)
assert len(px) >= 5
if __name__ == '__main__':
conftest.run_this_test(__file__)