1. Go to this page and download the library: Download instaclick/base-test-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
instaclick / base-test-bundle example snippets
// application/ApplicationKernel.php
public function registerBundles()
{
// ...
if (in_array($this->getEnvironment(), array('test'))) {
$bundles[] = new IC\Bundle\Base\TestBundle\ICBaseTestBundle();
}
return $bundles;
}
class Foo
{
protected $bar;
private function getBar()
{
return $this->bar;
}
}
use IC\Bundle\Base\TestBundle\Test\TestCase;
class ICFooBarBundleTest extends TestCase
{
public function testGetBar()
{
$subject = new Foo;
$expected = 'Hello';
$this->setPropertyOnObject($subject, 'bar', $expected);
$method = $this->makeCallable($subject, 'getBar');
$this->assertEquals($expected, $method->invoke($subject));
}
}
use IC\Bundle\Base\TestBundle\Test\BundleTestCase;
use IC\Bundle\Base\MailBundle\ICBaseMailBundle;
class ICBaseMailBundleTest extends BundleTestCase
{
public function testBuild()
{
$bundle = new ICBaseMailBundle();
$bundle->build($this->container);
// Add your tests here
}
}
use IC\Bundle\Base\TestBundle\Test\DependencyInjection\ConfigurationTestCase;
use IC\Bundle\Base\MailBundle\DependencyInjection\Configuration;
class ConfigurationTest extends ConfigurationTestCase
{
public function testDefaults()
{
$configuration = $this->processConfiguration(new Configuration(), array());
$this->assertEquals('INBOX', $configuration['mail_bounce']['mailbox']);
}
// ...
}
use IC\Bundle\Base\TestBundle\Test\DependencyInjection\ExtensionTestCase;
use IC\Bundle\Base\MailBundle\DependencyInjection\ICBaseMailExtension;
class ICBaseMailExtensionTest extends ExtensionTestCase
{
/**
* @expectedException \Symfony\Component\Config\Definition\Exception\InvalidConfigurationException
*/
public function testInvalidConfiguration()
{
$extension = new ICBaseMailExtension();
$configuration = array();
$this->load($extension, $configuration);
}
public function testValidConfiguration()
{
$this->createFullConfiguration();
$this->assertParameter('John Smith', 'ic_base_mail.composer.default_sender.name');
$this->assertDICConstructorArguments(
$this->container->getDefinition('ic_base_mail.service.composer'),
array()
);
$this->assertDICConstructorArguments(
$this->container->getDefinition('ic_base_mail.service.sender'),
array()
);
$this->assertDICConstructorArguments(
$this->container->getDefinition('ic_base_mail.service.bounce_mail'),
array()
);
}
// ...
}
use MyBundle\Validator\Constraints;
use IC\Bundle\Base\TestBundle\Test\Validator\ValidatorTestCase;
class BannedEmailValidatorTest extends ValidatorTestCase
{
public function testValid()
{
$validator = new Constraints\BannedEmailValidator();
$constraint = new Constraints\BannedEmail();
$value = '[email protected]';
$this->assertValid($validator, $constraint, $value);
}
public function testInvalid()
{
$validator = new Constraints\BannedEmailValidator();
$constraint = new Constraints\BannedEmail();
$value = 'domain.com';
$message = 'Please provide a valid email.';
$parameters = array();
$this->assertInvalid($validator, $constraint, $value, $message, $parameters);
}
}
use IC\Bundle\Base\TestBundle\Test\Functional\WebTestCase;
class MyFunctionalTest extends WebTestCase
{
public function testSomething()
{
// Normal test here. You can benefit from an already initialized
// Symfony2 Client by using directly $this->getClient()
}
}
public function testFoo()
{
$serviceHelper = $this->getHelper('service');
$authenticationService = $serviceHelper->mock('core.security.authentication');
// ...
}
pubic function testIndex()
{
$sessionHelper = $this->getHelper('session');
$credential = $this->getReferenceRepository()->getReference('core.security.credential#admin');
// $sessionHelper->getSession() is also available
$sessionHelper->authenticate($credential, 'secured_area');
// ...
}