Move generic functions to RawMinkContext [2/2]

This commit is contained in:
Konstantin Kudryashov
2012-10-24 17:59:32 +03:00
parent 7968dbc286
commit 0f92203531

View File

@@ -446,21 +446,6 @@ class MinkContext extends RawMinkContext implements TranslatedContextInterface
return glob(__DIR__.'/../../../../i18n/*.xliff');
}
/**
* Locates url, based on provided path.
* Override to provide custom routing mechanism.
*
* @param string $path
*
* @return string
*/
protected function locatePath($path)
{
$startUrl = rtrim($this->getMinkParameter('base_url'), '/') . '/';
return 0 !== strpos($path, 'http') ? $startUrl . ltrim($path, '/') : $path;
}
/**
* Returns fixed step argument (with \\" replaced back to ").
*
@@ -472,21 +457,4 @@ class MinkContext extends RawMinkContext implements TranslatedContextInterface
{
return str_replace('\\"', '"', $argument);
}
/**
* Save a screenshot of the current window to the file system.
*
* @param string $filename Desired filename, defaults to
* <browser_name>_<ISO 8601 date>_<randomId>.png
* @param string $filepath Desired filepath, defaults to
* upload_tmp_dir, falls back to sys_get_temp_dir()
*/
public function saveScreenshot($filename = null, $filepath = null)
{
// Under Cygwin, uniqid with more_entropy must be set to true.
// No effect in other environments.
$filename = $filename ?: sprintf('%s_%s_%s.%s', $this->getMinkParameter('browser_name'), date('c'), uniqid('', true), 'png');
$filepath = $filepath ? $filepath : ini_get('upload_tmp_dir') ? ini_get('upload_tmp_dir') : sys_get_temp_dir();
file_put_contents($filepath . '/' . $filename, $this->getSession()->getScreenshot());
}
}