/tests/helpers.inc.php (d2d93a7f603868dc06bb6a5d244d6097e4631a3a) (20962 bytes) (mode 100644) (type blob)

<?php
// Some helper functions dealing with users/repos/bugs/etc.

include_once('totp.inc.php');

/*
 * Creating a user
 */
$_user_id = time() . '-' . rg_id(8);
$_testns = 'main';
function rg_test_create_user($db, &$rg_ui)
{
	global $_testns;
	global $_user_id;

	if (!isset($_user_id))
		$_user_id = time() . '-' . rg_id(8);

	if (!is_array($rg_ui))
		$rg_ui = array();

	$username = $_testns . '-user-' . $_user_id . '<xss>e';

	$new = array();
	$new['uid'] = 0;
	$new['organization'] = 0;
	$new['username'] = $username;
	$new['realname'] = 'realname-' . $_user_id . '<xss>';
	$new['email'] = 'email-' . $_user_id . '@embedromix.ro';
	$new['is_admin'] = 0;
	$new['rights'] = 'C';
	$new['session_time'] = 3600;
	$new['confirm_token'] = rg_id(20);
	$new['confirmed'] = 0;
	$new['plan_id'] = 0;
	$new['pass'] = 'pass-' . $_user_id . ':';
	$new['pass2'] = 'pass-' . $_user_id . ':';
	$new['disk_used_mb'] = 0;
	$new['git_mb'] = 0;
	$new['artifacts_mb'] = 0;
	$new['last_ip'] = '?';
	$_user_id++;

	// Delete old user
	$sql = 'DELETE FROM users WHERE username = @@username@@';
	$res = rg_sql_query_params($db, $sql, $new);
	if ($res === FALSE) {
		rg_log("Cannot delete old user: " . rg_sql_error());
		exit(1);
	}
	rg_sql_free_result($res);

	rg_cache_unset('username_to_uid::' . $username, RG_SOCKET_NO_WAIT);

	$rg_ui = array_merge($new, $rg_ui);
	$r = rg_user_edit($db, $rg_ui);
	if ($r === FALSE) {
		rg_log("Cannot create user (" . rg_user_error() . ")!");
		exit(1);
	}
	$rg_ui['uid'] = $r;

	$adm = ($rg_ui['is_admin'] == 1) ? 'admin' : 'not admin';
	rg_log('Created user [' . $rg_ui['username'] . ' with uid ' . $rg_ui['uid']
		. '; ' . $adm);

	// delete associated bugs
	$sql = "SELECT * FROM repos WHERE uid = " . $rg_ui['uid'];
	$res = rg_sql_query($db, $sql);
	while (($row = rg_sql_fetch_array($res))) {
		$_t = array('bug_labels', 'bug_notes', 'bug_search', 'bugs',
			'merge_requests', 'watch_bug', 'watch_repo');
		foreach ($_t as $_table) {
			$sql = "DELETE FROM $_table WHERE repo_id = " . $row['repo_id'];
			$res2 = rg_sql_query($db, $sql);
			rg_sql_free_result($res2);
		}

		$sql = "DELETE FROM rights WHERE type = 'repo' AND obj_id = " . $row['repo_id'];
		$res2 = rg_sql_query($db, $sql);
		rg_sql_free_result($res2);
	}
	rg_sql_free_result($res);

	// delete associated repos
	$sql = "DELETE FROM repos WHERE uid = " . $rg_ui['uid'];
	$res = rg_sql_query($db, $sql);
	rg_sql_free_result($res);

	// Delete associated keys
	$sql = "DELETE FROM keys WHERE uid = " . $rg_ui['uid'];
	$res = rg_sql_query($db, $sql);
	rg_sql_free_result($res);

	// Delete given rights
	$sql = "DELETE FROM rights WHERE uid = " . $rg_ui['uid'];
	$res = rg_sql_query($db, $sql);
	rg_sql_free_result($res);

	// Delete login tokens
	$sql = "DELETE FROM login_tokens WHERE uid = " . $rg_ui['uid'];
	$res = rg_sql_query($db, $sql);
	rg_sql_free_result($res);

	// Delete login tokens ips
	$sql = "DELETE FROM login_tokens_ip WHERE uid = " . $rg_ui['uid'];
	$res = rg_sql_query($db, $sql);
	rg_sql_free_result($res);
}

/*
 * Creating a repo helper; see rg_test_create_repo()
 */
$_repo_id = 1;
function rg_test_create_repo_no_dir($db, $rg_ui, &$extra)
{
	global $_testns;
	global $_repo_id;

	if (!is_array($extra))
		$extra = array();

	$repo_id = isset($extra['repo_id']) ? $extra['repo_id'] : 0;

	rg_log('Creating a repo with id ' . $repo_id);
	$new = array();
	$new['master'] = 0;
	if (isset($extra['name']))
		$new['name'] = $extra['name'];
	else
		$new['name'] = $_testns . '-repo-' . $_repo_id . '<xss>' . rand();
	$new['max_commit_size'] = 0;
	$new['description'] = 'desc line1\ndesc line2' . '<xss>';
	$new['git_dir_done'] = 0;
	$new['public'] = 1;
	$new['license'] = 'GPL <xss>';
	$new['template'] = 'template here <xss>';
	$new['hash'] = 'sha1';
	$_repo_id++;

	rg_log("Deleting repo " . $repo_id . "/" . $new['name']);
	$sql = 'DELETE FROM repos WHERE repo_id = ' . $repo_id
		. ' OR name = @@name@@';
	$res = rg_sql_query_params($db, $sql, $new);
	if ($res === FALSE) {
		rg_log("Cannot delete old repo: " . rg_sql_error());
		exit(1);
	}
	rg_sql_free_result($res);

	$extra = array_merge($new, $extra);
	$extra['repo_id'] = 0;

	$r = rg_repo_edit($db, $rg_ui, $extra);
	if ($r === FALSE) {
		rg_log("Cannot insert a repo (" . rg_repo_error() . ")!");
		exit(1);
	}
	rg_repo_cosmetic($db, $extra);
	rg_log_ml('extra: ' . print_r($extra, TRUE));

	if ($repo_id > 0) {
		$sql = "UPDATE repos SET repo_id = $repo_id"
			. " WHERE repo_id = " . $extra['repo_id'];
		$res = rg_sql_query($db, $sql);
		rg_sql_free_result($res);
		$new['repo_id'] = $repo_id;
		// TODO: this is strange
		rg_cache_unset('repo_by_name::' . $rg_ui['uid'],
			RG_SOCKET_NO_WAIT);
	}
}

/*
 * Creating a repo helper
 * You can enforce a repo-name/repo-id by setting extra['name/repo_id'].
 */
function rg_test_create_repo($db, $rg_ui, &$extra)
{
	rg_test_create_repo_no_dir($db, $rg_ui, $extra);

	$key = 'repo_by_id' . '::' . $extra['repo_id'];
	rg_log('Waiting for the repo git dir to be created (key [' . $key . '])...');
	$tries = 120;
	while ($tries > 0) {
		$tries--;

		rg_cache_core_unset($key);
		$r = rg_cache_get($key);
		if ($r === FALSE) {
			sleep(1);
			continue;
		}

		//rg_log_ml('DEBUG: r: ' . print_r($r, TRUE));

		if ($r['git_dir_done'] == 1) {
			rg_log('repo created');
			break;
		}

		sleep(1);
	}
	if ($tries === 0) {
		rg_log('Seems that the git folder was not created!');
		exit(1);
	}
}

/*
 * Creating a ssh key helper
 */
function rg_test_create_key($db, $rg_ui)
{
	rg_log("Creating a key");
	// spaces are on purpose, to test that we remove them correctly
	$skey = 'ssh-rsa AAAAB3Nz  aC1yc2EAAAADA  QABAAABAQDgy8QSbr13izfGxO0sqOsxu4faw6hF1LLrlcBobT5zzO4wzbokjliRiZ9sfA0zd0WEfdQJ6W01hVNf9QpJlUiGM4OyXBKOc8JLfCyjtcfRcC48hPQ22IY9TtfrxGK38IgwdS7+Ophjs8u0RlqHd8eMtYWcmxlHwdIEb6+IZ6kyA2srmFGN6DQCnOvyYSd+iZ8u4DQBEuWxzsKvrat9gR5H6KNTYisSB9rjLKQd4rFbu6Tl217wJY1LWjH7hlFPxioMCg0Fzv6AkQXWnAr1GrCVgIQDC5dEVUrw2NSVElEC+eaG6OZnkq7CP0B8pSj3BV2TNhSgnQb9Ojo9xNHc2Pwx aaa@aaa.aaa';

	$r = rg_keys_add($db, $rg_ui, $skey, '');
	if ($r === FALSE) {
		rg_log("Cannot add a key (" . rg_keys_error() . ")!");
		exit(1);
	}

	return $r;
}

/*
 * Helper to add some rights
 */
function rg_test_create_rights($db, $rg_ui, $ri, &$extra)
{
	if (!is_array($extra))
		$extra = array();

	$a = array();
	$a['right_id'] = 0;
	$a['who'] = 90;
	$a['obj_id'] = $ri['repo_id'];
	$a['uid'] = $rg_ui['uid'];
	$a['rights'] = "abc";
	$a['misc'] = "misc1/@USER@/";
	$a['ip'] = "1.1.1.1 2.2.2.2 10.0.0.0/8";
	$a['prio'] = 13;
	$a['description'] = "desc1";
	$r = rg_rights_set($db, "type1", $a);
	if ($r !== TRUE) {
		rg_log("Seems I cannot set rights 1 (" . rg_rights_error() . ")");
		exit(1);
	}

	return $r;
}

/*
 * Helper to add a bug
 */
function rg_test_create_bug($db, $rg_ui, $ri, &$extra)
{
	if (!is_array($extra))
		$extra = array();

	$a = array();
	$a['bug_id'] = 0;
	$a['itime'] = time() - 600;
	$a['utime'] = time() - 300;
	$a['uid'] = 30;
	$a['ip'] = '1.1.1.1 <xss>';
	$a['title'] = 'a nice title <xss>';
	$a['body'] = 'a nice body <xss>';
	$a['assigned_uid'] = 0;
	$a['deleted'] = 0;
	$a['deleted_who'] = 0;
	$a['state'] = 1;
	$r = rg_bug_edit($db, $rg_ui, $ri, $a);
	if ($r === FALSE) {
		rg_log('Seems I cannot add bug: ' . rg_bug_error() . ")");
		exit(1);
	}

	return $r;
}

/*
 * Helper for creating and uploading a ssh key
 * Returns the key.
 */
function rg_test_upload_ssh_key($db, $rg_ui, $key_suffix, &$key_name)
{
	global $test_url;

	$info = array('id' => $rg_ui['username']);

	$key_name = $rg_ui['uid'] . $key_suffix;
	putenv('RG_SSH_KEY=' . $key_name);

	$ssh = 'ssh -o ControlMaster=no'
		. ' -o IdentityFile=' . __DIR__ . '/keys/' . $key_name
		. ' -o IdentitiesOnly=yes';
	putenv('GIT_SSH_COMMAND=' . $ssh);

	// we must regenerate the key because else we will not be the correct user
	rg_log_enter("Generating a SSH key [$key_name]");
	if (file_exists('keys/' . $key_name))
		unlink('keys/' . $key_name);
	if (file_exists('keys/' . $key_name . '.pub'))
		unlink('keys/' . $key_name . '.pub');
	$r = rg_exec("ssh-keygen -t rsa -N '' -b 4096 -C \"Key for RocketGit\""
		. " -f keys/" . escapeshellarg($key_name) . " </dev/null",
		'', FALSE, FALSE, FALSE);
	if ($r['ok'] != 1) {
		rg_log('Cannot generate key: ' . $r['stderr']);
		exit(1);
	}
	if (!file_exists("keys/" . $key_name . ".pub")) {
		rg_log("Could not find the ssh key!");
		exit(1);
	}

	$key = file_get_contents("keys/" . $key_name . ".pub");

	rg_log("Loading ssh key form...");
	$data = array();
	$headers = array();
	$r = do_req($info, $test_url . "/op/settings/keys?t=load_key_form", $data, $headers);
	if ($r === FALSE) {
		rg_log("Cannot load form!");
		exit(1);
	}
	if (empty($r['tokens']['keys'])) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log('token not found!');
		exit(1);
	}

	rg_log("Uploading the key...");
	$data = array('add' => 1, 'token' => $r['tokens']['keys'], 'key' => $key);
	$headers = array();
	$r = do_req($info, $test_url . '/op/settings/keys?t=upload_ssh_key', $data, $headers);
	if ($r === FALSE) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml("Cannot upload key!");
		exit(1);
	}

	$akp = rg_state_get($db, 'AuthorizedKeysCommand');
	if ($akp == 0) {
		rg_log("Waiting for key to be added to the authorized_keys file");
		while (1) {
			$c = file_get_contents("/home/rocketgit/.ssh/authorized_keys");
			if (strstr($c, $key))
				break;

			sleep(1);
		}
	}
	rg_log("Uploading done");
	rg_log_exit();

	return $key;
}

/*
 * Helper for generating scratch codes
 * Returns the scratch codes.
 */
function rg_test_sc_generate($db, $rg_ui)
{
	global $test_url;

	$info = array('id' => $rg_ui['username']);

	rg_log("Loading generate scratch codes form...");
	$data = array();
	$headers = array();
	$r = do_req($info, $test_url . '/op/settings/totp/sc', $data, $headers);
	if ($r === FALSE) {
		rg_log("Cannot load form!");
		exit(1);
	}
	if (empty($r['tokens']['sc'])) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log('token not found!');
		exit(1);
	}

	rg_log("Generating scratch codes...");
	$data = array('generate' => 1, 'token' => $r['tokens']['sc']);
	$headers = array();
	$r = do_req($info, $test_url . '/op/settings/totp/sc', $data, $headers);
	if ($r === FALSE) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Cannot generate scratch codes!');
		exit(1);
	}

	rg_log("Generation done");

	$t = explode('<div class="secret_token">', $r['body']);
	$t = explode('</div>', $t[1]);
	$t = explode("\n", $t[0]);
	$sc = explode(' ', trim($t[1]));

	rg_log_ml('DEBUG: sc: ' . print_r($sc, TRUE));

	return $sc;
}

/*
 * Helper for adding a webhook
 */
function rg_test_wh_add_edit($db, $rg_ui, $htype, $hsubtype, &$extra)
{
	global $test_url;

	rg_log_enter('Loading webhook add form...');
	$headers = array();

	$info = array('id' => $rg_ui['username']);

	if (!isset($extra['wh::id']))
		$extra['wh::id'] = 0;

	$extra['wh::htype'] = $htype;
	$extra['wh::hsubtype'] = $hsubtype;

	if ($extra['wh::id'] == 0)
		$url = 'add/' . $htype . '/' . $hsubtype;
	else
		$url = 'edit/' . $extra['wh::id'];
	$r = do_req($info, $test_url . "/op/settings/wh/" . $url, $data, $headers);
	if ($r === FALSE) {
		rg_log("Cannot load form!");
		exit(1);
	}
	if (empty($r['tokens']['wh_add'])) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Token not found!');
		exit(1);
	}

	rg_log("Adding webhook...");
	$data = array('doit' => 1, 'token' => $r['tokens']['wh_add']);
	$data = array_merge($data, $extra);
	$headers = array();
	$r = do_req($info, $test_url . '/op/settings/wh/' . $url, $data, $headers);
	if ($r === FALSE) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Cannot add webhook!');
		exit(1);
	}

	if (!strstr($r['body'], 'success')) {
		rg_log_ml('r[body]: ' . print_r($r['body'], TRUE));
		rg_log('Cannot add webhook (no \'with success\' message)!');
		exit(1);
	}

	foreach ($r['rg_debug_html']['wh'] as $k => $v)
		$extra[$k] = $v;

	rg_log_exit();
}

/*
 * Check if a merge request hit the database
 * Returns the row or exits
 */
function rg_test_mr_info($db, $repo_id, $nr)
{
	rg_log_enter('Check if the merge request ' . $nr . ' is in database...');
	$tries = 10;
	while ($tries > 0) {
		$params = array('nr' => $nr);
		$sql = 'SELECT * FROM merge_requests'
			. ' WHERE repo_id = ' . $repo_id
			. ' AND id = @@nr@@';
		$res = rg_sql_query_params($db, $sql, $params);
		$rows = rg_sql_num_rows($res);
		if ($rows > 0)
			$row = rg_sql_fetch_array($res);
		rg_sql_free_result($res);
		if ($rows > 0)
			break;

		sleep(1);
		$tries--;
	}
	if ($rows == 0) {
		rg_log('Seems the merge request did not hit the database!');
		exit(1);
	}

	rg_log_exit();
	return $row;
}

/*
 * Run ssh command, using a generated key
 */
function test_ssh($uid, $extra)
{
	global $rg_ssh_host, $rg_ssh_port;

	$kn = getenv('RG_SSH_KEY');

	$cmd = 'ssh -v'
		. ' -i keys/' . $kn
		. ' -p ' . $rg_ssh_port
		. ' -o ControlMaster=no'
		. ' -o ControlPath=' . __DIR__ . '/jars/ssh-' . $uid
		. ' rocketgit@' . $rg_ssh_host;

	return rg_exec($cmd . ' ' . $extra, '', FALSE, FALSE, FALSE);
}

/*
 * Wait for a value in cache
 */
function test_wait_cache($key, $timeout)
{
	$sleep = intval($timeout / 30);
	if ($sleep == 0)
		$sleep = 1;

	for ($i = 0; $i < $timeout; $i++) {
		rg_cache_core_unset($key);
		$r = rg_cache_get($key);
		if ($r !== FALSE)
			break;
		sleep($sleep);
	}

	if ($r === FALSE) {
		rg_log('Could not obtain a value from cache for key'
			. ' [' . $key . '] in ' . $timeout . 's!');
		exit(1);
	}

	return $r;
}

/*
 * Helper for adding a pkg_repo
 */
function rg_test_pkg_repo_add_edit($db, $rg_ui, &$extra)
{
	global $test_url;

	rg_log_enter('Loading Settings -> Packages -> Repositories add form...');
	$headers = array();

	$info = array('id' => $rg_ui['username']);

	if (!isset($extra['pi::id']))
		$extra['pi::id'] = 0;

	if ($extra['pi::id'] == 0)
		$url = 'add';
	else
		$url = 'edit/' . $extra['pi::id'];
	$r = do_req($info, $test_url . '/op/settings/packages/repo/' . $url, $data, $headers);
	if ($r === FALSE) {
		rg_log("Cannot load form!");
		exit(1);
	}
	if (empty($r['tokens']['pkg_repo_edit_hl'])) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Token not found!');
		exit(1);
	}

	rg_log('Adding pkg repo...');
	$data = array('doit' => 1, 'token' => $r['tokens']['pkg_repo_edit_hl']);
	$data = array_merge($data, $extra);
	$headers = array();
	$r = do_req($info, $test_url . '/op/settings/packages/repo/' . $url, $data, $headers);
	if ($r === FALSE) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Cannot add pkg repo!');
		exit(1);
	}

	if (!strstr($r['body'], 'The packages repo has been successfully added/edited.')) {
		rg_log_ml('r[body]: ' . print_r($r['body'], TRUE));
		rg_log('Cannot add pkg repo (no \'success\' message)!');
		exit(1);
	}

	foreach ($r['rg_debug_html']['pkg_repo'] as $k => $v)
		$extra[$k] = $v;

	// List pkg repos
	$data = array();
	$r = do_req($info, $test_url . '/op/settings/packages/repo/list', $data, $headers);
	if ($r === FALSE) {
		rg_log('Cannot list pkg repos!');
		exit(1);
	}
	if (!strstr($r['body'], $extra['pi::name'])) {
		rg_log('Body does not contain the name of the pkg repo!');
		exit(1);
	}

	rg_log_exit();
}

/*
 * Helper for adding a pkg_subrepo
 * @pr - obtained from the above function
 */
function rg_test_pkg_subrepo_add_edit($db, $rg_ui, $pr, &$extra)
{
	global $test_url;

	rg_log_enter('Loading Settings -> Packages -> Subrepositories add form...');
	$headers = array();

	$info = array('id' => $rg_ui['username']);

	if (!isset($extra['sr::id']))
		$extra['sr::id'] = 0;

	$extra['sr::pkg_repo_id'] = $pr['id'];

	if ($extra['sr::id'] == 0)
		$url = 'add';
	else
		$url = 'edit/' . $extra['sr::id'];
	$r = do_req($info, $test_url . '/op/settings/packages/subrepo/' . $url, $data, $headers);
	if ($r === FALSE) {
		rg_log("Cannot load form!");
		exit(1);
	}
	if (empty($r['tokens']['pkg_subrepo_edit_hl'])) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Token not found!');
		exit(1);
	}

	rg_log('Adding pkg subrepo...');
	$data = array('doit' => 1, 'token' => $r['tokens']['pkg_subrepo_edit_hl']);
	$data = array_merge($data, $extra);
	$headers = array();
	$r = do_req($info, $test_url . '/op/settings/packages/subrepo/' . $url, $data, $headers);
	if ($r === FALSE) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Cannot add pkg subrepo!');
		exit(1);
	}

	if (!strstr($r['body'], 'The packages subrepo has been successfully added/edited.')) {
		rg_log_ml('r[body]: ' . print_r($r['body'], TRUE));
		rg_log('Cannot add pkg subrepo (no \'success\' message)!');
		exit(1);
	}

	foreach ($r['rg_debug_html']['pkg_subrepo'] as $k => $v)
		$extra[$k] = $v;

	// List pkg subrepos
	$data = array();
	$r = do_req($info, $test_url . '/op/settings/packages/subrepo/list', $data, $headers);
	if ($r === FALSE) {
		rg_log('Cannot list pkg subrepos!');
		exit(1);
	}
	if (!strstr($r['body'], $pr['pi::name'])) {
		rg_log('Body does not contain the name of the pkg repo!');
		exit(1);
	}
	if (!strstr($r['body'], $extra['sr::name'])) {
		rg_log('Body does not contain the name of the pkg subrepo!');
		exit(1);
	}

	rg_log_exit();
}

/*
 * Helper for adding a pkg mapping
 */
function rg_test_pkg_map_add_edit($db, $rg_ui, &$extra)
{
	global $test_url;

	rg_log_enter('Loading Settings -> Packages -> Mappings add form...');
	$headers = array();

	$info = array('id' => $rg_ui['username']);

	if (!isset($extra['mi::id']))
		$extra['mi::id'] = 0;

	if (!isset($extra['mi::prio']))
		$extra['mi::prio'] = 10;

	if (!isset($extra['mi::repo']))
		$extra['mi::repo'] = '';

	if (!isset($extra['mi::ref']))
		$extra['mi::ref'] = '';

	if ($extra['mi::id'] == 0)
		$url = 'add';
	else
		$url = 'edit/' . $extra['mi::id'];
	$r = do_req($info, $test_url . '/op/settings/packages/map/' . $url, $data, $headers);
	if ($r === FALSE) {
		rg_log("Cannot load form!");
		exit(1);
	}
	if (empty($r['tokens']['pkg_maps_edit_hl'])) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Token not found!');
		exit(1);
	}

	rg_log('Adding pkg map...');
	$data = array('doit' => 1, 'token' => $r['tokens']['pkg_maps_edit_hl']);
	$data = array_merge($data, $extra);
	$headers = array();
	$r = do_req($info, $test_url . '/op/settings/packages/map/' . $url, $data, $headers);
	if ($r === FALSE) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Cannot add pkg map!');
		exit(1);
	}

	if (!strstr($r['body'], 'The packages mapping has been successfully added/edited.')) {
		rg_log_ml('r[body]: ' . print_r($r['body'], TRUE));
		rg_log('Cannot add pkg map (no \'success\' message)!');
		exit(1);
	}

	foreach ($r['rg_debug_html']['pkg_map'] as $k => $v)
		$extra[$k] = $v;

	// List mappings
	$data = array();
	$r = do_req($info, $test_url . '/op/settings/packages/map/list', $data, $headers);
	if ($r === FALSE) {
		rg_log('Cannot list pkg maps!');
		exit(1);
	}

	rg_log_exit();
}

/*
 * Helper for getting the artifacts list
 */
function rg_test_artifacts_page($rg_ui, $repo, $dir)
{
	global $test_url;

	rg_log_enter('test_artifacts dir=' . $dir);

	$info = array('id' => $rg_ui['username']);

	$r = do_req($info, $test_url . '/user/' . $rg_ui['username']
		. '/' . $repo['name'] . '/artifacts/list' . $dir, $data, $headers);
	if ($r === FALSE) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Cannot get artifacts page!');
		exit(1);
	}

	rg_log_exit();
	return $r;
}

/*
 * Helper for getting the one artifact file
 */
function rg_test_artifacts_file($rg_ui, $repo, $file)
{
	global $test_url;

	rg_log_enter('test_packages_file file=' . $file);

	$info = array('id' => $rg_ui['username']);

	$r = do_req($info, $test_url . '/user/' . $rg_ui['username']
		. '/' . $repo['name'] . '/artifacts/download' . $file,
		$data, $headers);
	if ($r === FALSE) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Cannot get artifact file!');
		exit(1);
	}

	rg_log_exit();
	return $r;
}

/*
 * Helper for getting the packages list
 */
function rg_test_packages($rg_ui, $repo)
{
	global $test_url;

	rg_log_enter('test_packages');

	$info = array('id' => $rg_ui['username']);

	$r = do_req($info, $test_url . '/user/' . $rg_ui['username']
		. '/' . $repo['name'] . '/pkg', $data, $headers);
	if ($r === FALSE) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Cannot get packages page!');
		exit(1);
	}

	rg_log_exit();
	return $r;
}

/*
 * Helper for getting the rpm repomd.xml
 */
function rg_test_packages_file($login_ui, $page_ui, $type, $pkg_repo_name,
	$pkg_subrepo_name, $distro, $major, $file)
{
	global $test_url;

	rg_log_enter('test_packages_file');

	$info = array('id' => $login_ui['username']);

	$url = $test_url . '/op/pkgrepo/' . $type;
	if (strcmp($type, 'user') == 0)
		$url .= '/' . $page_ui['username'];
	$url .= '/' . $pkg_repo_name
		. '/' . $pkg_subrepo_name . '/' . $distro . '/' . $major . '/' . $file;

	$r = do_req($info, $url, $data, $headers);
	if ($r === FALSE) {
		rg_log_ml('r: ' . print_r($r, TRUE));
		rg_log_ml('Cannot get packages file [' . $file . ']!');
		exit(1);
	}

	rg_log_exit();
	return $r;
}



Mode Type Size Ref File
100644 blob 9 f3c7a7c5da68804a1bdf391127ba34aed33c3cca .exclude
100644 blob 108 acc2186b1d357966e09df32afcea14933f5f0c78 .gitignore
100644 blob 375 1f425bcd2049c526744d449511094fc045ceac74 AUTHORS
100644 blob 1847 fd1f7a627adc85dec9ebd72ae9e6b4c941b82f8f History.txt
100644 blob 34520 dba13ed2ddf783ee8118c6a581dbf75305f816a3 LICENSE
100644 blob 3624 1c4ccf9cceb2e56ae71334442aff3183b242c333 Makefile.in
100644 blob 5325 96c40d868ce10b715299085ccffb30f96a730cf3 README
100644 blob 190331 0418946bd5fc97da80f0bbd2e918c657536c01e6 TODO
100644 blob 1294 f22911eb777f0695fcf81ad686eac133eb11fcc4 TODO-plans
100644 blob 203 a2863c67c3da44126b61a15a6f09738c25e0fbe0 TODO.perf
100644 blob 967 56bbaa7c937381fb10a2907b6bbe056ef8cc824a TODO.vm
040000 tree - 21928e906ad2907a55c2e81c2a8b0502b586b8a0 artwork
100644 blob 5328 d5be4cc3f15d059ad8d267d800c602e9774816a8 compare.csv
100755 blob 30 92c4bc48245c00408cd7e1fd89bc1a03058f4ce4 configure
040000 tree - 811af39b8be55c3a36147dd06b040e86de4e9d4a debian
040000 tree - 7108e9538d908ff384482155efcaef836a057a2c docker
040000 tree - f67d3605efbd6422a8acdd953578991139266391 docs
100755 blob 18252 e2438615edba7066a730ed6a796a5302263f1f37 duilder
100644 blob 536 b791516f9ec08c038e61269e0c5f38446a61e59b duilder.conf
040000 tree - e330b65f3c3eea427853842a05410579de6175bd hooks
040000 tree - e6ef0396dd7f12664ea681377807bdedf09ad13f inc
040000 tree - e255ce234c3993998edc12bc7e93fff555376eda misc
100644 blob 6012 7cf5090db19ef7b7a1a4d962f2588464ff4f1c1f rocketgit.spec
040000 tree - 85421cbfb018ff4b0eebb1741e2dcfcc72f81ada root
040000 tree - 870e96f0afc7d85c97505a878609d386f81748d8 samples
040000 tree - 589b9039f8bbb597747e4e78cdfc26be35ead352 scripts
040000 tree - 454044f7e286fe13ec18598fce6b613190f52e5e selinux
100755 blob 256 462ccd108c431f54e380cdac2329129875a318b5 spell_check.sh
040000 tree - d9260d3cf0d6490be720312893600a8041bf991b techdocs
040000 tree - 5dbc11970335b2e208d92e525d2b6ef49dcce3c3 tests
040000 tree - e810d7397575886ef495708d571eb3675f6928ba tools
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/catalinux/rocketgit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/catalinux/rocketgit

Clone this repository using git:
git clone git://git.rocketgit.com/user/catalinux/rocketgit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main