helpers_test.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package genopenapi
  2. import (
  3. "reflect"
  4. "testing"
  5. )
  6. func Test_getUniqueFields(t *testing.T) {
  7. type args struct {
  8. schemaFieldsRequired []string
  9. fieldsRequired []string
  10. }
  11. var tests = []struct {
  12. name string
  13. args args
  14. want []string
  15. }{
  16. {
  17. name: "test_1",
  18. args: args{
  19. schemaFieldsRequired: []string{"Field_1", "Field_2", "Field_3"},
  20. fieldsRequired: []string{"Field_2"},
  21. },
  22. want: []string{"Field_1", "Field_3"},
  23. },
  24. {
  25. name: "test_2",
  26. args: args{
  27. schemaFieldsRequired: []string{"Field_1", "Field_2", "Field_3"},
  28. fieldsRequired: []string{"Field_3"},
  29. },
  30. want: []string{"Field_1", "Field_2"},
  31. },
  32. {
  33. name: "test_3",
  34. args: args{
  35. schemaFieldsRequired: []string{"Field_1", "Field_2", "Field_3"},
  36. fieldsRequired: []string{"Field_4"},
  37. },
  38. want: []string{"Field_1", "Field_2", "Field_3"},
  39. },
  40. {
  41. name: "test_4",
  42. args: args{
  43. schemaFieldsRequired: []string{"Field_1", "Field_2", "Field_3", "Field_4", "Field_5", "Field_6"},
  44. fieldsRequired: []string{"Field_6", "Field_4", "Field_1"},
  45. },
  46. want: []string{"Field_2", "Field_3", "Field_5"},
  47. },
  48. {
  49. name: "test_5",
  50. args: args{
  51. schemaFieldsRequired: []string{"Field_1", "Field_2", "Field_3"},
  52. fieldsRequired: []string{},
  53. },
  54. want: []string{"Field_1", "Field_2", "Field_3"},
  55. },
  56. }
  57. for _, tt := range tests {
  58. t.Run(tt.name, func(t *testing.T) {
  59. if got := getUniqueFields(tt.args.schemaFieldsRequired, tt.args.fieldsRequired); !reflect.DeepEqual(got, tt.want) {
  60. t.Errorf("getUniqueFields() = %v, want %v", got, tt.want)
  61. }
  62. })
  63. }
  64. }