summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Maps/tests/Integration/parsers/CircleParserTest.php
blob: 9009947bf624ca4fc758a131a9c0bb8219c424f0 (plain)
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
<?php

namespace Maps\Tests\Integration\parsers;

use DataValues\Geo\Values\LatLongValue;
use Jeroen\SimpleGeocoder\Geocoders\Decorators\CoordinateFriendlyGeocoder;
use Jeroen\SimpleGeocoder\Geocoders\NullGeocoder;
use Maps\Elements\Circle;
use Maps\Presentation\WikitextParsers\CircleParser;
use PHPUnit\Framework\TestCase;

/**
 * @covers \Maps\Presentation\WikitextParsers\CircleParser
 * @licence GNU GPL v2+
 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
 */
class CircleParserTest extends TestCase {

	public function testGivenCoordinateAndRadius_parserReturnsCircle() {
		$parser = new CircleParser( new CoordinateFriendlyGeocoder( new NullGeocoder() ) );

		$circle = $parser->parse( '57.421,23.90625:32684.605182' );

		$this->assertInstanceOf( Circle::class, $circle );

		$expectedLatLong = new LatLongValue( 57.421, 23.90625 );
		$this->assertTrue( $expectedLatLong->equals( $circle->getCircleCentre() ) );

		$this->assertSame( 32684.605182, $circle->getCircleRadius() );
	}

	public function testGivenTitleAndText_circleHasProvidedMetaData() {
		$parser = new CircleParser( new CoordinateFriendlyGeocoder( new NullGeocoder() ) );

		$circle = $parser->parse( '57.421,23.90625:32684.605182~title~text' );

		$this->assertInstanceOf( Circle::class, $circle );

		$this->assertSame( 'title', $circle->getTitle() );
		$this->assertSame( 'text', $circle->getText() );
	}

}