aboutsummaryrefslogtreecommitdiffstats
path: root/syz-cluster/pkg/controller/api_test.go
Commit message (Collapse)AuthorAgeFilesLines
* syz-cluster: only retest findings with reproducersAleksandr Nogikh2026-03-041-0/+8
| | | | | There are findings without one (e.g. build errors), and it makes no sense to rerun them.
* syz-cluster: deduplicate findings during reportingAleksandr Nogikh2026-03-041-3/+3
| | | | | | | | Now that the same bug could be found on in multiple session tests (e.g. during fuzzing and during repro retesting), ensure that we do not report it twice. Add a test and fix the logic.
* syz-cluster: introduce test stepsAleksandr Nogikh2026-03-041-0/+43
| | | | | | | | Test steps constitute sub-steps of a particular test step. These will be used for pesisting the information about the reproducers that are rerun on newer patch series and about individual kernel tests (if/when we add integrate it will kunit/kselftests/other testing utilities).
* syz-cluster: add ListPreviousFindings APIAleksandr Nogikh2026-03-041-0/+107
| | | | | The API call returns an aggregated list of findings in all previous versions of the specified patch series.
* syz-cluster: add GetFinding APIAleksandr Nogikh2026-03-041-0/+40
| | | | | The API method can be used to query more details about a finding by its UUID.
* syz-cluster/pkg/api: rename TestResult to SessionTestAleksandr Nogikh2026-02-231-2/+2
| | | | This change will reduce confusion when we add nested tests.
* syz-cluster: rename NewFinding to RawFindingAleksandr Nogikh2026-02-201-4/+4
| | | | This will simplify further changes.
* syz-cluster: collect information about base crashesAleksandr Nogikh2025-08-211-0/+40
| | | | Track base crashes for (commit hash, config, arch) tuples.
* syz-cluster: allow finding resubmissionAleksandr Nogikh2025-07-291-2/+39
| | | | | | | | | | Permit the following scenario: a finding is first submitted without a C reproducer and then resubmitted again, now with one. Ensure that it's only possible as long as the session is still in progress. Refactor Finding repository and service and adjust the tests.
* syz-cluster: remember LKML series tagsAleksandr Nogikh2025-07-221-2/+4
| | | | | Sometimes the patch series directly hint at the kernel tree they should be applied to. Extract and remember this information.
* syz-cluster: remember and share kernel tree URLsAleksandr Nogikh2025-07-171-3/+3
| | | | | | | | Share not just the tree name (mainline, net, etc), but also the full URL to check out the repository. For that, add one more field to the Build entity and adjust email reporting templates.
* syz-cluster: generate web dashboard URLs for reportsAleksandr Nogikh2025-07-141-10/+10
| | | | | Take web dashboard URL from the config and use it to generate links for logs, reproducers, etc.
* syz-cluster: save and display reproducers for findingsAleksandr Nogikh2025-06-231-4/+7
|
* syz-cluster: provide API for uploading artifacts archiveAleksandr Nogikh2025-04-111-0/+19
| | | | | | | | | | | The archive would be a useful source of debugging information. Provide an HTTP endpoint that accepts a multipart form request with the archived data. Provide an *api.Client method to encapsulate the encoding of the data. Add a test.
* syz-cluster: build latest revisions of base kernelsAleksandr Nogikh2025-02-181-1/+2
| | | | | | Once a new kernel revision becomes available, build it to figure out whether it's buildable. This information will be used in the triage step to figure out the right base kernel revision.
* syz-cluster: report session resultsAleksandr Nogikh2025-02-141-2/+2
| | | | | | | | | | | | Provide an API to set up the reporting of finished sessions for which syz-cluster collected reportable findings. The actual sending of the results is to be done in a separate component that would: 1) Call Next() to get the next report to send. 2) Call Confirm() to confirm that the report has been sent. 3) Call Upstream() if the report has been moderated and needs to be sent to e.g. public mailing lists.
* syz-cluster/controller: move the API server to pkg/controllerAleksandr Nogikh2025-02-141-0/+108
This will facilitate its reuse in tests.