本文整理汇总了PHP中Codeception\Module类的典型用法代码示例。如果您正苦于以下问题:PHP Module类的具体用法?PHP Module怎么用?PHP Module使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Module类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* @param \Codeception\Lib\ModuleContainer $moduleContainer
* @param null $config
*/
public function __construct(ModuleContainer $moduleContainer, $config = null)
{
parent::__construct($moduleContainer, $config);
if (!empty($config['enabled'])) {
$this->generateTransferObjects();
}
}
示例2: _initialize
public function _initialize()
{
if (!function_exists('xmlrpc_encode_request')) {
throw new ModuleRequireException(__CLASS__, "XMLRPC module requires installed php_xmlrpc extension");
}
parent::_initialize();
}
示例3: __construct
/**
* @param \Codeception\Lib\ModuleContainer $moduleContainer
* @param array|null $config
*/
public function __construct(ModuleContainer $moduleContainer, $config = null)
{
parent::__construct($moduleContainer, $config);
if (!empty($config['enabled'])) {
$this->initPropel();
}
}
示例4: __construct
/**
* @param \Codeception\Lib\ModuleContainer $moduleContainer
* @param null $config
*/
public function __construct(ModuleContainer $moduleContainer, $config = null)
{
parent::__construct($moduleContainer, $config);
if (isset($this->config['enabled']) && $this->config['enabled']) {
$this->copyBundleConfigurationFiles();
$this->generateConfigDefaultFile();
}
}
示例5: validateConfig
/**
* Ensure the class specified is valid.
*
* @see \Codeception\Module::validateConfig()
* @throws \Codeception\Exception\ModuleConfig
*/
protected function validateConfig()
{
parent::validateConfig();
$class = $this->config['class'];
if (!class_exists($class)) {
throw new \Codeception\Exception\ModuleConfig("DrupalVariable", "Invalid config. Class '{$class}' does not exist");
}
$interface = "Codeception\\Module\\Drupal\\Variable\\VariableStorage\\StorageInterface";
if (!in_array($interface, class_implements($class))) {
throw new \Codeception\Exception\ModuleConfig("DrupalVariable", "Invalid config. Class '{$class}' must implement '{$interface}'");
}
}
示例6: __construct
/**
* Drupal8Module constructor.
*/
public function __construct(ModuleContainer $container, $config = null)
{
$this->config = array_merge(['drupal_root' => Configuration::projectDir() . 'web', 'site_path' => 'sites/test', 'create_users' => true, 'destroy_users' => true, 'test_user_pass' => 'test'], (array) $config);
// Bootstrap a bare minimum Kernel so we can interact with Drupal.
$autoloader = (require $this->config['drupal_root'] . '/autoload.php');
$kernel = new TestDrupalKernel('prod', $autoloader, $this->config['drupal_root']);
$kernel->bootTestEnvironment($this->config['site_path']);
// Allow for setting some basic info output.
$this->output = new ConsoleOutput();
// Get our role definitions as we use them a lot.
$this->roles = Role::loadMultiple();
parent::__construct($container);
}
示例7: __construct
/**
* @param ModuleContainer $moduleContainer
* @param null $config
*/
public function __construct(ModuleContainer $moduleContainer, $config = null)
{
parent::__construct($moduleContainer, $config);
$this->fs = $this->getModule('Filesystem');
$packageDir = dirname(dirname(dirname(dirname(__FILE__))));
$this->projectDirTemplate = "{$packageDir}/tests/_data/project_template";
$this->projectRoot = "{$packageDir}/{$config['test_path']}";
// Set the project root for the NpmPackage module
if ($moduleContainer->hasModule('\\CubicMushroom\\Tools\\ProjectToolbelt\\Codeception\\Helper\\NpmPackage')) {
/** @var JsonFile $npmPackageModule */
$npmPackageModule = $moduleContainer->getModule('\\CubicMushroom\\Tools\\ProjectToolbelt\\Codeception\\Helper\\NpmPackage');
$npmPackageModule->_reconfigure([JsonFile::CONFIG_PROJECT_ROOT => $this->projectRoot]);
}
}
示例8: __construct
/**
* @param ModuleContainer $moduleContainer
* @param array $config
*
* @throws ModuleRequireException if required modules are not available
*/
public function __construct(ModuleContainer $moduleContainer, $config = null)
{
parent::__construct($moduleContainer, $config);
$missingModules = [];
foreach ($this->requiredModules as $module) {
if (!$moduleContainer->hasModule($module)) {
$missingModules[] = $module;
}
}
if (!empty($missingModules)) {
throw new ModuleRequireException('Missing the following modules, required by the NpmPackage module are missing...', implode(', ', $missingModules));
}
$this->fs = $moduleContainer->getModule('Filesystem');
}
示例9: __construct
/**
* @param ModuleContainer $container
* @param null $config
*/
public function __construct(ModuleContainer $container, $config = null)
{
parent::__construct($container, $config);
}
示例10: _after
/**
* {@inheritDoc}
* @see \Codeception\Module::_after()
*/
public function _after(TestCase $testCase)
{
parent::_after($testCase);
$this->throwExceptionOnHttpMockError();
$this->diManager->get('httpMockServer')->clean();
}
示例11: __construct
public function __construct(ModuleContainer $moduleContainer, $config, WP $wp = null)
{
parent::__construct($moduleContainer, $config);
$this->wp = $wp ? $wp : new WP();
}
示例12: _failed
/**
* @param \Codeception\TestCase $test
* @param bool $fail
*
* @return void
*/
public function _failed(TestCase $test, $fail)
{
parent::_failed($test, $fail);
if (session_status() === PHP_SESSION_ACTIVE) {
session_destroy();
}
}
示例13: validateConfig
/**
* Provide and override for the config settings and allow custom settings depending on the service being used.
*/
protected function validateConfig()
{
$this->IMDriver = $this->createIMDriver();
$this->requiredFields = $this->IMDriver->getRequiredConfig();
$this->config = array_merge($this->IMDriver->getDefaultConfig(), $this->config);
parent::validateConfig();
}
示例14: _before
public function _before(\Codeception\TestCase $test)
{
parent::_before($test);
/////////////////////////////////////
// initialize your database here
/////////////////////////////////////
}
示例15: _failed
/**
* @param \Codeception\TestCase $test
* @param bool $fail
*
* @return void
*/
public function _failed(TestCase $test, $fail)
{
parent::_failed($test, $fail);
Propel::getWriteConnection('zed')->rollBack();
if (session_status() === PHP_SESSION_ACTIVE) {
session_destroy();
}
}