/**
  * @dataProvider getSupportedLocalesDP
  */
 public function testGetSupportedLocales($a, $b)
 {
     $obj = new _Repositories(TEST_FILES);
     $this->array($obj->getSupportedLocales($a))->isEqualTo($b);
 }
Beispiel #2
0
use Json\Json;
// Autoloading of composer dependencies
$root_folder = realpath(__DIR__ . '/..');
require_once "{$root_folder}/vendor/autoload.php";
// Override sources for functional tests both locally and on Travis
if (getenv('TRAVIS') || getenv('AUTOMATED_TESTS')) {
    $source_path = "{$root_folder}/tests/testfiles/";
} else {
    $source_path = "{$root_folder}/app/sources/";
}
// Query request
$type = Utils::getQueryParam('type');
$repo = Utils::getQueryParam('repo');
$bugzilla = Utils::getQueryParam('bugzilla');
$tool = Utils::getQueryParam('tool');
$repos = new Repositories($source_path);
$json_data = new Json();
// Only one repo requested
if ($repo != '') {
    $locales = $repos->getSingleRepository($repo);
    if ($locales) {
        die($json_data->outputContent($locales));
    } else {
        http_response_code(400);
        die('ERROR: unknown repository.');
    }
}
// Only one type of repo requested
if ($type != '') {
    die($json_data->outputContent($repos->getTypeRepositories($type)));
}