2
2
3
3
namespace Uecode \Bundle \QPushBundle \Tests \Provider ;
4
4
5
+ use Symfony \Component \Finder \Finder ;
5
6
use Uecode \Bundle \QPushBundle \Event \MessageEvent ;
6
7
use Uecode \Bundle \QPushBundle \Provider \FileProvider ;
7
8
@@ -160,13 +161,53 @@ public function testCleanUp()
160
161
{
161
162
$ this ->provider ->create ();
162
163
$ provider = $ this ->getFileProvider ([
163
- 'message_expiration ' => 1 ,
164
+ 'message_expiration ' => 10 ,
164
165
]);
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
+
168
195
$ provider ->cleanUp ();
169
196
$ 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
+ );
171
212
}
172
213
}
0 commit comments