All Downloads are FREE. Search and download functionalities are using the official Maven repository.

vendor.github.com.pion.sdp.v3.fuzz.go Maven / Gradle / Ivy

There is a newer version: 2.9.1
Show newest version
// +build gofuzz

package sdp

// Fuzz implements a randomized fuzz test of the sdp
// parser using go-fuzz.
//
// To run the fuzzer, first download go-fuzz:
// `go get github.com/dvyukov/go-fuzz/...`
//
// Then build the testing package:
// `go-fuzz-build`
//
// And run the fuzzer on the corpus:
// `go-fuzz`
func Fuzz(data []byte) int {
	// Check that unmarshalling any byte slice does not panic.
	var sd SessionDescription
	if err := sd.Unmarshal(data); err != nil {
		return 0
	}
	// Check that we can marshal anything we unmarshalled.
	_, err := sd.Marshal()
	if err != nil {
		panic("failed to marshal") // nolint
	}
	// It'd be nice to check that if we round trip Marshal then Unmarshal,
	// we get the original back. Right now, though, we frequently don't,
	// and we'd need to fix that first.
	return 1
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy