You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
219 lines
4.6 KiB
219 lines
4.6 KiB
<?php
|
|
require_once(api_get_path(LIBRARY_PATH).'geometry.lib.php');
|
|
|
|
class TestGeometry extends UnitTestCase {
|
|
|
|
public function TestGeometry(){
|
|
|
|
$this->UnitTestCase('calculate and return the area of an irregular polygon');
|
|
|
|
}
|
|
|
|
public function testCalculateArea(){
|
|
$xs = 12;
|
|
$ys = 11;
|
|
$res = calculate_area($xs,$ys);
|
|
$this->assertTrue(is_bool($res));
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testSubCalculation(){
|
|
$a='88';
|
|
$b='23';
|
|
$res = subCalculation($a,$b);
|
|
$this->assertTrue(is_numeric($res));
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testLinesIntersect(){
|
|
$line1 = '2';
|
|
$line2 = '4';
|
|
$res = lines_intersect($line1,$line2);
|
|
$this->assertTrue(is_bool($res));
|
|
$this->assertTrue($res === false);
|
|
$this->assertFalse($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testIsInSegment(){
|
|
$p= 16;
|
|
$a= 22;
|
|
$b= 11;
|
|
$res = _is_in_segment($p, $a, $b);
|
|
$this->assertTrue(is_bool($res));
|
|
$this->assertTrue($res === true);
|
|
$this->assertTrue($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testIsInLine(){
|
|
$p=221;
|
|
$a=11;
|
|
$b=13;
|
|
$res = _is_in_line($p, $a, $b);
|
|
$this->assertTrue(is_bool($res));
|
|
$this->assertTrue($res === true);
|
|
$this->assertTrue($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testGetSlope(){
|
|
$p=33;
|
|
$q=23;
|
|
$res = _get_slope($p, $q);
|
|
$this->assertTrue(is_numeric($res));
|
|
$this->assertTrue($res === 0);
|
|
$this->assertFalse($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testCheckPolygon(){
|
|
$xs=32;
|
|
$ys=13;
|
|
$res = _check_polygon($xs, $ys);
|
|
$this->assertTrue(is_bool($res));
|
|
$this->assertTrue($res === false);
|
|
$this->assertFalse($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testPolygon2String(){
|
|
$xs=42;
|
|
$ys=62;
|
|
$res = polygon2string($xs, $ys);
|
|
$this->assertTrue(is_string($res));
|
|
$this->assertTrue($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testIsInsidePolygon(){
|
|
$p=43;
|
|
$xs=11;
|
|
$ys=45;
|
|
$res = _is_inside_polygon($p, $xs, $ys);
|
|
$this->assertTrue(is_bool($res));
|
|
$this->assertTrue($res === false);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testGetInsideConditionals(){
|
|
$xs=11;
|
|
$ys=23;
|
|
$res = _get_inside_conditionals($xs, $ys);
|
|
$this->assertTrue(is_array($res));
|
|
$this->assertTrue($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testGetIntersectionData(){
|
|
$rxs=56;
|
|
$rys=11;
|
|
$uxs=3;
|
|
$uys=12;
|
|
$res = get_intersection_data($rxs, $rys, $uxs, $uys);
|
|
$this->assertTrue(is_array($res));
|
|
$this->assertTrue($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testGetIntersectionPolygon(){
|
|
$rxs='11';
|
|
$rys='23';
|
|
$uxs='54';
|
|
$uys='56';
|
|
$res = get_intersection_polygon($rxs, $rys, $uxs, $uys);
|
|
$this->assertTrue(is_null($res));
|
|
$this->assertTrue($res === null);
|
|
$this->assertFalse($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testGetIntersectionPolygonData(){
|
|
$rxs=34;
|
|
$rys=22;
|
|
$uxs=44;
|
|
$uys=13;
|
|
$res = _get_intersection_polygon_data($rxs, $rys, $uxs, $uys);
|
|
$this->assertTrue(is_array($res));
|
|
$this->assertTrue($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testFUllyInside(){
|
|
$axs=12;
|
|
$ays=33;
|
|
$bxs=14;
|
|
$bys=54;
|
|
$res = fully_inside($axs, $ays, $bxs, $bys);
|
|
$this->assertTrue(is_bool($res));
|
|
$this->assertTrue($res === false);
|
|
$this->assertFalse($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testIsNextTo(){
|
|
$point=32;
|
|
$last_point=11;
|
|
$xs=15;
|
|
$ys=56;
|
|
$res = _is_next_to($point, $last_point, $xs, $ys);
|
|
$this->assertTrue(is_bool($res));
|
|
$this->assertTrue($res === false);
|
|
$this->assertFalse($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testGetRightPoint(){
|
|
$point=44;
|
|
$polygon=0;
|
|
$res = _get_right_point($point, $polygon);
|
|
$this->assertTrue(is_null($res));
|
|
$this->assertNull($res);
|
|
$this->assertFalse($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testGetLeftPoint(){
|
|
$point=44;
|
|
$polygon=01;
|
|
$res = _get_left_point($point, $polygon);
|
|
$this->assertTrue(is_null($res));
|
|
$this->assertNull($res);
|
|
$this->assertFalse($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testToPointsArray(){
|
|
$xs=22;
|
|
$ys=33;
|
|
$res = _to_points_array($xs, $ys);
|
|
$this->assertTrue(is_bool($res));
|
|
$this->assertTrue($res === false);
|
|
$this->assertFalse($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testToPointsIntersection(){
|
|
$xs=14;
|
|
$ys=14;
|
|
$res = _to_points_intersection($xs, $ys);
|
|
$this->assertTrue(is_bool($res));
|
|
$this->assertTrue($res === false);
|
|
$this->assertFalse($res);
|
|
//var_dump($res);
|
|
}
|
|
|
|
public function testInInternArray(){
|
|
$oint=34;
|
|
$intern_points=13;
|
|
$res = in_intern_array($oint,$intern_points);
|
|
$this->assertTrue(is_bool($res));
|
|
$this->assertTrue($res === false);
|
|
$this->assertFalse($res);
|
|
//var_dump($res);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
?>
|
|
|