Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
8fa76079
Commit
8fa76079
authored
20 years ago
by
Graham McVicker
Browse files
Options
Downloads
Patches
Plain Diff
indentation and bugfix for loading multiple test dbs
parent
aa4c9ce1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/t/MultiTestDB.pm
+31
-29
31 additions, 29 deletions
modules/t/MultiTestDB.pm
with
31 additions
and
29 deletions
modules/t/MultiTestDB.pm
+
31
−
29
View file @
8fa76079
...
...
@@ -187,9 +187,9 @@ sub load_databases {
}
#only unzip if there are non-preloaded datbases
UNZIP:
foreach
my
$dbtype
(
keys
%
{
$db_conf
->
{'
databases
'}})
{
if
((
!
exists
$db_conf
->
{'
preloaded
'}
->
{
$dbtype
}
)
||
(
!
_db_exists
(
$db
,
$db_conf
->
{'
preloaded
'}{
$dbtype
})
))
{
UNZIP:
foreach
my
$dbtype
(
keys
%
{
$db_conf
->
{'
databases
'}})
{
if
((
!
exists
$db_conf
->
{'
preloaded
'}
->
{
$dbtype
}
)
||
(
!
_db_exists
(
$db
,
$db_conf
->
{'
preloaded
'}{
$dbtype
})
))
{
#unzip database files
$self
->
unzip_test_dbs
(
$self
->
curr_dir
.
$zip
);
last
UNZIP
;
...
...
@@ -200,8 +200,8 @@ sub load_databases {
#create a database for each database specified
foreach
my
$dbtype
(
keys
%
{
$db_conf
->
{'
databases
'}})
{
#don't create a database if there is a preloaded one specified
if
((
$db_conf
->
{'
preloaded
'}
->
{
$dbtype
}
)
&&
(
_db_exists
(
$db
,
$db_conf
->
{'
preloaded
'}
->
{
$dbtype
}
)))
{
if
((
$db_conf
->
{'
preloaded
'}
->
{
$dbtype
}
)
&&
(
_db_exists
(
$db
,
$db_conf
->
{'
preloaded
'}
->
{
$dbtype
}
)))
{
#copy the general config into a dbtype specific config
$self
->
{'
conf
'}
->
{
$dbtype
}
=
{};
%
{
$self
->
{'
conf
'}
->
{
$dbtype
}}
=
%$db_conf
;
...
...
@@ -227,11 +227,11 @@ sub load_databases {
#create a unique random dbname
my
$dbname
=
$db_conf
->
{'
preloaded
'}
->
{
$dbtype
};
if
(
!
defined
$dbname
)
{
$dbname
=
$self
->
_create_db_name
(
$dbtype
);
delete
$self
->
{'
conf
'}
->
{
$dbtype
}
->
{'
preloaded
'};
if
(
!
defined
$dbname
)
{
$dbname
=
$self
->
_create_db_name
(
$dbtype
);
delete
$self
->
{'
conf
'}
->
{
$dbtype
}
->
{'
preloaded
'};
}
else
{
$self
->
{'
conf
'}
->
{
$dbtype
}
->
{'
preloaded
'}
=
1
;
$self
->
{'
conf
'}
->
{
$dbtype
}
->
{'
preloaded
'}
=
1
;
}
#store the temporary database name in the dbtype specific config
...
...
@@ -240,8 +240,8 @@ sub load_databases {
print
STDERR
"
\n
Creating db
$dbname
";
unless
(
$db
->
do
("
CREATE DATABASE
$dbname
"))
{
warning
("
Could not create database [
$dbname
]
");
return
;
warning
("
Could not create database [
$dbname
]
");
return
;
}
#copy the general config into a dbtype specific config
...
...
@@ -253,8 +253,8 @@ sub load_databases {
local
*DIR
;
unless
(
opendir
(
DIR
,
$dir
))
{
warning
("
could not open dump directory '
$dir
'
");
return
;
warning
("
could not open dump directory '
$dir
'
");
return
;
}
my
@files
=
readdir
DIR
;
...
...
@@ -265,38 +265,38 @@ sub load_databases {
foreach
my
$sql_file
(
grep
/\.sql$/
,
@files
)
{
$sql_file
=
"
$dir
/
$sql_file
";
$sql_file
=
"
$dir
/
$sql_file
";
unless
(
-
f
$sql_file
&&
-
r
$sql_file
)
{
warning
("
could not read SQL file '
$sql_file
'
\n
");
next
;
}
unless
(
-
f
$sql_file
&&
-
r
$sql_file
)
{
warning
("
could not read SQL file '
$sql_file
'
\n
");
next
;
}
open
(
FILE
,
$sql_file
);
open
(
FILE
,
$sql_file
);
my
$sql_com
=
'';
my
$sql_com
=
'';
while
(
<
FILE
>
)
{
next
if
(
/^#/
);
# ignore comments
next
unless
(
/\S/
);
# ignore lines of white spaces
while
(
<
FILE
>
)
{
next
if
(
/^#/
);
# ignore comments
next
unless
(
/\S/
);
# ignore lines of white spaces
$sql_com
.=
$_
;
$sql_com
.=
$_
;
}
$sql_com
=~
s/;$//
;
# chop off the last ;
$sql_com
=~
s/;$//
;
# chop off the last ;
$db
->
do
(
$sql_com
);
close
FILE
;
#import data from the txt files of the same name
#import data from the txt files of the same name
$sql_file
=~
/.*\/(.*)\.sql/
;
my
$tablename
=
$
1
;
(
my
$txt_file
=
$sql_file
)
=~
s/\.sql$/\.txt/
;
unless
(
-
f
$txt_file
&&
-
r
$txt_file
)
{
warning
("
could not read data file '
$txt_file
'
\n
");
next
;
warning
("
could not read data file '
$txt_file
'
\n
");
next
;
}
$db
->
do
(
"
load data local infile '
$txt_file
' into table
$tablename
"
);
...
...
@@ -306,8 +306,10 @@ sub load_databases {
print
STDERR
"
\n
";
closedir
DIR
;
$db
->
disconnect
;
}
$db
->
disconnect
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment