Skip to content

Commit 650d1d2

Browse files
committed
Merge pull request #94 from czenker/fileprovider
Fileprovider
2 parents 9e7107b + 01772bf commit 650d1d2

File tree

2 files changed

+47
-6
lines changed

2 files changed

+47
-6
lines changed

src/Provider/FileProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public function cleanUp()
132132
->name('*.json')
133133
;
134134
$finder->date(
135-
sprintf('> %d seconds ago', $this->options['message_expiration'])
135+
sprintf('< %d seconds ago', $this->options['message_expiration'])
136136
);
137137
/** @var SplFileInfo $file */
138138
foreach ($finder as $file) {

tests/Provider/FileProviderTest.php

+46-5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Uecode\Bundle\QPushBundle\Tests\Provider;
44

5+
use Symfony\Component\Finder\Finder;
56
use Uecode\Bundle\QPushBundle\Event\MessageEvent;
67
use Uecode\Bundle\QPushBundle\Provider\FileProvider;
78

@@ -160,13 +161,53 @@ public function testCleanUp()
160161
{
161162
$this->provider->create();
162163
$provider = $this->getFileProvider([
163-
'message_expiration' => 1,
164+
'message_expiration' => 10,
164165
]);
165-
$provider->publish(['testing']);
166-
$provider->publish(['testing 123']);
167-
sleep(1);
166+
167+
$id = $provider->publish(['testing']);
168+
$this->mockMessageAge($id, 3600);
169+
$id = $provider->publish(['testing 123']);
170+
$this->mockMessageAge($id, 3600);
171+
172+
$provider->cleanUp();
173+
174+
$finder = new Finder();
175+
$files = $finder->files()->in($this->basePath . DIRECTORY_SEPARATOR . $this->queueHash);
176+
$this->assertCount(0, $files);
177+
}
178+
179+
/**
180+
* @see https://github.com/uecode/qpush-bundle/issues/93
181+
*/
182+
public function testCleanUpDoesNotRemoveCurrentMessages() {
183+
$this->provider->create();
184+
$provider = $this->getFileProvider([
185+
'message_expiration' => 10,
186+
]);
187+
$currentMessage = ['dont remove me'];
188+
189+
$id = $provider->publish(['testing']);
190+
$this->mockMessageAge($id, 3600);
191+
$id = $provider->publish(['testing 123']);
192+
$this->mockMessageAge($id, 3600);
193+
$provider->publish($currentMessage);
194+
168195
$provider->cleanUp();
169196
$messages = $provider->receive();
170-
$this->assertEmpty($messages);
197+
$this->assertCount(1, $messages);
198+
$this->assertSame($currentMessage, $messages[0]->getBody());
199+
}
200+
201+
/**
202+
* @param string $id
203+
* @param int $ageInSeconds
204+
* @return string
205+
*/
206+
protected function mockMessageAge($id, $ageInSeconds) {
207+
$path = substr(hash('md5', $id), 0, 3);
208+
touch(
209+
$this->basePath.DIRECTORY_SEPARATOR.$this->queueHash.DIRECTORY_SEPARATOR.$path.DIRECTORY_SEPARATOR.$id.'.json',
210+
time() - $ageInSeconds
211+
);
171212
}
172213
}

0 commit comments

Comments
 (0)