55 protected function setUp(): void
59 $this->resource_builder = $this->createMock(ResourceBuilder::class);
60 $this->collection_builder = $this->createMock(CollectionBuilder::class);
68 $this->resource_one = $this->createMock(StorableFileResource::class);
69 $this->revision_one = $this->createMock(Revision::class);
72 $this->resource_two = $this->createMock(StorableFileResource::class);
73 $this->revision_two = $this->createMock(Revision::class);
76 $this->resource_three = $this->createMock(StorableFileResource::class);
77 $this->revision_three = $this->createMock(Revision::class);
79 $this->sorter =
new Sorter(
80 $this->resource_builder,
81 $this->collection_builder,
86 $this->collection->add($this->rid_one);
87 $this->collection->add($this->rid_two);
88 $this->collection->add($this->rid_three);
91 $this->resource_one->expects($this->atLeastOnce())
92 ->method(
'getCurrentRevision')
93 ->willReturn($this->revision_one);
95 $this->resource_two->expects($this->atLeastOnce())
96 ->method(
'getCurrentRevision')
97 ->willReturn($this->revision_two);
99 $this->resource_three->expects($this->atLeastOnce())
100 ->method(
'getCurrentRevision')
101 ->willReturn($this->revision_three);
103 $this->resource_builder->expects($this->atLeastOnce())
105 ->withConsecutive([$this->rid_one], [$this->rid_two], [$this->rid_two], [$this->rid_three])
107 $this->onConsecutiveCalls(
111 $this->resource_three
118 $this->revision_one->expects($this->atLeastOnce())
119 ->method(
'getInformation')
121 $this->revision_two->expects($this->atLeastOnce())
122 ->method(
'getInformation')
124 $this->revision_three->expects($this->atLeastOnce())
125 ->method(
'getInformation')
126 ->willReturn($three);
137 $sorted_collection = $this->sorter->desc()->bySize();
140 $this->rid_three->serialize(),
141 $this->rid_two->serialize(),
142 $this->rid_one->serialize()
156 $sorted_collection = $this->sorter->asc()->bySize();
159 $this->rid_one->serialize(),
160 $this->rid_two->serialize(),
161 $this->rid_three->serialize(),
175 $sorted_collection = $this->sorter->bySize();
178 $this->rid_one->serialize(),
179 $this->rid_two->serialize(),
180 $this->rid_three->serialize(),
194 $sorted_collection = $this->sorter->byCreationDate();
197 $this->rid_one->serialize(),
198 $this->rid_two->serialize(),
199 $this->rid_three->serialize(),
213 $sorted_collection = $this->sorter->asc()->byCreationDate();
216 $this->rid_one->serialize(),
217 $this->rid_two->serialize(),
218 $this->rid_three->serialize(),
232 $sorted_collection = $this->sorter->desc()->byCreationDate();
235 $this->rid_three->serialize(),
236 $this->rid_two->serialize(),
237 $this->rid_one->serialize(),
251 $sorted_collection = $this->sorter->byTitle();
254 $this->rid_one->serialize(),
255 $this->rid_two->serialize(),
256 $this->rid_three->serialize(),
270 $sorted_collection = $this->sorter->asc()->byTitle();
273 $this->rid_one->serialize(),
274 $this->rid_two->serialize(),
275 $this->rid_three->serialize(),
289 $sorted_collection = $this->sorter->desc()->byTitle();
292 $this->rid_three->serialize(),
293 $this->rid_two->serialize(),
294 $this->rid_one->serialize(),
StorableFileResource $resource_two
getResourceIdentifications()
testByCreationDateAscSorting()
StorableFileResource $resource_one
ResourceIdentification $rid_three
Class ResourceCollectionIdentification.
Class ResourceCollection.
Class CollectionSortingTest.
testByCreationDateDescSorting()
Class AbstractBaseResourceBuilderTest.
Class ResourceIdentification.
ResourceCollection $collection
ResourceIdentification $rid_one
CollectionBuilder $collection_builder
getFlatOrder(ResourceCollection $collection)
ResourceIdentification $rid_two
Class CollectionIdentificationGenerator.
ResourceCollectionIdentification $rcid
StorableFileResource $resource_three
Class StorableFileResource.
testBySizeDefaultSorting()
testByTitleDefaultSorting()
testByCreationDateDefaultSorting()
setUpRevisionExpectations(FileInformation $one, FileInformation $two, FileInformation $three)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
CollectionIdentificationGenerator $rcid_generator