action #168007
opencoordination #70840: [epic] further features for the "search" feature
https://openqa.opensuse.org/search?q= offers very little benefit
0%
Description
- Doing a search on the webUI provides very little advantage over using grep in the test distribution, and there are no instructions of how to use it efficiently.
- The search results don't really provide anything of value other than confirming whether there is something that matches the search parameter, and nothing clickable on top of that, so any potential user would still need to figure out the information on their own
For reference take the following two SQL queries:
select jobs.id, jobs.scheduled_product_id, jobs.test, jm.name from jobs left join job_modules jm on (jobs.id = jm.job_id) where jobs.t_started >= '2024-10-01' and jobs.result = 'passed' and jm.name like '%snapper%' and jobs.scheduled_product_id > 0 limit 100;
select jobs.id, jobs.scheduled_product_id, jobs.test, jm.name from jobs left join job_modules jm on (jobs.id = jm.job_id) where jobs.t_started >= '2024-10-01' and jobs.result = 'passed' and jm.name = 'suseconnect_scc' and jobs.scheduled_product_id > 0 limit 100;
Returned exactly the information I was looking for.
IMO: searching widely on the test code, should only be limited (if at all) to the search in the build overview page.