forked from TrueCloudLab/frostfs-api-go
112 lines
2.6 KiB
Go
112 lines
2.6 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)
|
||
|
})
|
||
|
}
|
||
|
func FuzzProtoGetExtendedACLRequest(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data []byte) {
|
||
|
DoFuzzProtoGetExtendedACLRequest(data)
|
||
|
})
|
||
|
}
|
||
|
func FuzzJSONGetExtendedACLRequest(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data []byte) {
|
||
|
DoFuzzJSONGetExtendedACLRequest(data)
|
||
|
})
|
||
|
}
|
||
|
func FuzzProtoGetExtendedACLResponse(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data []byte) {
|
||
|
DoFuzzProtoGetExtendedACLResponse(data)
|
||
|
})
|
||
|
}
|
||
|
func FuzzJSONGetExtendedACLResponse(f *testing.F) {
|
||
|
f.Fuzz(func(t *testing.T, data []byte) {
|
||
|
DoFuzzJSONGetExtendedACLResponse(data)
|
||
|
})
|
||
|
}
|