Mercurial > hg > isophonics-drupal-site
view vendor/composer/installers/tests/Composer/Installers/Test/CraftInstallerTest.php @ 9:1fc0ff908d1f
Add another data file
author | Chris Cannam |
---|---|
date | Mon, 05 Feb 2018 12:34:32 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Composer\Installers\Test; use Composer\Installers\CraftInstaller; /** * Tests for the CraftInstaller Class * * @coversDefaultClass Composer\Installers\CraftInstaller */ class CraftInstallerTest extends TestCase { /** @var CraftInstaller */ private $installer; /** * Sets up the fixture, for example, instantiate the class-under-test. * * This method is called before a test is executed. */ final public function setup() { $this->installer = new CraftInstaller(); } /** * @param string $packageName * @param string $expectedName * * @covers ::inflectPackageVars * * @dataProvider provideExpectedInflectionResults */ final public function testInflectPackageVars($packageName, $expectedName) { $installer = $this->installer; $vars = array('name' => $packageName); $expected = array('name' => $expectedName); $actual = $installer->inflectPackageVars($vars); $this->assertEquals($actual, $expected); } /** * Provides various names for packages and the expected result after inflection * * @return array */ final public function provideExpectedInflectionResults() { return array( // lowercase array('foo', 'foo'), array('craftfoo', 'craftfoo'), array('fooplugin', 'fooplugin'), array('craftfooplugin', 'craftfooplugin'), // lowercase - dash array('craft-foo', 'foo'), array('foo-plugin', 'foo'), array('craft-foo-plugin', 'foo'), // lowercase - underscore array('craft_foo', 'craft_foo'), array('foo_plugin', 'foo_plugin'), array('craft_foo_plugin', 'craft_foo_plugin'), // CamelCase array('Foo', 'Foo'), array('CraftFoo', 'CraftFoo'), array('FooPlugin', 'FooPlugin'), array('CraftFooPlugin', 'CraftFooPlugin'), // CamelCase - Dash array('Craft-Foo', 'Foo'), array('Foo-Plugin', 'Foo'), array('Craft-Foo-Plugin', 'Foo'), // CamelCase - underscore array('Craft_Foo', 'Craft_Foo'), array('Foo_Plugin', 'Foo_Plugin'), array('Craft_Foo_Plugin', 'Craft_Foo_Plugin'), ); } }