X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=Test%2Fperl%2Ftest_action.pl;h=069cc1491943b143f04d248f21713bcfc73c19b6;hb=5349a1ed016ae603b39d73747eccc6792707db1c;hp=0f2e02ab89de1170820a4b83518005a354824850;hpb=8e083c4270414505dcf58f4732be2ea6c65c5120;p=kivitendo-erp.git diff --git a/Test/perl/test_action.pl b/Test/perl/test_action.pl index 0f2e02ab8..069cc1491 100755 --- a/Test/perl/test_action.pl +++ b/Test/perl/test_action.pl @@ -1,17 +1,16 @@ #!/usr/bin/perl use strict; -#use SL::Controller::Mebil; -use SL::DB; -use SL::Form; +use lib "/opt/kivitendo-erp"; use SL::LXDebug; +use SL::mebil::Mapping; +use Test::perl::ErrorChannel; $::lxdebug = new LXDebug; -#$::form = new Form; - -#my $dbh = $::form->get_standard_dbh; SL::DB->register_db( + domain => 'KIVITENDO', + type => 'KIVITENDO', driver => 'Pg', database => 'firma', host => 'localhost', @@ -19,8 +18,22 @@ SL::DB->register_db( password => 'kivitendo', ); -my $db = SL::DB->new; +my $db = SL::DB->new(domain => 'KIVITENDO', + type => 'KIVITENDO',); my $dbh = $db->dbh; -my $m = new SL::Controller::Mebil; -$m->action_calcmap; +my $errch = new ErrorChannel; +my $mapper = new SL::mebil::Mapping($errch, $dbh); + +my $command = $ARGV[0]; +if ($command eq "GetMapping") { + my $mapping = $mapper->get_mapping(); + foreach (@$mapping) { + print $_->{fromacc}."\n"; + } + die ("Kein Mapping vorhanden.") unless (scalar(@$mapping) > 0); +} elsif ($command eq "CalcMapping") { + die ("NIY."); +} else { + die "Invalid command: $command"; +}