scripts to dump and restore the semanticscuttle database quickly - useful to keep the database even when running unit tests
This commit is contained in:
parent
8e3daac73e
commit
cd023dea53
3 changed files with 64 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
dist/
|
dist/
|
||||||
build.properties
|
build.properties
|
||||||
package.xml
|
package.xml
|
||||||
|
semanticscuttle-dump.sql
|
||||||
|
|
26
scripts/database-dump.php
Normal file
26
scripts/database-dump.php
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Dumps the semanticscuttle database into a file using mysqldump.
|
||||||
|
*
|
||||||
|
* This file is part of
|
||||||
|
* SemanticScuttle - your social bookmark manager.
|
||||||
|
*
|
||||||
|
* PHP version 5.
|
||||||
|
*
|
||||||
|
* @category Bookmarking
|
||||||
|
* @package SemanticScuttle
|
||||||
|
* @author Christian Weiske <cweiske@cweiske.de>
|
||||||
|
* @license GPL http://www.gnu.org/licenses/gpl.html
|
||||||
|
* @link http://sourceforge.net/projects/semanticscuttle
|
||||||
|
*/
|
||||||
|
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header-standalone.php';
|
||||||
|
|
||||||
|
passthru(
|
||||||
|
'mysqldump'
|
||||||
|
. ' -h' . escapeshellarg($GLOBALS['dbhost'])
|
||||||
|
. ' -u' . escapeshellarg($GLOBALS['dbuser'])
|
||||||
|
. ' -p' . escapeshellarg($GLOBALS['dbpass'])
|
||||||
|
. ' ' . escapeshellarg($GLOBALS['dbname'])
|
||||||
|
. ' > semanticscuttle-dump.sql'
|
||||||
|
);
|
||||||
|
?>
|
37
scripts/database-restore.php
Normal file
37
scripts/database-restore.php
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Restores the semanticscuttle database from a given file.
|
||||||
|
*
|
||||||
|
* This file is part of
|
||||||
|
* SemanticScuttle - your social bookmark manager.
|
||||||
|
*
|
||||||
|
* PHP version 5.
|
||||||
|
*
|
||||||
|
* @category Bookmarking
|
||||||
|
* @package SemanticScuttle
|
||||||
|
* @author Christian Weiske <cweiske@cweiske.de>
|
||||||
|
* @license GPL http://www.gnu.org/licenses/gpl.html
|
||||||
|
* @link http://sourceforge.net/projects/semanticscuttle
|
||||||
|
*/
|
||||||
|
|
||||||
|
if (!isset($argv[1])) {
|
||||||
|
echo "Please pass the sql file to restore\n";
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
$file = $argv[1];
|
||||||
|
if (!file_exists($file)) {
|
||||||
|
echo "The file does not exist\n";
|
||||||
|
exit(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
require_once dirname(__FILE__) . '/../src/SemanticScuttle/header-standalone.php';
|
||||||
|
|
||||||
|
passthru(
|
||||||
|
'mysql'
|
||||||
|
. ' -h' . escapeshellarg($GLOBALS['dbhost'])
|
||||||
|
. ' -u' . escapeshellarg($GLOBALS['dbuser'])
|
||||||
|
. ' -p' . escapeshellarg($GLOBALS['dbpass'])
|
||||||
|
. ' ' . escapeshellarg($GLOBALS['dbname'])
|
||||||
|
. ' < ' . escapeshellarg($file)
|
||||||
|
);
|
||||||
|
?>
|
Loading…
Reference in a new issue