1
|
|
|
<?php |
2
|
|
|
App::uses('View', 'View'); |
3
|
|
|
App::uses('Helper', 'View'); |
4
|
|
|
App::uses('SocialMediaHelper', 'SocialMedia.View/Helper'); |
5
|
|
|
App::uses('Utility', 'SocialMedia.Lib'); |
6
|
|
|
|
7
|
|
|
/** |
8
|
|
|
* SocialMediaHelper Test Case |
9
|
|
|
* |
10
|
|
|
*/ |
11
|
|
|
class SocialMediaHelperTest extends CakeTestCase { |
|
|
|
|
12
|
|
|
|
13
|
|
|
/** |
14
|
|
|
* setUp method |
15
|
|
|
* |
16
|
|
|
* @return void |
17
|
|
|
*/ |
18
|
|
|
public function setUp() { |
19
|
|
|
parent::setUp(); |
20
|
|
|
|
21
|
|
|
Configure::write('SocialMedia.salt', '7Nh6AmgdkBXr0afrQObG79J+gXtMXrDYTnKlQxrhoYnXMXPrj3eMLALQfyCiNsVc'); |
|
|
|
|
22
|
|
|
Configure::write('SocialMedia.facebookAppId', 505567138750925); |
23
|
|
|
|
24
|
|
|
$View = new View(); |
|
|
|
|
25
|
|
|
$this->SocialMedia = new SocialMediaHelper($View); |
|
|
|
|
26
|
|
|
} |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* tearDown method |
30
|
|
|
* |
31
|
|
|
* @return void |
32
|
|
|
*/ |
33
|
|
|
public function tearDown() { |
34
|
|
|
unset($this->SocialMedia); |
35
|
|
|
|
36
|
|
|
parent::tearDown(); |
37
|
|
|
} |
38
|
|
|
|
39
|
|
|
public function testFacebook() { |
40
|
|
|
$fullBaseUrl = Configure::read('App.fullBaseUrl') ?: FULL_BASE_URL; |
|
|
|
|
41
|
|
|
|
42
|
|
|
// Text link |
43
|
|
|
$title = __d('social_media', 'Share on Facebook'); |
|
|
|
|
44
|
|
|
$urlParameters = [ |
45
|
|
|
'link' => 'your-url', |
46
|
|
|
'name' => 'your-name', |
47
|
|
|
'caption' => 'your-caption', |
48
|
|
|
'description' => 'your-description', |
49
|
|
|
'picture' => 'your-picture', |
50
|
|
|
'redirect_uri' => $fullBaseUrl |
51
|
|
|
]; |
52
|
|
|
|
53
|
|
|
$result = $this->SocialMedia->facebook($title, $urlParameters); |
54
|
|
|
$expected = '<a href="https://www.facebook.com/dialog/feed?' . |
55
|
|
|
'app_id=505567138750925&' . |
56
|
|
|
'redirect_uri=' . urlencode($fullBaseUrl) . '&' . |
57
|
|
|
'link=your-url&' . |
58
|
|
|
'name=your-name&' . |
59
|
|
|
'caption=your-caption&' . |
60
|
|
|
'description=your-description&' . |
61
|
|
|
'picture=your-picture' . |
62
|
|
|
'">' . __d('social_media', 'Share on Facebook') . '</a>'; |
63
|
|
|
|
64
|
|
|
$this->assertEqual($result, $expected); |
65
|
|
|
|
66
|
|
|
// Image link |
67
|
|
|
$image = '<img title="Facebook" src="/img/facebook.png">'; |
68
|
|
|
$urlParameters = [ |
69
|
|
|
'link' => 'your-url', |
70
|
|
|
'name' => 'your-name', |
71
|
|
|
'caption' => 'your-caption', |
72
|
|
|
'description' => 'your-description', |
73
|
|
|
'picture' => 'your-picture', |
74
|
|
|
'redirect_uri' => $fullBaseUrl |
75
|
|
|
]; |
76
|
|
|
$options = ['escape' => false, 'escapeTitle' => false]; |
77
|
|
|
|
78
|
|
|
$result = $this->SocialMedia->facebook($image, $urlParameters, $options); |
79
|
|
|
$expected = '<a href="https://www.facebook.com/dialog/feed?' . |
80
|
|
|
'app_id=505567138750925&' . |
81
|
|
|
'redirect_uri=' . urlencode($fullBaseUrl) . '&' . |
82
|
|
|
'link=your-url&' . |
83
|
|
|
'name=your-name&' . |
84
|
|
|
'caption=your-caption&' . |
85
|
|
|
'description=your-description&' . |
86
|
|
|
'picture=your-picture' . |
87
|
|
|
'">' . $image . '</a>'; |
88
|
|
|
|
89
|
|
|
$this->assertEqual($result, $expected); |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
public function testTwitter() { |
93
|
|
|
// Text link |
94
|
|
|
$title = __d('social_media', 'Share on Twitter'); |
|
|
|
|
95
|
|
|
$urlParameters = [ |
96
|
|
|
'url' => 'your-url', |
97
|
|
|
'text' => 'your-text', |
98
|
|
|
'via' => 'your-via' |
99
|
|
|
]; |
100
|
|
|
|
101
|
|
|
$result = $this->SocialMedia->twitter($title, $urlParameters); |
102
|
|
|
$expected = '<a href="https://twitter.com/share?' . |
103
|
|
|
'url=your-url&' . |
104
|
|
|
'text=your-text&' . |
105
|
|
|
'via=your-via' . |
106
|
|
|
'">' . __d('social_media', 'Share on Twitter') . '</a>'; |
107
|
|
|
|
108
|
|
|
$this->assertEqual($result, $expected); |
109
|
|
|
|
110
|
|
|
// Image link |
111
|
|
|
$image = '<img title="Twitter" src="/img/twitter.png">'; |
112
|
|
|
$urlParameters = [ |
113
|
|
|
'url' => 'your-url', |
114
|
|
|
'text' => 'your-text', |
115
|
|
|
'via' => 'your-via' |
116
|
|
|
]; |
117
|
|
|
$options = ['escape' => false, 'escapeTitle' => false]; |
118
|
|
|
|
119
|
|
|
$result = $this->SocialMedia->twitter($image, $urlParameters, $options); |
120
|
|
|
$expected = '<a href="https://twitter.com/share?' . |
121
|
|
|
'url=your-url&' . |
122
|
|
|
'text=your-text&' . |
123
|
|
|
'via=your-via' . |
124
|
|
|
'">' . $image . '</a>'; |
125
|
|
|
|
126
|
|
|
$this->assertEqual($result, $expected); |
127
|
|
|
} |
128
|
|
|
|
129
|
|
|
} |
130
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths