1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Fix tests for SLC console commands failing due to comparison with decorated console output.

This commit is contained in:
Bill Schaller 2015-03-20 13:45:49 -04:00
parent 24425436b0
commit b057b64c1c
3 changed files with 12 additions and 12 deletions

View file

@ -46,7 +46,7 @@ class ClearCacheCollectionRegionCommandTest extends OrmFunctionalTestCase
$tester->execute(array( $tester->execute(array(
'command' => $command->getName(), 'command' => $command->getName(),
'--all' => true, '--all' => true,
)); ), array('decorated' => false));
$this->assertEquals('Clearing all second-level cache collection regions' . PHP_EOL, $tester->getDisplay()); $this->assertEquals('Clearing all second-level cache collection regions' . PHP_EOL, $tester->getDisplay());
} }
@ -59,7 +59,7 @@ class ClearCacheCollectionRegionCommandTest extends OrmFunctionalTestCase
'command' => $command->getName(), 'command' => $command->getName(),
'owner-class' => 'Doctrine\Tests\Models\Cache\State', 'owner-class' => 'Doctrine\Tests\Models\Cache\State',
'association' => 'cities', 'association' => 'cities',
)); ), array('decorated' => false));
$this->assertEquals('Clearing second-level cache for collection "Doctrine\Tests\Models\Cache\State#cities"' . PHP_EOL, $tester->getDisplay()); $this->assertEquals('Clearing second-level cache for collection "Doctrine\Tests\Models\Cache\State#cities"' . PHP_EOL, $tester->getDisplay());
} }
@ -73,7 +73,7 @@ class ClearCacheCollectionRegionCommandTest extends OrmFunctionalTestCase
'owner-class' => 'Doctrine\Tests\Models\Cache\State', 'owner-class' => 'Doctrine\Tests\Models\Cache\State',
'association' => 'cities', 'association' => 'cities',
'owner-id' => 1, 'owner-id' => 1,
)); ), array('decorated' => false));
$this->assertEquals('Clearing second-level cache entry for collection "Doctrine\Tests\Models\Cache\State#cities" owner entity identified by "1"' . PHP_EOL, $tester->getDisplay()); $this->assertEquals('Clearing second-level cache entry for collection "Doctrine\Tests\Models\Cache\State#cities" owner entity identified by "1"' . PHP_EOL, $tester->getDisplay());
} }
@ -87,7 +87,7 @@ class ClearCacheCollectionRegionCommandTest extends OrmFunctionalTestCase
'owner-class' => 'Doctrine\Tests\Models\Cache\State', 'owner-class' => 'Doctrine\Tests\Models\Cache\State',
'association' => 'cities', 'association' => 'cities',
'--flush' => true, '--flush' => true,
)); ), array('decorated' => false));
$this->assertEquals('Flushing cache provider configured for "Doctrine\Tests\Models\Cache\State#cities"' . PHP_EOL, $tester->getDisplay()); $this->assertEquals('Flushing cache provider configured for "Doctrine\Tests\Models\Cache\State#cities"' . PHP_EOL, $tester->getDisplay());
} }

View file

@ -46,7 +46,7 @@ class ClearCacheEntityRegionCommandTest extends OrmFunctionalTestCase
$tester->execute(array( $tester->execute(array(
'command' => $command->getName(), 'command' => $command->getName(),
'--all' => true, '--all' => true,
)); ), array('decorated' => false));
$this->assertEquals('Clearing all second-level cache entity regions' . PHP_EOL, $tester->getDisplay()); $this->assertEquals('Clearing all second-level cache entity regions' . PHP_EOL, $tester->getDisplay());
} }
@ -58,7 +58,7 @@ class ClearCacheEntityRegionCommandTest extends OrmFunctionalTestCase
$tester->execute(array( $tester->execute(array(
'command' => $command->getName(), 'command' => $command->getName(),
'entity-class' => 'Doctrine\Tests\Models\Cache\Country', 'entity-class' => 'Doctrine\Tests\Models\Cache\Country',
)); ), array('decorated' => false));
$this->assertEquals('Clearing second-level cache for entity "Doctrine\Tests\Models\Cache\Country"' . PHP_EOL, $tester->getDisplay()); $this->assertEquals('Clearing second-level cache for entity "Doctrine\Tests\Models\Cache\Country"' . PHP_EOL, $tester->getDisplay());
} }
@ -71,7 +71,7 @@ class ClearCacheEntityRegionCommandTest extends OrmFunctionalTestCase
'command' => $command->getName(), 'command' => $command->getName(),
'entity-class' => 'Doctrine\Tests\Models\Cache\Country', 'entity-class' => 'Doctrine\Tests\Models\Cache\Country',
'entity-id' => 1, 'entity-id' => 1,
)); ), array('decorated' => false));
$this->assertEquals('Clearing second-level cache entry for entity "Doctrine\Tests\Models\Cache\Country" identified by "1"' . PHP_EOL, $tester->getDisplay()); $this->assertEquals('Clearing second-level cache entry for entity "Doctrine\Tests\Models\Cache\Country" identified by "1"' . PHP_EOL, $tester->getDisplay());
} }
@ -84,7 +84,7 @@ class ClearCacheEntityRegionCommandTest extends OrmFunctionalTestCase
'command' => $command->getName(), 'command' => $command->getName(),
'entity-class' => 'Doctrine\Tests\Models\Cache\Country', 'entity-class' => 'Doctrine\Tests\Models\Cache\Country',
'--flush' => true, '--flush' => true,
)); ), array('decorated' => false));
$this->assertEquals('Flushing cache provider configured for entity named "Doctrine\Tests\Models\Cache\Country"' . PHP_EOL, $tester->getDisplay()); $this->assertEquals('Flushing cache provider configured for entity named "Doctrine\Tests\Models\Cache\Country"' . PHP_EOL, $tester->getDisplay());
} }

View file

@ -46,7 +46,7 @@ class ClearCacheQueryRegionCommandTest extends OrmFunctionalTestCase
$tester->execute(array( $tester->execute(array(
'command' => $command->getName(), 'command' => $command->getName(),
'--all' => true, '--all' => true,
)); ), array('decorated' => false));
$this->assertEquals('Clearing all second-level cache query regions' . PHP_EOL, $tester->getDisplay()); $this->assertEquals('Clearing all second-level cache query regions' . PHP_EOL, $tester->getDisplay());
} }
@ -58,7 +58,7 @@ class ClearCacheQueryRegionCommandTest extends OrmFunctionalTestCase
$tester->execute(array( $tester->execute(array(
'command' => $command->getName(), 'command' => $command->getName(),
'region-name' => null, 'region-name' => null,
)); ), array('decorated' => false));
$this->assertEquals('Clearing second-level cache query region named "query_cache_region"' . PHP_EOL, $tester->getDisplay()); $this->assertEquals('Clearing second-level cache query region named "query_cache_region"' . PHP_EOL, $tester->getDisplay());
} }
@ -70,7 +70,7 @@ class ClearCacheQueryRegionCommandTest extends OrmFunctionalTestCase
$tester->execute(array( $tester->execute(array(
'command' => $command->getName(), 'command' => $command->getName(),
'region-name' => 'my_region', 'region-name' => 'my_region',
)); ), array('decorated' => false));
$this->assertEquals('Clearing second-level cache query region named "my_region"' . PHP_EOL, $tester->getDisplay()); $this->assertEquals('Clearing second-level cache query region named "my_region"' . PHP_EOL, $tester->getDisplay());
} }
@ -83,7 +83,7 @@ class ClearCacheQueryRegionCommandTest extends OrmFunctionalTestCase
'command' => $command->getName(), 'command' => $command->getName(),
'region-name' => 'my_region', 'region-name' => 'my_region',
'--flush' => true, '--flush' => true,
)); ), array('decorated' => false));
$this->assertEquals('Flushing cache provider configured for second-level cache query region named "my_region"' . PHP_EOL, $tester->getDisplay()); $this->assertEquals('Flushing cache provider configured for second-level cache query region named "my_region"' . PHP_EOL, $tester->getDisplay());
} }