2017 © Pedro Peláez
 

library kohana-test-bootstrap

Helper package for testing Kohana modules

image

openbuildings/kohana-test-bootstrap

Helper package for testing Kohana modules

  • Thursday, July 28, 2016
  • by hkdobrev
  • Repository
  • 12 Watchers
  • 2 Stars
  • 1,255 Installations
  • PHP
  • 16 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

Kohana Test Bootstrap

For testing kohana modules individaully - a composer package holding all the kohana framework system and core modules., (*1)

If you want to write a module and test it independantly (via some Cloud CI for example) - then you need the kohana environment, and as its not yet in composer, it could be problematic. This adds all the kohana autoloading and cascading filesystem, as well as the core modules, which you can enable as needed., (*2)

Usage

As it is intended for testing its recommended that you place it in your require-dev section of the composer.json like this:, (*3)

"require-dev": { "openbuildings/kohana-test-bootsrap": "dev-master" }, (*4)

After that you should enter the create a "test bootstrap file", in your tests folder like this:, (*5)

tests/bootstrap.php
require_once __DIR__.'/../vendor/autoload.php';

Kohana::modules(array(
    // Add some core kohaan modules
    'database' => MODPATH.'database',
    'cache'    => MODPATH.'cache',
    // Your own module - this is where the module you are testing will appear in kohana's cascading filesystem
    'functest' => __DIR__.'/..',
    // Any other kohana modules, required with composer.json can be added like this
    'test'     => __DIR__.'/../tests/testmodule',
));

// Add some custom configuration, to be used only in testing - for example we adda a database config.
Kohana::$config
    ->load('database')
        ->set(Kohana::TESTING, array(
            'type'       => 'MySQL',
            'connection' => array(
                'hostname'   => 'localhost',
                'database'   => 'test-functest',
                'username'   => 'root',
                'password'   => '',
                'persistent' => TRUE,
            ),
            'table_prefix' => '',
            'charset'      => 'utf8',
            'caching'      => FALSE,
        ));

An example phpunit would be:, (*6)

phpunit.xml
<phpunit colors="true" bootstrap="tests/bootstrap.php">
    <testsuites>
        <testsuite>
            <directory>tests/tests</directory>
        </testsuite>
    </testsuites>
    <filter>
        <blacklist>
            <directory suffix=".php">vendor/</directory>
        </blacklist>
    </filter>
</phpunit>

which assigns tests/bootstrap.php as the phpunit's bootstrap file., (*7)

Author

Developed by Ivan Kerin as part of clippings.com, (*8)

The Versions

28/07 2016

dev-master

9999999-dev

Helper package for testing Kohana modules

  Sources   Download

BSD-3-Clause

The Requires

 

28/07 2016

0.2.0

0.2.0.0

Helper package for testing Kohana modules

  Sources   Download

BSD-3-Clause

The Requires

 

01/10 2013

0.1.2

0.1.2.0

Kohana core classes repackaged with composer, used to test modules

  Sources   Download

BSD-3-Clause

20/09 2013

0.1.1

0.1.1.0

Kohana core classes repackaged with composer, used to test modules

  Sources   Download

BSD-3-Clause

12/08 2013

0.1.0

0.1.0.0

Kohana core classes repackaged with composer, used to test modules

  Sources   Download

BSD-3-Clause