diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-10-02 12:26:51 -0700 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-10-02 12:26:51 -0700 |
commit | 380fca01fdebfb84544c02adced886a64c1ab85e (patch) | |
tree | 16a19eb9382108120aeaea3e7af12914fd92cd3d /xt/lib/Bugzilla | |
parent | a46cf131f0248614b048f55b30b1b92304292f01 (diff) | |
download | bugs-380fca01fdebfb84544c02adced886a64c1ab85e.tar bugs-380fca01fdebfb84544c02adced886a64c1ab85e.tar.gz bugs-380fca01fdebfb84544c02adced886a64c1ab85e.tar.bz2 bugs-380fca01fdebfb84544c02adced886a64c1ab85e.tar.xz bugs-380fca01fdebfb84544c02adced886a64c1ab85e.zip |
Bug 601383: Test the chfield* search query parameters in xt/search.t.
r=mkanat, a=mkanat (module owner)
Diffstat (limited to 'xt/lib/Bugzilla')
-rw-r--r-- | xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm b/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm index a4b913caa..22edf2216 100644 --- a/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm +++ b/xt/lib/Bugzilla/Test/Search/FieldTestNormal.pm @@ -28,6 +28,12 @@ use base qw(Bugzilla::Test::Search::FieldTest); use Scalar::Util qw(blessed); +use constant CH_OPERATOR => { + changedafter => 'chfieldfrom', + changedbefore => 'chfieldto', + changedto => 'chfieldvalue', +}; + # Normally, we just clone a FieldTest because that's the best for performance, # overall--that way we don't have to translate the value again. However, # sometimes (like in Bugzilla::Test::Search's direct code) we just want @@ -54,11 +60,19 @@ sub search_params { my ($self) = @_; my $field = $self->field; my $operator = $self->operator; - $field =~ s/\./_/g; my $value = $self->translated_value; if ($operator eq 'anyexact') { $value = [split(',', $value)]; } + + if (my $ch_param = CH_OPERATOR->{$operator}) { + if ($field eq 'creation_ts') { + $field = '[Bug creation]'; + } + return { chfield => $field, $ch_param => $value }; + } + + $field =~ s/\./_/g; return { $field => $value, "${field}_type" => $self->operator }; } |