Skip to content

Commit 1d84545

Browse files
author
Roel Sint
committed
PHPCRGenerator: add test
1 parent 3f64182 commit 1d84545

File tree

3 files changed

+42
-8
lines changed

3 files changed

+42
-8
lines changed

Generator/PHPCRGenerator.php

+4-7
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,18 @@
1515
class PHPCRGenerator implements GeneratorInterface
1616
{
1717
/**
18-
* @abstract
19-
*
2018
* @param \Sonata\MediaBundle\Model\MediaInterface $media
2119
*
2220
* @return string
2321
*/
2422
public function generatePath(MediaInterface $media)
2523
{
26-
$id = strpos($media->getId(), 0);
27-
$parts = explode('/', ltrim($id, '/'));
24+
$segments = preg_split('#/#', $media->getId(), null, PREG_SPLIT_NO_EMPTY);
2825

29-
if (count($parts) > 0) {
26+
if (count($segments) > 1) {
3027
// remove last part from id
31-
array_pop($parts);
32-
$path = implode('/', $parts);
28+
array_pop($segments);
29+
$path = join($segments, '/');
3330
} else {
3431
$path = '';
3532
}

Provider/ImageProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public function generatePublicUrl(MediaInterface $media, $format)
128128
$path = $this->getReferenceImage($media);
129129
} else {
130130
$path = $this->thumbnail->generatePublicUrl($this, $media, $format);
131-
}
131+
}
132132

133133
return $this->getCdn()->getPath($path, $media->getCdnIsFlushable());
134134
}
+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Sonata package.
5+
*
6+
* (c) Thomas Rabaix <[email protected]>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Sonata\MediaBundle\Tests\Generator;
13+
14+
use Sonata\MediaBundle\Generator\PHPCRGenerator;
15+
use Sonata\MediaBundle\Tests\Entity\Media;
16+
17+
class PHPCRGeneratorTest extends \PHPUnit_Framework_TestCase
18+
{
19+
20+
public function testPHPCRGenerator()
21+
{
22+
23+
$generator = new PHPCRGenerator;
24+
25+
$media = new Media;
26+
$media->setContext('user');
27+
28+
$media->setId('nodename');
29+
$this->assertEquals('user', $generator->generatePath($media));
30+
31+
$media->setId('/media/nodename');
32+
$this->assertEquals('user/media', $generator->generatePath($media));
33+
34+
$media->setId('/media/sub/path/nodename');
35+
$this->assertEquals('user/media/sub/path', $generator->generatePath($media));
36+
}
37+
}

0 commit comments

Comments
 (0)