3
3
namespace AntiMattr \Tests \MongoDB \Migrations \Configuration ;
4
4
5
5
use AntiMattr \MongoDB \Migrations \Configuration \Configuration ;
6
- use AntiMattr \ TestCase \ AntiMattrTestCase ;
6
+ use PHPUnit \ Framework \ TestCase ;
7
7
8
- class ConfigurationTest extends AntiMattrTestCase
8
+ class ConfigurationTest extends TestCase
9
9
{
10
10
private $ configuration ;
11
11
private $ connection ;
12
12
13
13
protected function setUp ()
14
14
{
15
- $ this ->connection = $ this ->buildMock ('Doctrine\MongoDB\Connection ' );
15
+ $ this ->connection = $ this ->createMock ('Doctrine\MongoDB\Connection ' );
16
16
$ this ->configuration = new Configuration ($ this ->connection );
17
17
}
18
18
@@ -28,8 +28,8 @@ public function testGetCollection()
28
28
$ this ->configuration ->setMigrationsDatabaseName ('test_antimattr_migrations ' );
29
29
$ this ->configuration ->setMigrationsCollectionName ('antimattr_migration_versions_test ' );
30
30
31
- $ expectedCollection = $ this ->buildMock ('Doctrine\MongoDB\Collection ' );
32
- $ database = $ this ->buildMock ('Doctrine\MongoDB\Database ' );
31
+ $ expectedCollection = $ this ->createMock ('Doctrine\MongoDB\Collection ' );
32
+ $ database = $ this ->createMock ('Doctrine\MongoDB\Database ' );
33
33
34
34
$ this ->connection ->expects ($ this ->once ())
35
35
->method ('selectDatabase ' )
@@ -52,8 +52,8 @@ public function testGetCurrentVersion()
52
52
$ directory = dirname (__DIR__ ) . '/Resources/Migrations/ ' ;
53
53
$ this ->configuration ->registerMigrationsFromDirectory ($ directory );
54
54
55
- $ collection = $ this ->buildMock ('Doctrine\MongoDB\Collection ' );
56
- $ database = $ this ->buildMock ('Doctrine\MongoDB\Database ' );
55
+ $ collection = $ this ->createMock ('Doctrine\MongoDB\Collection ' );
56
+ $ database = $ this ->createMock ('Doctrine\MongoDB\Database ' );
57
57
58
58
$ this ->connection ->expects ($ this ->once ())
59
59
->method ('selectDatabase ' )
@@ -65,7 +65,7 @@ public function testGetCurrentVersion()
65
65
->with ('antimattr_migration_versions_test ' )
66
66
->willReturn ($ collection );
67
67
68
- $ cursor = $ this ->buildMock ('Doctrine\MongoDB\Cursor ' );
68
+ $ cursor = $ this ->createMock ('Doctrine\MongoDB\Cursor ' );
69
69
70
70
$ in = ['v ' => ['$in ' => ['20140822185742 ' , '20140822185743 ' , '20140822185744 ' ]]];
71
71
@@ -97,7 +97,7 @@ public function testGetDatabase()
97
97
{
98
98
$ this ->configuration ->setMigrationsDatabaseName ('test_antimattr_migrations ' );
99
99
100
- $ expectedDatabase = $ this ->buildMock ('Doctrine\MongoDB\Database ' );
100
+ $ expectedDatabase = $ this ->createMock ('Doctrine\MongoDB\Database ' );
101
101
102
102
$ this ->connection ->expects ($ this ->once ())
103
103
->method ('selectDatabase ' )
@@ -112,8 +112,8 @@ public function testGetMigratedVersions()
112
112
{
113
113
$ this ->prepareValidConfiguration ();
114
114
115
- $ collection = $ this ->buildMock ('Doctrine\MongoDB\Collection ' );
116
- $ database = $ this ->buildMock ('Doctrine\MongoDB\Database ' );
115
+ $ collection = $ this ->createMock ('Doctrine\MongoDB\Collection ' );
116
+ $ database = $ this ->createMock ('Doctrine\MongoDB\Database ' );
117
117
118
118
$ this ->connection ->expects ($ this ->once ())
119
119
->method ('selectDatabase ' )
@@ -147,8 +147,8 @@ public function testGetNumberOfExecutedMigrations()
147
147
{
148
148
$ this ->prepareValidConfiguration ();
149
149
150
- $ collection = $ this ->buildMock ('Doctrine\MongoDB\Collection ' );
151
- $ database = $ this ->buildMock ('Doctrine\MongoDB\Database ' );
150
+ $ collection = $ this ->createMock ('Doctrine\MongoDB\Collection ' );
151
+ $ database = $ this ->createMock ('Doctrine\MongoDB\Database ' );
152
152
153
153
$ this ->connection ->expects ($ this ->once ())
154
154
->method ('selectDatabase ' )
@@ -160,7 +160,7 @@ public function testGetNumberOfExecutedMigrations()
160
160
->with ('antimattr_migration_versions_test ' )
161
161
->willReturn ($ collection );
162
162
163
- $ cursor = $ this ->buildMock ('Doctrine\MongoDB\Cursor ' );
163
+ $ cursor = $ this ->createMock ('Doctrine\MongoDB\Cursor ' );
164
164
165
165
$ collection ->expects ($ this ->once ())
166
166
->method ('find ' )
@@ -200,13 +200,13 @@ public function testGetVersionThrowsUnknownVersionException()
200
200
201
201
public function testHasVersionMigrated ()
202
202
{
203
- $ version1 = $ this ->buildMock ('AntiMattr\MongoDB\Migrations\Version ' );
204
- $ version2 = $ this ->buildMock ('AntiMattr\MongoDB\Migrations\Version ' );
203
+ $ version1 = $ this ->createMock ('AntiMattr\MongoDB\Migrations\Version ' );
204
+ $ version2 = $ this ->createMock ('AntiMattr\MongoDB\Migrations\Version ' );
205
205
206
206
$ this ->prepareValidConfiguration ();
207
207
208
- $ collection = $ this ->buildMock ('Doctrine\MongoDB\Collection ' );
209
- $ database = $ this ->buildMock ('Doctrine\MongoDB\Database ' );
208
+ $ collection = $ this ->createMock ('Doctrine\MongoDB\Collection ' );
209
+ $ database = $ this ->createMock ('Doctrine\MongoDB\Database ' );
210
210
211
211
$ this ->connection ->expects ($ this ->once ())
212
212
->method ('selectDatabase ' )
@@ -278,8 +278,8 @@ public function testDuplicateInGetMigratedTimestampThrowsException()
278
278
{
279
279
$ this ->prepareValidConfiguration ();
280
280
281
- $ collection = $ this ->buildMock ('Doctrine\MongoDB\Collection ' );
282
- $ database = $ this ->buildMock ('Doctrine\MongoDB\Database ' );
281
+ $ collection = $ this ->createMock ('Doctrine\MongoDB\Collection ' );
282
+ $ database = $ this ->createMock ('Doctrine\MongoDB\Database ' );
283
283
284
284
$ this ->connection ->expects ($ this ->once ())
285
285
->method ('selectDatabase ' )
@@ -291,7 +291,7 @@ public function testDuplicateInGetMigratedTimestampThrowsException()
291
291
->with ('antimattr_migration_versions_test ' )
292
292
->willReturn ($ collection );
293
293
294
- $ cursor = $ this ->buildMock ('Doctrine\MongoDB\Cursor ' );
294
+ $ cursor = $ this ->createMock ('Doctrine\MongoDB\Cursor ' );
295
295
296
296
$ collection ->expects ($ this ->once ())
297
297
->method ('find ' )
@@ -308,8 +308,8 @@ public function testGetMigratedTimestamp()
308
308
{
309
309
$ this ->prepareValidConfiguration ();
310
310
311
- $ collection = $ this ->buildMock ('Doctrine\MongoDB\Collection ' );
312
- $ database = $ this ->buildMock ('Doctrine\MongoDB\Database ' );
311
+ $ collection = $ this ->createMock ('Doctrine\MongoDB\Collection ' );
312
+ $ database = $ this ->createMock ('Doctrine\MongoDB\Database ' );
313
313
314
314
$ this ->connection ->expects ($ this ->once ())
315
315
->method ('selectDatabase ' )
@@ -321,7 +321,7 @@ public function testGetMigratedTimestamp()
321
321
->with ('antimattr_migration_versions_test ' )
322
322
->willReturn ($ collection );
323
323
324
- $ cursor = $ this ->buildMock ('Doctrine\MongoDB\Cursor ' );
324
+ $ cursor = $ this ->createMock ('Doctrine\MongoDB\Cursor ' );
325
325
326
326
$ collection ->expects ($ this ->once ())
327
327
->method ('find ' )
0 commit comments