Completed
Push — master ( 67ecf2...7dd0f8 )
by Daryl
02:02
created

testDrivingDirectionsWithStartAddress()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 7
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
0 ignored issues
show
Coding Style Compatibility introduced by
For compatibility and reusability of your code, PSR1 recommends that a file should introduce either new symbols (like classes, functions, etc.) or have side-effects (like outputting something, or including other files), but not both at the same time. The first symbol is defined on line 16 and the first side effect is on line 5.

The PSR-1: Basic Coding Standard recommends that a file should either introduce new symbols, that is classes, functions, constants or similar, or have side effects. Side effects are anything that executes logic, like for example printing output, changing ini settings or writing to a file.

The idea behind this recommendation is that merely auto-loading a class should not change the state of an application. It also promotes a cleaner style of programming and makes your code less prone to errors, because the logic is not spread out all over the place.

To learn more about the PSR-1, please see the PHP-FIG site on the PSR-1.

Loading history...
2
3
namespace Clubdeuce\WPLib\Components\GoogleMaps\Tests\UnitTests;
4
5
require_once dirname( dirname(__DIR__) ) . '/component-google-maps.php';
6
7
use Clubdeuce\WPLib\Components\Google_Maps;
8
use Clubdeuce\WPLib\Components\GoogleMaps\Marker;
9
use Clubdeuce\WPLib\Components\GoogleMaps\Tests\TestCase;
10
11
/**
12
 * Class testGoogleMaps
13
 * @package            Clubdeuce\WPLib\Components\GoogleMaps\Tests\UnitTests
14
 * @coversDefaultClass Clubdeuce\WPLib\Components\Google_Maps
15
 */
16
class testGoogleMaps extends TestCase {
17
18
    /**
19
     * @covers ::register_api_key
20
     * @covers ::api_key
21
     */
22
    public function testApiKeySetAndGet() {
23
24
        Google_Maps::register_api_key('foo');
25
        $this->assertEquals('foo', Google_Maps::api_key());
26
27
    }
28
29
    /**
30
     * @covers ::geocoder
31
     */
32
    public function testGeocoder() {
33
        
34
        $this->assertInstanceOf('Clubdeuce\WPLib\Components\GoogleMaps\Geocoder', Google_Maps::geocoder());
35
36
    }
37
38
    /**
39
     * @covers ::make_new_map
40
     */
41
    public function testMakeNewMap() {
42
43
        $map = Google_Maps::make_new_map();
44
45
        $this->assertInstanceOf('Clubdeuce\WPLib\Components\GoogleMaps\Map', $map);
46
47
    }
48
49
    /**
50
     * @covers ::register_script_condition
51
     * @covers ::script_conditions
52
     */
53
    public function testRegisterScriptCondition() {
54
55
        Google_Maps::register_script_condition( 'is_search' );
56
57
        $conditions = Google_Maps::script_conditions();
58
59
        $this->assertInternalType('array', $conditions);
60
        $this->assertContains('is_search', $conditions);
61
62
    }
63
64
    /**
65
     * @covers ::make_marker_by_address
66
     */
67
    public function testMakeMarkerByAddress() {
68
69
        $marker = Google_Maps::make_marker_by_address('1600 Amphitheatre Way');
70
71
        $this->assertInstanceOf('\Clubdeuce\WPLib\Components\GoogleMaps\Marker', $marker);
72
73
    }
74
75
    /**
76
     * @covers ::driving_directions_href
77
     */
78
    public function testDrivingDirectionsHref() {
79
80
        $href = Google_Maps::driving_directions_href('1600 Amphitheatre Way');
81
82
        $this->assertRegExp('#^https:\/\/maps\.google\.com\/maps\?saddr=My\+Location&daddr=1600\+Amphitheatre\+Way#', $href);
83
84
    }
85
86
    /**
87
     * @covers ::driving_directions_href
88
     */
89
    public function testDrivingDirectionsWithStartAddress() {
90
91
        $href = Google_Maps::driving_directions_href('1600 Amphitheatre Way', array( 'start' => '1600 Pennsylvania Avenue'));
92
93
        $this->assertRegExp('#^https:\/\/maps\.google\.com\/maps\?saddr=1600\+Pennsylvania\+Avenue&daddr=1600\+Amphitheatre\+Way#', $href);
94
95
    }
96
97
    /**
98
     * @covers ::_evaluate_condition
99
     */
100
    public function testEvaluateCondition() {
101
102
        $this->assertTrue($this->reflectionMethodInvokeArgs('\Clubdeuce\WPLib\Components\Google_Maps', '_evaluate_condition', function(){return true;}));
103
        $this->assertFalse($this->reflectionMethodInvokeArgs('\Clubdeuce\WPLib\Components\Google_Maps', '_evaluate_condition', 'foo'));
104
105
    }
106
107
    /**
108
     * @covers ::_wp_enqueue_scripts_9
109
     */
110
    public function testWpEnqueueScripts9Register() {
111
112
        Google_Maps::_wp_enqueue_scripts_9();
113
114
        $this->assertTrue(wp_script_is('google-maps', 'registered'));
115
        $this->assertTrue(wp_script_is('map-control', 'registered'));
116
    }
117
118
    /**
119
     * @covers ::_wp_enqueue_scripts_9
120
     */
121
    public function testWpEnqueueScripts9Enqueue() {
122
123
        Google_Maps::register_script_condition(function(){return true;});
124
        Google_Maps::_wp_enqueue_scripts_9();
125
126
        $this->assertTrue(wp_script_is('jquery', 'enqueued'));
127
        $this->assertTrue(wp_script_is('google-maps', 'enqueued'));
128
        $this->assertTrue(wp_script_is('map-control', 'enqueued'));
129
    }
130
}
131