Skip to content

Commit f805d51

Browse files
committedApr 22, 2020
Minor unit tests fixes (VideoService), GraphClient tests
1 parent 2943f69 commit f805d51

File tree

7 files changed

+64
-5
lines changed

7 files changed

+64
-5
lines changed
 

‎.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ before_script:
3737

3838
# omitting "script:" will default to phpunit
3939
script:
40-
- phpunit --configuration phpunit_o365.xml --coverage-text
40+
- phpunit --configuration phpunit_phpspo.xml --coverage-text
4141
notifications:
4242
email: never
4343

File renamed without changes.

‎src/SharePoint/Publishing/VideoItem.php

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ function setProperty($name, $value, $persistChanges = true)
5050
$parentPath = $this->parentCollection->getResourcePath();
5151
$this->resourcePath = new ResourcePath($parentPath->getSegment() . "(guid'{$value}')", $parentPath->getParent());
5252
}
53-
$this->{$name} = $value;
5453
}
5554
parent::setProperty($name, $value, $persistChanges);
5655
}

‎tests/GraphTestCase.php

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?php
2+
3+
require_once(__DIR__ . '/../vendor/autoload.php');
4+
5+
use Office365\GraphClient\GraphServiceClient;
6+
use Office365\Runtime\Auth\AuthenticationContext;
7+
use Office365\Runtime\Auth\UserCredentials;
8+
use PHPUnit\Framework\TestCase;
9+
10+
11+
abstract class GraphTestCase extends TestCase
12+
{
13+
/**
14+
* @var GraphServiceClient
15+
*/
16+
protected static $graphClient;
17+
18+
19+
public static function setUpBeforeClass()
20+
{
21+
$settings = include(__DIR__ . '/../Settings.php');
22+
self::$graphClient = new GraphServiceClient($settings['TenantName'], function (AuthenticationContext $authCtx) use ($settings) {
23+
self::acquireToken($authCtx, $settings['ClientId'], $settings['UserName'], $settings['Password']);
24+
});
25+
}
26+
27+
public static function tearDownAfterClass()
28+
{
29+
self::$graphClient = null;
30+
}
31+
32+
33+
private static function acquireToken(AuthenticationContext $authCtx, $clientId, $userName, $password)
34+
{
35+
$resource = "https://graph.microsoft.com";
36+
try {
37+
$authCtx->acquireTokenForPassword($resource,
38+
$clientId,
39+
new UserCredentials($userName, $password));
40+
} catch (Exception $e) {
41+
print("Failed to acquire token");
42+
}
43+
}
44+
45+
46+
}

‎tests/OneDriveTest.php

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
3+
4+
class OneDriveTest extends GraphTestCase
5+
{
6+
7+
public function testMyDrive(){
8+
$myDrive = self::$graphClient->getMe()->getDrive();
9+
self::$graphClient->load($myDrive);
10+
self::$graphClient->executeQuery();
11+
self::assertNotNull($myDrive->getServerObjectIsNull());
12+
}
13+
14+
}

‎tests/VideoServiceTest.php

+2-3
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,8 @@ public function testCreateVideo(VideoChannel $channel)
8585
*/
8686
public function testUploadVideo(VideoItem $videoItem)
8787
{
88-
$parentPath = basename(getcwd()) === "tests" ? "../" : "./";
89-
$filePath = "${parentPath}examples/data/big_buck_bunny.mp4";
90-
$videoContent = file_get_contents($filePath);
88+
$localPath = __DIR__ . "/../examples/data/big_buck_bunny.mp4";
89+
$videoContent = file_get_contents($localPath);
9190
$videoItem->saveBinaryStream($videoContent);
9291
self::assertTrue(true);
9392
}

‎tests/bootstrap.php

+1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22

33
require_once('OutlookServicesTestCase.php');
44
require_once('SharePointTestCase.php');
5+
require_once('GraphTestCase.php');
56
require_once(__DIR__ . '/../vendor/autoload.php');
67

0 commit comments

Comments
 (0)