13 use SL::InstanceConfiguration;
 
  25   my ($dbh, $query, %params) = @_;
 
  28     return if $query->execute(@{ $params{bind} || [] });
 
  29     BAIL_OUT($dbh->errstr);
 
  32   return if $dbh->do($query, undef, @{ $params{bind} || [] });
 
  34   BAIL_OUT($params{message} . ": " . $dbh->errstr) if $params{message};
 
  35   BAIL_OUT("Query failed: " . $dbh->errstr . " ; query: $query");
 
  38 sub verify_configuration {
 
  39   SL::LxOfficeConf->read;
 
  41   my %config = %{ $::lx_office_conf{'testing/database'} || {} };
 
  42   my @unset  = sort grep { !$config{$_} } qw(host port db user template);
 
  44   BAIL_OUT("Missing entries in configuration in section [testing/database]: " . join(' ', @unset)) if @unset;
 
  50   $SIG{__DIE__}    = sub { Carp::confess( @_ ) } if $::lx_office_conf{debug}->{backtrace_on_die};
 
  51   $::lxdebug       = LXDebug->new(target => LXDebug::STDERR_TARGET);
 
  52   $::lxdebug->disable_sub_tracing;
 
  53   $::locale        = Locale->new($::lx_office_conf{system}->{language});
 
  55   $::auth          = SL::Auth->new(unit_tests_database => 1);
 
  56   $::locale        = Locale->new('de');
 
  57   $::instance_conf = SL::InstanceConfiguration->new;
 
  58   $db_cfg          = $::lx_office_conf{'testing/database'};
 
  61 sub drop_and_create_database {
 
  63     'dbi:Pg:dbname=' . $db_cfg->{template} . ';host=' . $db_cfg->{host} . ';port=' . $db_cfg->{port},
 
  66     SL::DBConnect->get_options,
 
  70   my $dbh_template = SL::DBConnect->connect(@dbi_options) || BAIL_OUT("No database connection to the template database: " . $DBI::errstr);
 
  71   my $auth_dbh     = $::auth->dbconnect(1);
 
  74     dbg("Database exists; dropping");
 
  75     $auth_dbh->disconnect;
 
  77     dbh_do($dbh_template, "DROP DATABASE \"" . $db_cfg->{db} . "\"", message => "Database could not be dropped");
 
  82   dbg("Creating database");
 
  84   dbh_do($dbh_template, "CREATE DATABASE \"" . $db_cfg->{db} . "\" TEMPLATE \"" . $db_cfg->{template} . "\" ENCODING 'UNICODE'", message => "Database could not be created");
 
  85   $dbh_template->disconnect;
 
  90   ok(1, "Database has been setup sucessfully.");
 
  95   my ($dbupdater, $control_or_file) = @_;
 
  97   my $file    = ref($control_or_file) ? ("sql/Pg-upgrade2" . ($dbupdater->{auth} ? "-auth" : "") . "/$control_or_file->{file}") : $control_or_file;
 
  98   my $control = ref($control_or_file) ? $control_or_file                                                                        : undef;
 
 100   dbg("Applying $file");
 
 102   my $error = $dbupdater->process_file($dbh, $file, $control);
 
 104   BAIL_OUT("Error applying $file: $error") if $error;
 
 107 sub create_initial_schema {
 
 108   dbg("Creating initial schema");
 
 111     'dbi:Pg:dbname=' . $db_cfg->{db} . ';host=' . $db_cfg->{host} . ';port=' . $db_cfg->{port},
 
 114     SL::DBConnect->get_options(PrintError => 0, PrintWarn => 0),
 
 117   $dbh           = SL::DBConnect->connect(@dbi_options) || BAIL_OUT("Database connection failed: " . $DBI::errstr);
 
 118   $::auth->{dbh} = $dbh;
 
 119   my $dbupdater  = SL::DBUpgrade2->new(form => $::form, return_on_error => 1, silent => 1);
 
 120   my $coa        = 'Germany-DATEV-SKR03EU';
 
 122   apply_dbupgrade($dbupdater, "sql/lx-office.sql");
 
 123   apply_dbupgrade($dbupdater, "sql/${coa}-chart.sql");
 
 125   dbh_do($dbh, qq|UPDATE defaults SET coa = '${coa}', accounting_method = 'cash', profit_determination = 'income', inventory_system = 'periodic', curr = 'EUR'|);
 
 126   dbh_do($dbh, qq|CREATE TABLE schema_info (tag TEXT, login TEXT, itime TIMESTAMP DEFAULT now(), PRIMARY KEY (tag))|);
 
 129 sub create_initial_auth_schema {
 
 130   dbg("Creating initial auth schema");
 
 132   my $dbupdater = SL::DBUpgrade2->new(form => $::form, return_on_error => 1, auth => 1);
 
 133   apply_dbupgrade($dbupdater, 'sql/auth_db.sql');
 
 138   my $dbupdater         = SL::DBUpgrade2->new(form => $::form, return_on_error => 1, auth => $params{auth});
 
 139   my @unapplied_scripts = $dbupdater->unapplied_upgrade_scripts($dbh);
 
 141   apply_dbupgrade($dbupdater, $_) for @unapplied_scripts;
 
 144 sub create_client_user_and_employee {
 
 145   dbg("Creating client, user, group and employee");
 
 147   dbh_do($dbh, qq|DELETE FROM auth.clients|);
 
 148   dbh_do($dbh, qq|INSERT INTO auth.clients (id, name, dbhost, dbport, dbname, dbuser, dbpasswd, is_default) VALUES (1, 'Unit-Tests', ?, ?, ?, ?, ?, TRUE)|,
 
 149          bind => [ @{ $db_cfg }{ qw(host port db user password) } ]);
 
 150   dbh_do($dbh, qq|INSERT INTO auth."user"         (id,        login)    VALUES (1, 'unittests')|);
 
 151   dbh_do($dbh, qq|INSERT INTO auth."group"        (id,        name)     VALUES (1, 'Vollzugriff')|);
 
 152   dbh_do($dbh, qq|INSERT INTO auth.clients_users  (client_id, user_id)  VALUES (1, 1)|);
 
 153   dbh_do($dbh, qq|INSERT INTO auth.clients_groups (client_id, group_id) VALUES (1, 1)|);
 
 154   dbh_do($dbh, qq|INSERT INTO auth.user_group     (user_id,   group_id) VALUES (1, 1)|);
 
 157     default_printer_id       => '',
 
 158     template_format          => '',
 
 160     email                    => 'unit@tester',
 
 162     dateformat               => 'dd.mm.yy',
 
 163     show_form_details        => '',
 
 164     name                     => 'Unit Tester',
 
 166     hide_cvar_search_options => '',
 
 167     numberformat             => '1.000,00',
 
 173     stylesheet               => 'lx-office-erp.css',
 
 174     mandatory_departments    => 0,
 
 178   my $sth = $dbh->prepare(qq|INSERT INTO auth.user_config (user_id, cfg_key, cfg_value) VALUES (1, ?, ?)|) || BAIL_OUT($dbh->errstr);
 
 179   dbh_do($dbh, $sth, bind => [ $_, $config{$_} ]) for sort keys %config;
 
 182   $sth = $dbh->prepare(qq|INSERT INTO auth.group_rights (group_id, "right", granted) VALUES (1, ?, TRUE)|) || BAIL_OUT($dbh->errstr);
 
 183   dbh_do($dbh, $sth, bind => [ $_ ]) for sort $::auth->all_rights;
 
 186   dbh_do($dbh, qq|INSERT INTO employee (id, login, name) VALUES (1, 'unittests', 'Unit Tester')|);
 
 188   $::auth->set_client(1) || BAIL_OUT("\$::auth->set_client(1) failed");
 
 189   %::myconfig = $::auth->read_user(login => 'unittests');
 
 192 verify_configuration();
 
 194 drop_and_create_database();
 
 195 create_initial_schema();
 
 196 create_initial_auth_schema();
 
 197 apply_upgrades(auth => 1);
 
 198 create_client_user_and_employee();