FacebookTest.php
5.81 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?php
require_once 'tests/data/app/data.php';
use Codeception\Module;
use Codeception\Module\Facebook;
use Codeception\Module\PhpBrowser;
use Codeception\Lib\Driver\Facebook as FacebookDriver;
use Codeception\Util\Stub;
class FacebookTest extends \PHPUnit_Framework_TestCase
{
protected $config = array(
'app_id' => '460287924057084',
'secret' => 'e27a5a07f9f07f52682d61dd69b716b5',
'test_user' => array(
'permissions' => ['publish_actions', 'user_posts'],
'name' => 'Codeception Testuser'
)
);
/**
* @var Facebook
*/
protected $module;
/**
* @var FacebookDriver
*/
protected $facebook;
protected function makeTest()
{
return Stub::makeEmpty(
'\Codeception\Test\Cept',
array('dispatcher' => Stub::makeEmpty('Symfony\Component\EventDispatcher\EventDispatcher'))
);
}
protected function makeContainer()
{
return \Codeception\Util\Stub::make('Codeception\Lib\ModuleContainer');
}
public function setUp()
{
$this->module = new Facebook($this->makeContainer());
$this->module->_setConfig($this->config);
$this->module->_initialize();
$reflection = new ReflectionProperty('Codeception\Module\Facebook', 'facebook');
$reflection->setAccessible(true);
$this->facebook = $reflection->getValue($this->module);
}
protected function tearDown()
{
$this->module->_afterSuite();
}
/**
* @covers Facebook::haveFacebookTestUserId
* @covers Facebook::haveFacebookTestUserAccount
* @covers Facebook::grabFacebookTestUserEmail
* @covers Facebook::grabFacebookTestUserAccessToken
*/
public function testHaveFacebookTestUserAccount()
{
$this->module->haveFacebookTestUserAccount(false);
$this->assertNotEmpty($this->module->grabFacebookTestUserId());
$this->assertNotEmpty($this->module->grabFacebookTestUserEmail());
$this->assertNotEmpty($this->module->grabFacebookTestUserAccessToken());
$testUserEmailBeforeRenew = $this->module->grabFacebookTestUserEmail();
$this->module->haveFacebookTestUserAccount(true);
$testUserEmailAfterRenew = $this->module->grabFacebookTestUserEmail();
$this->assertNotEquals($testUserEmailBeforeRenew, $testUserEmailAfterRenew);
$testUserIdBeforeRenew = $this->module->grabFacebookTestUserId();
$this->module->haveFacebookTestUserAccount(true);
$testUserIdAfterRenew = $this->module->grabFacebookTestUserId();
$this->assertNotEquals($testUserIdBeforeRenew, $testUserIdAfterRenew);
$this->assertEquals(ucwords($this->config['test_user']['name']), $this->module->grabFacebookTestUserName());
}
public function testSeePostOnFacebookWithMessage()
{
$this->checkPublishPermissions();
// precondition #1: I have facebook user
$this->module->haveFacebookTestUserAccount();
// precondition #2: I have published the post with place attached
$params = array('message' => 'I feel great!');
$this->module->postToFacebookAsTestUser($params);
// assert that post was published in the facebook and place is the same
$this->module->seePostOnFacebookWithMessage($params['message']);
}
public function testSeePostOnFacebookWithAttachedPlace()
{
$this->checkPublishPermissions();
// precondition #1: I have facebook user
$this->module->haveFacebookTestUserAccount();
// precondition #2: I have published the post with place attached
$params = array('place' => '111227078906045'); //
$this->module->postToFacebookAsTestUser($params);
// assert that post was published in the facebook and place is the same
$this->module->seePostOnFacebookWithAttachedPlace($params['place']);
}
public function testLoginToFacebook()
{
// precondition: you need to have a server running for this test
// you can start a php server with: php -S 127.0.0.1:8000 -t tests/data/app
$browserModule = new PhpBrowser($this->makeContainer());
$this->initModule($browserModule, ['url' => 'http://localhost:8000']);
$this->module->_inject($browserModule);
$this->loginToFacebook($browserModule);
// cleanup
$browserModule->_after($this->makeTest());
data::clean();
}
private function loginToFacebook(PhpBrowser $browserModule)
{
// preconditions: #1 facebook test user is created
$this->module->haveFacebookTestUserAccount();
$testUserName = $this->module->grabFacebookTestUserName();
// preconditions: #2 test user is logged in on facebook
$this->module->haveTestUserLoggedInOnFacebook();
// go to our page with facebook login button
$browserModule->amOnPage('/facebook');
// check that yet we are not logged in on facebook
$browserModule->see('You are not Connected.');
// click on "Login with Facebook" button to start login with facebook
$browserModule->click('Login with Facebook');
// check that we are logged in with facebook
$browserModule->see('Your User Object (/me)');
$browserModule->see($testUserName);
}
private function checkPublishPermissions()
{
if (!in_array('publish_actions', $this->config['test_user']['permissions']) ||
!in_array('user_posts', $this->config['test_user']['permissions'])
) {
$this->markTestSkipped("You need both publish_actions and user_posts permissions for this test");
}
}
private function initModule(PhpBrowser $browserModule, array $params)
{
$browserModule->_setConfig($params);
$browserModule->_initialize();
$browserModule->_before($this->makeTest());
}
}