def test_doesnt_blow_up(self):
        traj = None
        with open(TestHairyPartitioning.FILENAME, 'r') as input:
            dict = json.loads(input.read())
            traj = map(lambda p: Point(**p), dict)

        call_partition_trajectory(traj)
    def test_doesnt_blow_up(self):
        traj = None
        with open(TestHairyPartitioning.FILENAME, "r") as input:
            dict = json.loads(input.read())
            traj = map(lambda p: Point(**p), dict)

        call_partition_trajectory(traj)
Ejemplo n.º 3
0
 def test_doesnt_partition_big_diamond(self):
     traj = [Point(0, 100), Point(100, 200), Point(200, 100), Point(100, 0), Point(0, 100)]     
     expected_par = [0, 1, 2, 3, 4]
     self.verify_iterable_works_more_than_once(call_partition_trajectory(trajectory_point_list=traj),
                                         expected_par) 
Ejemplo n.º 4
0
 def test_three_points_in_a_row_diagonal_shorter(self):
     traj = [Point(0, 0), Point(1, 1), Point(2, 2)]
     expected_par = [0, 2]
     self.verify_iterable_works_more_than_once(call_partition_trajectory(trajectory_point_list=traj), \
                                               expected_par)  
Ejemplo n.º 5
0
 def test_three_points_horizontal_big_spacing(self):
     traj = [Point(0, 0), Point(200, 0), Point(444, 0)]
     expected_par = [0, 2]
     self.verify_iterable_works_more_than_once(call_partition_trajectory(trajectory_point_list=traj), \
                                               expected_par)
Ejemplo n.º 6
0
 def test_longer_obvious_partition(self):
     trajectory = [Point(0, 0), Point(10000, 1), Point(20000, 0), Point(30000, 2), Point(40000, 1)]
     expected_par = [0, 4]
     self.verify_iterable_works_more_than_once(expected_par, \
                                               call_partition_trajectory(trajectory_point_list=trajectory))
Ejemplo n.º 7
0
 def test_longer_obvious_NOT_partition(self):
     trajectory = [Point(0, 0), Point(1, 1), Point(2, 0), Point(3, 1), Point(4, 0)]
     expected_par = [0, 1, 2, 3, 4]
     self.verify_iterable_works_more_than_once(call_partition_trajectory(trajectory_point_list=trajectory), 
                                               expected_par)
Ejemplo n.º 8
0
 def test_simple_line_segment(self):
     trajectory = [Point(0, 0), Point(1, 1)]
     expected_par = [0, 1]
     self.verify_iterable_works_more_than_once(expected_par, \
                                               call_partition_trajectory(trajectory_point_list=trajectory))
Ejemplo n.º 9
0
 def test_doesnt_partition_big_diamond(self):
     traj = [Point(0, 100), Point(100, 200), Point(200, 100), Point(100, 0), Point(0, 100)]
     expected_par = [0, 1, 2, 3, 4]
     self.verify_iterable_works_more_than_once(call_partition_trajectory(trajectory_point_list=traj), expected_par)
Ejemplo n.º 10
0
 def test_three_points_in_a_row_diagonal_shorter(self):
     traj = [Point(0, 0), Point(1, 1), Point(2, 2)]
     expected_par = [0, 2]
     self.verify_iterable_works_more_than_once(call_partition_trajectory(trajectory_point_list=traj), expected_par)
Ejemplo n.º 11
0
 def test_three_points_horizontal_big_spacing(self):
     traj = [Point(0, 0), Point(200, 0), Point(444, 0)]
     expected_par = [0, 2]
     self.verify_iterable_works_more_than_once(call_partition_trajectory(trajectory_point_list=traj), expected_par)
Ejemplo n.º 12
0
 def test_longer_obvious_partition(self):
     trajectory = [Point(0, 0), Point(10000, 1), Point(20000, 0), Point(30000, 2), Point(40000, 1)]
     expected_par = [0, 4]
     self.verify_iterable_works_more_than_once(
         expected_par, call_partition_trajectory(trajectory_point_list=trajectory)
     )
Ejemplo n.º 13
0
 def test_longer_obvious_NOT_partition(self):
     trajectory = [Point(0, 0), Point(1, 1), Point(2, 0), Point(3, 1), Point(4, 0)]
     expected_par = [0, 1, 2, 3, 4]
     self.verify_iterable_works_more_than_once(
         call_partition_trajectory(trajectory_point_list=trajectory), expected_par
     )
Ejemplo n.º 14
0
 def test_simple_line_segment(self):
     trajectory = [Point(0, 0), Point(1, 1)]
     expected_par = [0, 1]
     self.verify_iterable_works_more_than_once(
         expected_par, call_partition_trajectory(trajectory_point_list=trajectory)
     )