Aleksey Savchuk
c11f50efec
All checks were successful
DCO action / DCO (pull_request) Successful in 45s
Tests and linters / Tests (1.22) (pull_request) Successful in 1m5s
Tests and linters / Tests (1.23) (pull_request) Successful in 1m6s
Tests and linters / Lint (pull_request) Successful in 1m12s
Tests and linters / Tests with -race (pull_request) Successful in 1m20s
Signed-off-by: Aleksey Savchuk <a.savchuk@yadro.com>
91 lines
2 KiB
Go
91 lines
2 KiB
Go
//go:build gofuzz
|
|
// +build gofuzz
|
|
|
|
// Code generated by protoc-gen-go-frostfs. DO NOT EDIT.
|
|
|
|
package container
|
|
|
|
import (
|
|
testing "testing"
|
|
)
|
|
|
|
func FuzzProtoPutRequest(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzProtoPutRequest(data)
|
|
})
|
|
}
|
|
func FuzzJSONPutRequest(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzJSONPutRequest(data)
|
|
})
|
|
}
|
|
func FuzzProtoPutResponse(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzProtoPutResponse(data)
|
|
})
|
|
}
|
|
func FuzzJSONPutResponse(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzJSONPutResponse(data)
|
|
})
|
|
}
|
|
func FuzzProtoDeleteRequest(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzProtoDeleteRequest(data)
|
|
})
|
|
}
|
|
func FuzzJSONDeleteRequest(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzJSONDeleteRequest(data)
|
|
})
|
|
}
|
|
func FuzzProtoDeleteResponse(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzProtoDeleteResponse(data)
|
|
})
|
|
}
|
|
func FuzzJSONDeleteResponse(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzJSONDeleteResponse(data)
|
|
})
|
|
}
|
|
func FuzzProtoGetRequest(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzProtoGetRequest(data)
|
|
})
|
|
}
|
|
func FuzzJSONGetRequest(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzJSONGetRequest(data)
|
|
})
|
|
}
|
|
func FuzzProtoGetResponse(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzProtoGetResponse(data)
|
|
})
|
|
}
|
|
func FuzzJSONGetResponse(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzJSONGetResponse(data)
|
|
})
|
|
}
|
|
func FuzzProtoListRequest(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzProtoListRequest(data)
|
|
})
|
|
}
|
|
func FuzzJSONListRequest(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzJSONListRequest(data)
|
|
})
|
|
}
|
|
func FuzzProtoListResponse(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzProtoListResponse(data)
|
|
})
|
|
}
|
|
func FuzzJSONListResponse(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
DoFuzzJSONListResponse(data)
|
|
})
|
|
}
|