1
+ @testset " Space" begin
2
+
3
+ @testset " BoxSpace" begin
4
+ @test occursin (0.5 , BoxSpace (0 , 1 )) == true
5
+ @test occursin (0.0 , BoxSpace (0 , 1 )) == true
6
+ @test occursin (1.0 , BoxSpace (0 , 1 )) == true
7
+ @test occursin (- 1.0 , BoxSpace (0 , 1 )) == false
8
+ @test occursin (- Inf , BoxSpace (0 , 1 )) == false
9
+ @test occursin ([0.5 ], BoxSpace (0 , 1 )) == true
10
+
11
+ @test occursin ([0 , 0 ], BoxSpace ([- 1 , - 2 ], [1 , 2 ])) == true
12
+ @test occursin ([0 , 3 ], BoxSpace ([- 1 , - 2 ], [1 , 2 ])) == false
13
+ @test occursin ([0 , 0 ], BoxSpace ([- 1 , - 2 ], [1 , 2 ])) == true
14
+ end
15
+
16
+ @testset " DiscreteSpace" begin
17
+ @test occursin (0 , DiscreteSpace (10 , 0 )) == true
18
+ @test occursin (5 , DiscreteSpace (10 , 0 )) == true
19
+ @test occursin (10 , DiscreteSpace (10 , 0 )) == false
20
+ end
21
+
22
+ @testset " MultiBinarySpace" begin
23
+ @test occursin ([true false ; true false ], MultiBinarySpace (2 ,2 )) == true
24
+ @test occursin ([true false ], MultiBinarySpace (2 ,2 )) == false
25
+ end
26
+
27
+ @testset " MultiDiscreteSpace" begin
28
+ @test occursin (0 , MultiDiscreteSpace ([2 ,3 ,2 ], 0 )) == true
29
+ @test occursin (1 , MultiDiscreteSpace ([2 ,3 ,2 ], 0 )) == true
30
+ @test occursin (2 , MultiDiscreteSpace ([2 ,3 ,2 ], 0 )) == false
31
+ @test occursin ([1 ,1 ,1 ], MultiDiscreteSpace ([2 ,3 ,2 ], 0 )) == true
32
+ @test occursin ([0 ,0 ,0 ], MultiDiscreteSpace ([2 ,3 ,2 ], 0 )) == true
33
+ @test occursin ([3 ,3 ,3 ], MultiDiscreteSpace ([2 ,3 ,2 ], 0 )) == false
34
+ end
35
+
36
+ @testset " Space Tuple" begin
37
+ @test occursin (([0.5 ], 5 , [true true ; true true ], [1 , 1 ]),
38
+ (BoxSpace (0 ,1 ), DiscreteSpace (5 , 0 ), MultiBinarySpace (2 ,2 ), MultiDiscreteSpace ([2 ,2 ], 0 ))) == false
39
+ @test occursin (([0.5 ], 0 , [true true ; true true ], [1 , 1 ]),
40
+ (BoxSpace (0 ,1 ), DiscreteSpace (5 , 0 ), MultiBinarySpace (2 ,2 ), MultiDiscreteSpace ([2 ,2 ], 0 ))) == true
41
+ @test occursin ((),
42
+ (BoxSpace (0 ,1 ), DiscreteSpace (5 , 0 ), MultiBinarySpace (2 ,2 ), MultiDiscreteSpace ([2 ,2 ], 0 ))) == false
43
+ end
44
+
45
+ @testset " Space Dict" begin
46
+ @test occursin (
47
+ Dict (
48
+ " sensors" => Dict (
49
+ " position" => [- 10 , 0 , 10 ],
50
+ " velocity" => [0.1 , 0.2 , 0.3 ],
51
+ " front_cam" => (rand (10 , 10 , 3 ), rand (10 , 10 , 3 )),
52
+ " rear_cam" => rand (10 ,10 ,3 )),
53
+ " ext_controller" => [2 , 1 , 1 ],
54
+ " inner_state" => Dict (
55
+ " charge" => 35 ,
56
+ " system_checks" => rand (Bool, 10 ),
57
+ " job_status" => Dict (
58
+ " task" => 3 ,
59
+ " progress" => 23 ))),
60
+ Dict (
61
+ " sensors" => Dict (
62
+ " position" => BoxSpace (- 100 , 100 , (3 ,)),
63
+ " velocity" => BoxSpace (- 1 , 1 , (3 ,)),
64
+ " front_cam" => (BoxSpace (0 , 1 , (10 , 10 , 3 )),
65
+ BoxSpace (0 , 1 , (10 , 10 , 3 ))),
66
+ " rear_cam" => BoxSpace (0 , 1 , (10 , 10 , 3 ))),
67
+ " ext_controller" => MultiDiscreteSpace ([5 , 2 , 2 ], 0 ),
68
+ " inner_state" => Dict (
69
+ " charge" => DiscreteSpace (100 , 0 ),
70
+ " system_checks" => MultiBinarySpace (10 ),
71
+ " job_status" => Dict (
72
+ " task" => DiscreteSpace (5 , 0 ),
73
+ " progress" => BoxSpace (0 , 100 ))))) == true
74
+ end
75
+
76
+ end
0 commit comments