-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathDocSetTest.php
42 lines (31 loc) · 1.06 KB
/
DocSetTest.php
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
<?php
namespace Office365;
use Office365\SharePoint\DocumentManagement\DocumentSet\DocumentSet;
class DocSetTest extends SharePointTestCase
{
public static function setUpBeforeClass(): void
{
parent::setUpBeforeClass();
}
public static function tearDownAfterClass(): void
{
parent::tearDownAfterClass();
}
public function testCreate(){
$lib = self::$context->getWeb()->defaultDocumentLibrary()->get()->executeQuery();
$this->assertNotNull($lib->getResourcePath());
$name = "DocSet_" . rand(1, 100000);
$returnType = DocumentSet::create(self::$context,$lib->getRootFolder(), $name)->executeQuery();
$this->assertNotNull($returnType->getResourcePath());
return $returnType;
}
/**
* @depends testCreate
* @param DocumentSet $docSet
*/
public function testDelete($docSet){
$docSet->deleteObject()->executeQuery();
$result = $docSet->get()->select(["Exists"])->executeQuery();
$this->assertFalse($result->getProperty("Exists"));
}
}