types_test.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. package genopenapi
  2. import (
  3. "encoding/json"
  4. "strings"
  5. "testing"
  6. "gopkg.in/yaml.v3"
  7. )
  8. func newSpaceReplacer() *strings.Replacer {
  9. return strings.NewReplacer(" ", "", "\n", "", "\t", "")
  10. }
  11. func TestRawExample(t *testing.T) {
  12. t.Parallel()
  13. testCases := [...]struct {
  14. In RawExample
  15. Exp string
  16. }{{
  17. In: RawExample(`1`),
  18. Exp: `1`,
  19. }, {
  20. In: RawExample(`"1"`),
  21. Exp: `"1"`,
  22. }, {
  23. In: RawExample(`{"hello":"worldr"}`),
  24. Exp: `
  25. hello:
  26. worldr
  27. `,
  28. }}
  29. sr := newSpaceReplacer()
  30. for _, tc := range testCases {
  31. tc := tc
  32. t.Run(string(tc.In), func(t *testing.T) {
  33. t.Parallel()
  34. ex := tc.In
  35. out, err := yaml.Marshal(ex)
  36. switch {
  37. case err != nil:
  38. t.Fatalf("expect no yaml marshal error, got: %s", err)
  39. case !json.Valid(tc.In):
  40. t.Fatalf("json is invalid: %#q", tc.In)
  41. case sr.Replace(tc.Exp) != sr.Replace(string(out)):
  42. t.Fatalf("expected: %s, actual: %s", tc.Exp, out)
  43. }
  44. out, err = json.Marshal(tc.In)
  45. switch {
  46. case err != nil:
  47. t.Fatalf("expect no json marshal error, got: %s", err)
  48. case sr.Replace(string(tc.In)) != sr.Replace(string(out)):
  49. t.Fatalf("expected: %s, actual: %s", tc.In, out)
  50. }
  51. })
  52. }
  53. }
  54. func TestOpenapiSchemaObjectProperties(t *testing.T) {
  55. t.Parallel()
  56. v := map[string]interface{}{
  57. "example": openapiSchemaObjectProperties{{
  58. Key: "test1",
  59. Value: 1,
  60. }, {
  61. Key: "test2",
  62. Value: 2,
  63. }},
  64. }
  65. t.Run("yaml", func(t *testing.T) {
  66. t.Parallel()
  67. const exp = `
  68. example:
  69. test1: 1
  70. test2: 2
  71. `
  72. sr := newSpaceReplacer()
  73. out, err := yaml.Marshal(v)
  74. switch {
  75. case err != nil:
  76. t.Fatalf("expect no marshal error, got: %s", err)
  77. case sr.Replace(exp) != sr.Replace(string(out)):
  78. t.Fatalf("expected: %s, actual: %s", exp, out)
  79. }
  80. })
  81. t.Run("json", func(t *testing.T) {
  82. t.Parallel()
  83. const exp = `{"example":{"test1":1,"test2":2}}`
  84. got, err := json.Marshal(v)
  85. switch {
  86. case err != nil:
  87. t.Fatalf("expect no marshal error, got: %s", err)
  88. case exp != string(got):
  89. t.Fatalf("expected: %s, actual: %s", exp, got)
  90. }
  91. })
  92. }