format_test.go 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. package genopenapi_test
  2. import (
  3. "bytes"
  4. "encoding/json"
  5. "io"
  6. "reflect"
  7. "testing"
  8. "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/internal/genopenapi"
  9. "gopkg.in/yaml.v3"
  10. )
  11. func TestFormatValidate(t *testing.T) {
  12. t.Parallel()
  13. testCases := [...]struct {
  14. Format genopenapi.Format
  15. Valid bool
  16. }{{
  17. Format: genopenapi.FormatJSON,
  18. Valid: true,
  19. }, {
  20. Format: genopenapi.FormatYAML,
  21. Valid: true,
  22. }, {
  23. Format: genopenapi.Format("unknown"),
  24. Valid: false,
  25. }, {
  26. Format: genopenapi.Format(""),
  27. Valid: false,
  28. }}
  29. for _, tc := range testCases {
  30. tc := tc
  31. t.Run(string(tc.Format), func(t *testing.T) {
  32. t.Parallel()
  33. err := tc.Format.Validate()
  34. switch {
  35. case tc.Valid && err != nil:
  36. t.Fatalf("expect no validation error, got: %s", err)
  37. case !tc.Valid && err == nil:
  38. t.Fatal("expect validation error, got nil")
  39. }
  40. })
  41. }
  42. }
  43. func TestFormatEncode(t *testing.T) {
  44. t.Parallel()
  45. type contentDecoder interface {
  46. Decode(v interface{}) error
  47. }
  48. testCases := [...]struct {
  49. Format genopenapi.Format
  50. NewDecoder func(r io.Reader) contentDecoder
  51. }{{
  52. Format: genopenapi.FormatJSON,
  53. NewDecoder: func(r io.Reader) contentDecoder {
  54. return json.NewDecoder(r)
  55. },
  56. }, {
  57. Format: genopenapi.FormatYAML,
  58. NewDecoder: func(r io.Reader) contentDecoder {
  59. return yaml.NewDecoder(r)
  60. },
  61. }}
  62. for _, tc := range testCases {
  63. tc := tc
  64. t.Run(string(tc.Format), func(t *testing.T) {
  65. t.Parallel()
  66. expParams := map[string]string{
  67. "hello": "world",
  68. }
  69. var buf bytes.Buffer
  70. enc, err := tc.Format.NewEncoder(&buf)
  71. if err != nil {
  72. t.Fatalf("expect no encoder creating error, got: %s", err)
  73. }
  74. err = enc.Encode(expParams)
  75. if err != nil {
  76. t.Fatalf("expect no encoding error, got: %s", err)
  77. }
  78. gotParams := make(map[string]string)
  79. err = tc.NewDecoder(&buf).Decode(&gotParams)
  80. if err != nil {
  81. t.Fatalf("expect no decoding error, got: %s", err)
  82. }
  83. if !reflect.DeepEqual(expParams, gotParams) {
  84. t.Fatalf("expected: %+v, actual: %+v", expParams, gotParams)
  85. }
  86. })
  87. }
  88. }