-
Notifications
You must be signed in to change notification settings - Fork 1
/
OcisTest.php
747 lines (694 loc) · 26.7 KB
/
OcisTest.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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
<?php
namespace integration\Owncloud\OcisPhpSdk;
require_once __DIR__ . '/OcisPhpSdkTestCase.php';
use Owncloud\OcisPhpSdk\Drive;
use Owncloud\OcisPhpSdk\DriveOrder;
use Owncloud\OcisPhpSdk\DriveType;
use Owncloud\OcisPhpSdk\Exception\ForbiddenException;
use Owncloud\OcisPhpSdk\Group;
use Owncloud\OcisPhpSdk\OrderDirection;
use Owncloud\OcisPhpSdk\Exception\NotFoundException;
class OcisTest extends OcisPhpSdkTestCase
{
public function testServiceUrlTrailingSlash(): void
{
$ocis = $this->getOcis('admin', 'admin');
$drives = $ocis->getMyDrives();
$this->assertTrue(
(is_array($drives) && count($drives) > 1),
"Drives variable is expected to be an array but found to be " . gettype($drives) .
" and to have more than one element but found " . count($drives)
);
}
public function testGetMyDrives(): void
{
$adminOcis = $this->getOcis('admin', 'admin');
$marieOcis = $this->getOcis('marie', 'radioactivity');
$adminDrive = $adminOcis->createDrive('Admin Project Drive');
$this->createdDrives[] = $adminDrive->getId();
$adminPersonalDrive = $this->getPersonalDrive($adminOcis);
$adminPersonalDrive->createFolder('sharedAdminFolder');
$this->createdResources[$adminPersonalDrive->getId()][] = '/sharedAdminFolder';
$resources = $adminPersonalDrive->getResources();
$sharedResource = null;
foreach ($resources as $resource) {
if ($resource->getName() === 'sharedAdminFolder') {
$sharedResource = $resource;
}
}
if (empty($sharedResource)) {
throw new \Error(
"resource not found "
);
}
$marie = $adminOcis->getUsers('marie')[0];
$viewerRole = null;
$viewerRoleId = self::getPermissionsRoleIdByName('Viewer');
foreach ($sharedResource->getRoles() as $role) {
if ($role->getId() === $viewerRoleId) {
$viewerRole = $role;
}
}
if (empty($viewerRole)) {
throw new \Error(
"viewer role not found "
);
}
$sharedResource->invite($marie, $viewerRole);
$marieDrive = $marieOcis->getMyDrives();
$this->assertContainsOnlyInstancesOf(
Drive::class,
$marieDrive,
"Expected Array to be an instance of " . Drive::class
);
foreach ($marieDrive as $drive) {
$this->assertNotSame(
'Admin Project Drive',
$drive->getName(),
$drive->getName() . " drive of Marie matches with admin drive "
);
if ($drive->getType() === DriveType::MOUNTPOINT) {
$this->assertSame(
'sharedAdminFolder',
$drive->getName(),
"Expected foldername to be 'sharedAdminFolder' but found " . $drive->getName()
);
}
}
}
public function testGetAllDrives(): void
{
$adminOcis = $this->getOcis('admin', 'admin');
$katherineOcis = $this->getOcis('katherine', 'gemini');
$katherineDrive = $katherineOcis->createDrive('katherine Project Drive');
$this->createdDrives[] = $katherineDrive->getId();
$sportDrive = $adminOcis->createDrive('Sport Project Drive');
$this->createdDrives[] = $sportDrive->getId();
$managementDrive = $adminOcis->createDrive('Management Project Drive');
$this->createdDrives[] = $managementDrive->getId();
$adminPersonalDrive = $this->getPersonalDrive($adminOcis) ;
$adminPersonalDrive->createFolder('sharedAdminFolder');
$this->createdResources[$adminPersonalDrive->getId()][] = '/sharedAdminFolder';
$resources = $adminPersonalDrive->getResources();
foreach ($resources as $resource) {
if ($resource->getName() === 'sharedAdminFolder') {
$sharedResource = $resource;
}
}
if (empty($sharedResource)) {
throw new \Error(
"resource not found "
);
}
$katherine = $adminOcis->getUsers('katherine')[0];
$viewerRole = null;
$viewerRoleId = self::getPermissionsRoleIdByName('Viewer');
foreach ($sharedResource->getRoles() as $role) {
if ($role->getId() === $viewerRoleId) {
$viewerRole = $role;
}
}
if (empty($viewerRole)) {
throw new \Error(
"viewer role not found "
);
}
$sharedResource->invite($katherine, $viewerRole);
$drives = $adminOcis->getAllDrives();
foreach ($drives as $drive) {
$this->assertInstanceOf(
Drive::class,
$drive,
"Expected class to be 'Drive' but found " . get_class($drive)
);
$this->assertThat(
$drive->getType(),
$this->logicalOr(
$this->equalTo(DriveType::PROJECT),
$this->equalTo(DriveType::PERSONAL),
$this->equalTo(DriveType::VIRTUAL),
),
"Expected drivetype to be either 'PROJECT' or 'PERSONAL' or 'VIRTUAL' but found "
. print_r($drive->getType(), true)
);
if ($drive->getType() === DriveType::PROJECT) {
$this->assertThat(
$drive->getName(),
$this->logicalOr(
$this->equalTo('katherine Project Drive'),
$this->equalTo('Sport Project Drive'),
$this->equalTo('Management Project Drive'),
),
"Expected drivename to be either:"
. "'katherine Project Drive' or 'Sport Project Drive' or 'Management Project Drive' but found "
. $drive->getName()
);
}
if ($drive->getType() === DriveType::MOUNTPOINT) {
$this->assertSame(
'sharedAdminFolder',
$drive->getName(),
"Expected foldername to be 'sharedAdminFolder' but found " . $drive->getName()
);
}
}
}
/**
* @return array<int, array<int, int|DriveType>>
*/
public static function drivesType(): array
{
return [
[DriveType::PROJECT],
[DriveType::PERSONAL],
[DriveType::VIRTUAL],
[DriveType::MOUNTPOINT],
];
}
/**
* @dataProvider drivesType
*/
public function testGetAllDrivesType(DriveType $driveType): void
{
$adminOcis = $this->getOcis('admin', 'admin');
$managementDrive = null;
$sportDrive = null;
if ($driveType === DriveType::PROJECT) {
$sportDrive = $adminOcis->createDrive('Sport Project Drive');
$this->createdDrives[] = $sportDrive->getId();
$managementDrive = $adminOcis->createDrive('Management Project Drive');
$this->createdDrives[] = $managementDrive->getId();
}
if ($driveType === DriveType::MOUNTPOINT) {
$adminPersonalDrive = $adminOcis -> getMyDrives(
DriveOrder::NAME,
OrderDirection::ASC,
DriveType::PERSONAL
)[0];
$adminPersonalDrive->createFolder('sharedAdminFolder');
$this->createdResources[$adminPersonalDrive->getId()][] = '/sharedAdminFolder';
$resources = $adminPersonalDrive->getResources();
foreach ($resources as $resource) {
if ($resource->getName() === 'sharedAdminFolder') {
$sharedResource = $resource;
}
}
if (empty($sharedResource)) {
throw new \Error(
"resource not found "
);
}
$katherine = $adminOcis->getUsers('katherine')[0];
$viewerRole = null;
$viewerRoleId = self::getPermissionsRoleIdByName('Viewer');
foreach ($sharedResource->getRoles() as $role) {
if ($role->getId() === $viewerRoleId) {
$viewerRole = $role;
}
}
if (empty($viewerRole)) {
throw new \Error(
"viewer role not found "
);
}
$sharedResource->invite($katherine, $viewerRole);
}
$drives = $adminOcis->getAllDrives(
DriveOrder::NAME,
OrderDirection::ASC,
$driveType
);
$this->assertContainsOnlyInstancesOf(
Drive::class,
$drives,
"Expected Array to be an instance of " . Drive::class
);
foreach ($drives as $drive) {
$this->assertSame(
$drive->getType(),
$driveType,
"Drivetype mismatch"
);
if ($drive->getType() === DriveType::PROJECT) {
$this->assertThat(
$drive->getName(),
$this->logicalOr(
// @phpstan-ignore-next-line because the test is skipped
$this->equalTo($managementDrive->getName()),
// @phpstan-ignore-next-line because the test is skipped
$this->equalTo($sportDrive->getName())
),
"Expected drivename to be either 'Management Project Drive' or 'Sport Project Drive' but found "
. $drive->getName()
);
}
if ($drive->getType() === DriveType::MOUNTPOINT) {
$this->assertSame(
'sharedAdminFolder',
$drive->getName(),
"Expected drivename to be 'sharedAdminFolder' but found " . $drive->getName()
);
}
if ($drive->getType() === DriveType::VIRTUAL) {
$this->assertSame(
'Shares',
$drive->getName(),
"Expected drivename to be 'Shares' but found " . $drive->getName()
);
}
}
}
public function testGetDriveById(): void
{
$ocis = $this->getOcis('admin', 'admin');
$sportDrive = $ocis->createDrive('Sport Project Drive');
$this->createdDrives[] = $sportDrive->getId();
$drive = $ocis->getDriveById($sportDrive->getId());
$this->assertInstanceOf(
Drive::class,
$drive,
"Expected class to be 'Drive' but found " . get_class($drive)
);
$this->assertSame(
$drive->getId(),
$sportDrive->getId(),
"Expected driveid to be " . $drive->getId()
. " but found " . $sportDrive->getId()
);
$this->assertSame(
$drive->getName(),
$sportDrive->getName(),
"Expect drivename to be " . $drive->getName() . " but found " . $sportDrive->getName()
);
$this->assertSame(
$drive->getType(),
$sportDrive->getType(),
"Drivetype mismatch"
);
$this->assertEquals(
$drive->getRoot(),
$sportDrive->getRoot(),
"Expected drive root to be " . $drive->getRoot()
. " but found " . $sportDrive->getRoot()
);
$this->markTestIncomplete(
'libre graph issue-149 sends broken quota object while creating drive'
);
// $this->assertSame($sportDrive, $drive);
}
public function testCreateDrive(): void
{
$ocis = $this->getOcis('admin', 'admin');
$countDrivesAtStart = count(
$ocis->getMyDrives()
);
$drive = $ocis->createDrive('first test drive');
$this->createdDrives[] = $drive->getId();
$this->assertMatchesRegularExpression(
"/^" . $this->getUUIDv4Regex() . '\$' . $this->getUUIDv4Regex() . "$/i",
$drive->getId(),
"Driveid doesn't match the expected format"
);
// there should be one more drive
$this->assertCount(
$countDrivesAtStart + 1,
$ocis->getMyDrives(),
"Expected drive count to be " . ($countDrivesAtStart + 1)
. " but found " . count($ocis->getMyDrives())
);
}
public function testCreateDriveNoPermissions(): void
{
$ocis = $this->getOcis('einstein', 'relativity');
$this->expectException(ForbiddenException::class);
$countDrivesAtStart = count($ocis->getMyDrives());
$ocis->createDrive('first test drive');
// no new drive should have been created
$this->assertCount($countDrivesAtStart, $ocis->getMyDrives());
}
/**
* @return array<int,array<int,int>>
*/
public static function invalidQuotaProvider(): array
{
return [
[-1],
[-100],
];
}
/**
* @dataProvider invalidQuotaProvider
*/
public function testCreateDriveInvalidQuota(int $quota): void
{
$ocis = $this->getOcis('admin', 'admin');
$this->expectException(\InvalidArgumentException::class);
$countDrivesAtStart = count($ocis->getMyDrives());
$ocis->createDrive('drive with quota', $quota);
// no new drive should have been created
$this->assertCount($countDrivesAtStart, $ocis->getMyDrives());
}
/**
* @return array<int, array<int,array<int, string>>>
*/
public static function groupNameList(): array
{
return[
[["philosophyhaters", "physicslovers"]],
];
}
/**
* @dataProvider groupNameList
*
* @param array<string> $groupName
* @return void
*/
public function testGetGroups(array $groupName): void
{
$ocis = $this->getOcis('admin', 'admin');
$philosophyHatersGroup = $ocis->createGroup($groupName[0], "philosophy haters group");
$physicsLoversGroup = $ocis->createGroup($groupName[1], "physics lover group");
$this->createdGroups = [$philosophyHatersGroup,$physicsLoversGroup];
$groups = $ocis->getGroups();
$this->assertCount(
2,
$groups,
"Expected group to be 2 but found " . count($groups)
);
foreach ($groups as $group) {
$this->assertInstanceOf(
Group::class,
$group,
"Expected class to be 'Group' but found " . get_class($group)
);
$this->assertIsString(
$group->getId(),
"Expected groupId to be string but found " . gettype($group->getId())
);
$this->assertIsString(
$group->getDisplayName(),
"Expected groupname type to be string but found " . gettype($group->getDisplayName())
);
$this->assertIsArray(
$group->getGroupTypes(),
"Expected grouptype to be Array but found " . gettype($group->getGroupTypes())
);
$this->assertIsArray(
$group->getMembers(),
"Expected group members type to be Array but found " . gettype($group->getMembers())
);
}
$groupDisplayName = [$philosophyHatersGroup->getDisplayName(),$physicsLoversGroup->getDisplayName()];
$this->assertTrue(
$groupDisplayName === [$groupName[0],$groupName[1]],
"Expected group displayname to be $groupName[0] and $groupName[1] but found "
. implode(' and ', $groupDisplayName)
);
}
/**
* @return void
*/
public function testGetGroupsExpanded(): void
{
$ocis = $this->getOcis('admin', 'admin');
$physicsLoversGroup = $ocis->createGroup("physicslovers", "physics lovers group");
$this->createdGroups = [$physicsLoversGroup];
$physicsLoversGroup->addUser($ocis->getUsers()[0]);
$groups = $ocis->getGroups(expandMembers: true);
$this->assertCount(
1,
$groups,
"Expected group count to be 1 but found " . count($groups)
);
foreach ($groups as $group) {
$this->assertGreaterThan(
0,
count($group->getMembers()),
"Expected member count to be greater than 0 but found " . count($group->getMembers())
);
}
}
/**
* @return array<int, array<int, array<int, string>|int|string>>
*/
public static function searchText(): array
{
return [
["ph",["philosophyhaters", "physicslovers"]],
];
}
/**
* @dataProvider searchText
*
* @param string $searchText
* @param array<int,string> $groupDisplayName
* @return void
*/
public function testGetGroupSearch(string $searchText, array $groupDisplayName): void
{
$ocis = $this->getOcis('admin', 'admin');
$philosophyHatersGroup = $ocis->createGroup("philosophyhaters", "philosophy haters group");
$physicsLoversGroup = $ocis->createGroup("physicslovers", "physics lover group");
$this->createdGroups = [$philosophyHatersGroup,$physicsLoversGroup];
$groups = $ocis->getGroups(search: $searchText);
$this->assertCount(
count($groupDisplayName),
$groups,
"Group count doesn't match "
);
for ($i = 0; $i < count($groups); $i++) {
$this->assertSame(
$groupDisplayName[$i],
$groups[$i]->getDisplayName(),
"Expected group display name to be " . $groupDisplayName[$i]
. " but found " . $groups[$i]->getDisplayName()
);
}
}
/**
* @return array<int, array<int, array<int, string>|int|OrderDirection|string>>
*/
public static function orderDirection(): array
{
return [
[OrderDirection::ASC, "ph", ["philosophyhaters", "physicslovers"]],
[OrderDirection::DESC, "ph", ["physicslovers", "philosophyhaters"]]
];
}
/**
* @dataProvider orderDirection
*
* @param OrderDirection $orderDirection
* @param string $searchText
* @param array<int,string> $resultGroups
* @return void
*/
public function testGetGroupSort(OrderDirection $orderDirection, string $searchText, array $resultGroups): void
{
$ocis = $this->getOcis('admin', 'admin');
$philosophyHatersGroup = $ocis->createGroup("philosophyhaters", "philosophy haters group");
$physicsLoversGroup = $ocis->createGroup("physicslovers", "physics lover group");
$this->createdGroups = [$philosophyHatersGroup,$physicsLoversGroup];
$groups = $ocis->getGroups(search: $searchText, orderBy: $orderDirection);
$this->assertCount(
count($resultGroups),
$groups,
"Expected group count to be " . count($resultGroups) . " but found " . count($groups)
);
for ($i = 0; $i < count($groups); $i++) {
$this->assertSame(
$resultGroups[$i],
$groups[$i]->getDisplayName(),
"Expected group display name to be " . $resultGroups[$i]
. " but found " . $groups[$i]->getDisplayName()
);
}
}
/**
* @return void
*/
public function testDeleteGroupById(): void
{
$ocis = $this->getOcis('admin', 'admin');
$ocis->createGroup("philosophyhaters", "philosophy haters group");
$physicsLoversGroup = $ocis->createGroup("physicslovers", "physics lover group");
foreach ($ocis->getGroups() as $group) {
if ($group->getDisplayName() === "philosophyhaters") {
$ocis->deleteGroupByID($group->getId());
}
}
$this->assertCount(
1,
$ocis->getGroups(),
"Expected group count to be 1 but found " . count($ocis->getGroups())
);
$this->assertSame(
"physicslovers",
$ocis->getGroups()[0]->getDisplayName(),
"Expected group display name to be 'physicslovers' but found " . $ocis->getGroups()[0]->getDisplayName()
);
$this->createdGroups = [$physicsLoversGroup];
}
public function testGetResourceById(): void
{
$ocis = $this->getOcis('admin', 'admin');
$personalDrive = $this->getPersonalDrive($ocis);
$personalDrive->uploadFile('somefile.txt', 'some content');
$this->createdResources[$personalDrive->getId()][] = '/somefile.txt';
$expectedResource = $personalDrive->getResources()[0];
$resource = $ocis->getResourceById($expectedResource->getId());
$this->assertSame(
$expectedResource->getId(),
$resource->getId(),
"Expected resource id to be " . $expectedResource->getId()
. " but found " . $resource->getId()
);
$this->assertSame(
'somefile.txt',
$resource->getName(),
"Expected resource name to be 'somefile.txt' but found " . $resource->getName()
);
$this->assertSame(
'file',
$resource->getType(),
"Expected resource type to be 'file' but found " . $resource->getType()
);
$this->assertSame(
12,
$resource->getSize(),
"Expected resource size to be 12 but found " . $resource->getSize()
);
$content = $this->getContentOfResource425Save($resource);
$this->assertSame('some content', $content, "File content doesn't match");
$this->assertSame(
$personalDrive->getId(),
$resource->getSpaceId(),
"Drive id doesn't match with the space id of the resource"
);
}
public function testGetResourceByIdEmptyFolder(): void
{
$ocis = $this->getOcis('admin', 'admin');
$personalDrive = $this->getPersonalDrive($ocis);
$personalDrive->createFolder('myfolder');
$this->createdResources[$personalDrive->getId()][] = '/myfolder';
$expectedResource = $personalDrive->getResources()[0];
$resource = $ocis->getResourceById($expectedResource->getId());
$this->assertSame(
$expectedResource->getId(),
$resource->getId(),
"Expected resource id to be " . $expectedResource->getId() . " but found "
. $resource->getId()
);
$this->assertSame(
'myfolder',
$resource->getName(),
"Expected resource name to be 'myfolder' but found " . $resource->getName()
);
$this->assertSame(
'folder',
$resource->getType(),
"Expected resource type to be 'folder' but found " . $resource->getType()
);
$this->assertSame(
0,
$resource->getSize(),
"Expected resource size to be 0 but found " . $resource->getSize()
);
$this->assertSame(
'',
$resource->getContent(),
"Expected resource isn't a folder"
); // getting a folder does not return any content
$this->assertSame(
$personalDrive->getId(),
$resource->getSpaceId(),
"Drive id doesn't match with the space id of the resource"
);
}
public function testGetResourceByIdFolderWithContent(): void
{
$ocis = $this->getOcis('admin', 'admin');
$personalDrive = $this->getPersonalDrive($ocis);
$personalDrive->createFolder('myfolder');
$this->createdResources[$personalDrive->getId()][] = '/myfolder';
$personalDrive->uploadFile('myfolder/somefile.txt', 'some content');
$expectedResource = $personalDrive->getResources()[0];
$resource = $ocis->getResourceById($expectedResource->getId());
$this->assertSame(
$expectedResource->getId(),
$resource->getId(),
"Expected resource id to be " . $expectedResource->getId() . " but found "
. $resource->getId()
);
$this->assertSame(
'myfolder',
$resource->getName(),
"Expected resource name to be 'myfolder' but found " . $resource->getName()
);
$this->assertSame(
'folder',
$resource->getType(),
"Expected resource type to be 'folder' but found " . $resource->getType()
);
$this->assertSame(
12,
$resource->getSize(),
"Expected resource size to be 12 but found " . $resource->getSize()
);
$this->assertSame(
'',
$resource->getContent(),
"Expected resource isn't a folder"
); // getting a folder does not return any content
$this->assertSame(
$personalDrive->getId(),
$resource->getSpaceId(),
"Drive id doesn't match with the space id of the resource"
);
}
public function testGetResourceByIdFileInAFolder(): void
{
$ocis = $this->getOcis('admin', 'admin');
$personalDrive = $this->getPersonalDrive($ocis);
$personalDrive->createFolder('myfolder');
$this->createdResources[$personalDrive->getId()][] = '/myfolder';
$personalDrive->uploadFile('myfolder/somefile.txt', 'some content');
$expectedResource = $personalDrive->getResources('/myfolder')[0];
$resource = $ocis->getResourceById($expectedResource->getId());
$this->assertSame(
$expectedResource->getId(),
$resource->getId(),
"Expected resource id to be " . $expectedResource->getId() . " but found "
. $resource->getId()
);
$this->assertSame(
'somefile.txt',
$resource->getName(),
"Expected resource name to be 'somefile.txt' but found " . $resource->getName()
);
$this->assertSame(
'file',
$resource->getType(),
"Expected resource type to be 'file' but found " . $resource->getType()
);
$this->assertSame(
12,
$resource->getSize(),
"Expected resource size to be 12 but found " . $resource->getSize()
);
$content = $this->getContentOfResource425Save($resource);
$this->assertSame('some content', $content, "File content doesn't match");
$this->assertSame(
$personalDrive->getId(),
$resource->getSpaceId(),
"Drive id doesn't match with the space id of the resource"
);
}
public function testGetResourceInvalidId(): void
{
$this->expectException(NotFoundException::class);
$ocis = $this->getOcis('admin', 'admin');
$ocis->getResourceById('not-existing-id');
}
}