template_fuzz_test.go 795 B

1234567891011121314151617181920212223242526
  1. //go:build go1.18
  2. // +build go1.18
  3. package genopenapi
  4. import (
  5. "regexp"
  6. "testing"
  7. )
  8. var replaceInternalCommentsRegex = regexp.MustCompile(`(?s)(\r?\n)?[ \t]*(\(--)((.*?--\))|.*$)?`)
  9. func FuzzRemoveInternalComments(f *testing.F) {
  10. f.Add("Text\n\n(-- Comment --)\n\nMore Text\n")
  11. f.Add("Text\n\n(-- Multi\nLine\n\nComment --)\n\nMore Text\n")
  12. f.Add("(-- Starting with comment --)\n\nMore Text\n")
  13. f.Add("\n\n(-- Starting with new line and comment --)\n\nMore Text\n")
  14. f.Add("Ending with\n\n(-- Comment --)")
  15. f.Fuzz(func(t *testing.T, s string) {
  16. s1 := removeInternalComments(s)
  17. s2 := replaceInternalCommentsRegex.ReplaceAllString(s, "")
  18. if s1 != s2 {
  19. t.Errorf("Unexpected comment removal difference: our function produced %q but regex produced %q on %q", s1, s2, s)
  20. }
  21. })
  22. }