Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<?php
declare(strict_types=1);
namespace PhpScience\PageRank\Service;
use PhpScience\PageRank\Builder\NodeBuilder;
use PhpScience\PageRank\Builder\NodeCollectionBuilder;
use PhpScience\PageRank\Service\PageRankAlgorithm\Normalizer;
use PhpScience\PageRank\Service\PageRankAlgorithm\RankComparator;
use PhpScience\PageRank\Service\PageRankAlgorithm\Ranking;
use PhpScience\PageRank\Strategy\MemorySourceStrategy;
use PHPUnit\Framework\TestCase;
class PageRankAlgorithmTest extends TestCase
{
/**
* @dataProvider dataProviderExpectedNormalizedRanks
*
* @param float[] $expectedRanks
*/
public function testRun(array $expectedRanks): void
{
$pageRankAlgorithm = $this->createPageRankAlgorithm();
$nodeCollection = $pageRankAlgorithm->run(2);
static::assertSame(4, $nodeCollection->getAllNodeCount());
foreach ($nodeCollection->getNodes() as $node) {
$expectedRank = $expectedRanks[$node->getId()];
$actualRank = $node->getRank();
static::assertSame($expectedRank, $actualRank);
}
}
public function dataProviderExpectedNormalizedRanks(): array
{
return [
'scenario_1' => [
'expectedRanks' => [
1 => 1.0,
2 => 2.4999999999999996,
3 => 10.0,
4 => 8.5
]
]
];
}
/**
* @dataProvider dataProviderExpectedRanks
*
* @param float[] $expectedRanks
*/
public function testRunBatch(array $expectedRanks): void
{
$pageRankAlgorithm = $this->createPageRankAlgorithm();
$pageRankAlgorithm->initiateRanking();
$nodeCollection = $pageRankAlgorithm->runBatch(2);
static::assertSame(4, $nodeCollection->getAllNodeCount());
foreach ($nodeCollection->getNodes() as $node) {
$expectedRank = $expectedRanks[$node->getId()];
$actualRank = $node->getRank();
static::assertSame($expectedRank, $actualRank);
}
}
public function dataProviderExpectedRanks(): array
{
return [
'scenario_1' => [
'expectedRanks' => [
1 => 0.125,
2 => 0.16666666666667,
3 => 0.375,
4 => 0.33333333333333
]
]
];
}
private function getDataSource(): array
{
return [
1 => [
'id' => 1,
'out' => [2, 3],
'in' => [3]
],
2 => [
'id' => 2,
'out' => [4],
'in' => [1, 3]
],
3 => [
'id' => 3,
'out' => [1, 2, 4],
'in' => [1, 4]
],
4 => [
'id' => 4,
'out' => [3],
'in' => [3, 2]
]
];
}
private function createPageRankAlgorithm(): PageRankAlgorithmInterface
{
$dataSource = $this->getDataSource();
$nodeBuilder = new NodeBuilder();
$nodeCollectionBuilder = new NodeCollectionBuilder();
$strategy = new MemorySourceStrategy(
$nodeBuilder,
$nodeCollectionBuilder,
$dataSource
);
$rankComparator = new RankComparator();
$ranking = new Ranking(
$rankComparator,
$strategy
);
$normalizer = new Normalizer();
return new PageRankAlgorithm(
$ranking,
$strategy,
$normalizer
);
}
}