X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=t%2Fcontrollers%2Fhelpers%2Fparse_filter.t;h=bfccf4eda61e6447e9e9929f66ae305f3b069d5f;hb=991369b17d679e2855f4d5086d0b9769dc2ae1aa;hp=c72c33fce83ebb89487f7cbed6cb8f8c2b540359;hpb=061cb2d3a9dda6f2fa93caad2c2ba26c967ff4cb;p=kivitendo-erp.git diff --git a/t/controllers/helpers/parse_filter.t b/t/controllers/helpers/parse_filter.t index c72c33fce..bfccf4eda 100644 --- a/t/controllers/helpers/parse_filter.t +++ b/t/controllers/helpers/parse_filter.t @@ -1,6 +1,6 @@ use lib 't'; -use Test::More tests => 23; +use Test::More tests => 41; use Test::Deep; use Data::Dumper; @@ -179,6 +179,44 @@ test { } }, 'deep laundering, check for laundered hash', target => 'launder', launder_to => { }; +test { + part => { + 'sellprice:number' => '2', + 'sellprice:number::' => 'le', + } +}, { + part => { + 'sellprice:number' => '2', + 'sellprice:number::' => 'le', + } +}, 'laundering of indirect filters does not alter', target => 'filter', launder_to => { }; + +test { + part => { + 'sellprice:number' => '2', + 'sellprice:number::' => 'le', + } +}, { + part => { + 'sellprice_number' => '2', + 'sellprice_number__' => 'le', + } +}, 'laundering of indirect filters', target => 'launder', launder_to => { }; + +test { + part => { + 'sellprice:number' => '2', + 'sellprice:number::' => 'le', + } +}, { + part => { + 'sellprice:number' => '2', + 'sellprice:number::' => 'le', + 'sellprice_number' => '2', + 'sellprice_number__' => 'le', + } +}, 'laundering of indirect filters - inplace', target => 'filter'; + ### bug: sub objects test { @@ -205,45 +243,201 @@ test { }, 'object test simple', class => 'SL::DB::Manager::Part'; test { - 'type' => 'assembly', + 'part_type' => 'assembly', }, { query => [ - 'assembly' => 1 - ], + 'part_type', + 'assembly' + ] , }, 'object test without prefix', class => 'SL::DB::Manager::Part'; test { - 'part.type' => 'assembly', + 'part.part_type' => 'assembly', }, { query => [ - 'part.assembly' => 1 - ], + 'part.part_type', + 'assembly' + ] }, 'object test with prefix', class => 'SL::DB::Manager::OrderItem'; test { - 'type' => [ 'part', 'assembly' ], + 'part_type' => [ 'part', 'assembly' ], +}, { + query => [ + 'or', + [ + 'part_type', + 'part', + 'part_type', + 'assembly' + ] + ] +}, 'object test without prefix but complex value', class => 'SL::DB::Manager::Part'; +test { + 'part.part_type' => [ 'part', 'assembly' ], +}, { + query => [ + 'or', + [ + 'part.part_type', + 'part', + 'part.part_type', + 'assembly' + ] + ] +}, 'object test with prefix but complex value', class => 'SL::DB::Manager::OrderItem'; + +test { + description => 'test' +}, { + query => [ description => 'test' ], + with_objects => [ 'order' ] +}, 'with_objects don\'t get clobbered', with_objects => [ 'order' ]; + +test { + customer => { + description => 'test' + } +}, { + query => [ 'customer.description' => 'test' ], + with_objects => [ 'order', 'customer' ] +}, 'with_objects get extended with auto infered objects', with_objects => [ 'order' ]; + +test { + customer => { + description => 'test' + } +}, { + query => [ 'customer.description' => 'test' ], + with_objects => [ 'order', 'customer' ] +}, 'with_objects get extended with auto infered objects with classes', class => 'SL::DB::Manager::Order', with_objects => [ 'order' ]; + +test { + customer => { + description => 'test' + } +}, { + query => [ 'customer.description' => 'test' ], + with_objects => [ 'customer' ] +}, 'with_objects: no duplicates', with_objects => [ 'customer' ]; + +test { + part => { + 'partnumber:substr::ilike' => '1', + }, +}, { + query => [ + 'part.partnumber', { + ilike => '%1%' + } + ], + with_objects => [ 'part' ], +}, 'Regression check: prefixing of fallback filtering in relation with custom filters', class => 'SL::DB::Manager::OrderItem'; +test { + 'description:substr:multi::ilike' => 'term1 term2', +}, { + query => [ + and => [ + description => { ilike => '%term1%' }, + description => { ilike => '%term2%' }, + ] + ] +}, 'simple :multi'; + +test { + part => { + 'all:substr:multi::ilike' => 'term1 term2', + }, }, { query => [ - or => [ - and => [ or => [ assembly => 0, assembly => undef ], - "!inventory_accno_id" => 0, - "!inventory_accno_id" => undef, - ], - assembly => 1, + and => [ + or => [ + 'part.partnumber' => { ilike => '%term1%' }, + 'part.description' => { ilike => '%term1%' }, + 'part.ean' => { ilike => '%term1%' }, + ], + or => [ + 'part.partnumber' => { ilike => '%term2%' }, + 'part.description' => { ilike => '%term2%' }, + 'part.ean' => { ilike => '%term2%' }, + ], ] ], -}, 'object test without prefix but complex value', class => 'SL::DB::Manager::Part'; +}, 'complex :multi with custom dispatch and prefix', class => 'SL::DB::Manager::OrderItem'; test { - 'part.type' => [ 'part', 'assembly' ], + 'description:substr:multi::ilike' => q|term1 "term2 and half" 'term3 and stuff'|, }, { query => [ - or => [ - and => [ or => [ 'part.assembly' => 0, 'part.assembly' => undef ], - "!part.inventory_accno_id" => 0, - "!part.inventory_accno_id" => undef, - ], - 'part.assembly' => 1, + and => [ + description => { ilike => '%term1%' }, + description => { ilike => '%term2 and half%' }, + description => { ilike => '%term3 and stuff%' }, ] + ] +}, ':multi with complex tokenizing'; + +# test tokenizing for custom filters by monkeypatching a custom filter into Part +SL::DB::Manager::Part->add_filter_specs( + test => sub { + my ($key, $value, $prefix, @additional) = @_; + return "$prefix$key" => { @additional, $value }; + } +); + +test { + 'part.test.what' => 2, +}, { + query => [ + 'part.test' => { 'what', 2 }, + ] +}, 'additional tokens', class => 'SL::DB::Manager::OrderItem'; + +test { + 'part.test.what:substr::ilike' => 2, +}, { + query => [ + 'part.test' => { 'what', { ilike => '%2%' } }, + ] +}, 'additional tokens + filters + methods', class => 'SL::DB::Manager::OrderItem'; + +test { + 'orderitems.part.test.what:substr::ilike' => 2, +}, { + query => [ + 'orderitems.part.test' => { 'what', { ilike => '%2%' } }, + ] +}, 'relationship + additional tokens + filters + methods', class => 'SL::DB::Manager::Order'; + +test { + part => { + 'obsolete::lazy_bool_eq' => '0', + }, +}, { + query => [ + or => [ + 'part.obsolete' => undef, + 'part.obsolete' => 0 + ], ], -}, 'object test with prefix but complex value', class => 'SL::DB::Manager::OrderItem'; + with_objects => [ 'part' ], +}, 'complex methods modifying the key'; + + +test { + 'customer:substr::ilike' => ' Meyer' +}, { + query => [ customer => { ilike => '%Meyer%' } ] +}, 'auto trim 1'; + +test { + 'customer:head::ilike' => ' Meyer ' +}, { + query => [ customer => { ilike => 'Meyer%' } ] +}, 'auto trim 2'; + +test { + 'customer:tail::ilike' => "\nMeyer\x{a0}" +}, { + query => [ customer => { ilike => '%Meyer' } ] +}, 'auto trim 2';