main_test.go 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. package main
  2. import (
  3. "errors"
  4. "flag"
  5. "reflect"
  6. "testing"
  7. )
  8. func TestParseReqParam(t *testing.T) {
  9. testcases := []struct {
  10. name string
  11. expected map[string]string
  12. request string
  13. expectedError error
  14. allowDeleteBodyV bool
  15. allowMergeV bool
  16. includePackageInTagsV bool
  17. fileV string
  18. importPathV string
  19. mergeFileNameV string
  20. useFQNForOpenAPINameV bool
  21. openAPINamingStrategyV string
  22. }{
  23. {
  24. // this one must be first - with no leading clearFlags call it
  25. // verifies our expectation of default values as we reset by
  26. // clearFlags
  27. name: "Test 0",
  28. expected: map[string]string{},
  29. request: "",
  30. allowDeleteBodyV: false,
  31. allowMergeV: false,
  32. includePackageInTagsV: false,
  33. fileV: "-",
  34. importPathV: "",
  35. mergeFileNameV: "apidocs",
  36. },
  37. {
  38. name: "Test 1",
  39. expected: map[string]string{"google/api/annotations.proto": "github.com/googleapis/googleapis/google/api"},
  40. request: "allow_delete_body,allow_merge,allow_repeated_fields_in_body,include_package_in_tags,file=./foo.pb,import_prefix=/bar/baz,Mgoogle/api/annotations.proto=github.com/googleapis/googleapis/google/api",
  41. allowDeleteBodyV: true,
  42. allowMergeV: true,
  43. includePackageInTagsV: true,
  44. fileV: "./foo.pb",
  45. importPathV: "/bar/baz",
  46. mergeFileNameV: "apidocs",
  47. },
  48. {
  49. name: "Test 2",
  50. expected: map[string]string{"google/api/annotations.proto": "github.com/googleapis/googleapis/google/api"},
  51. request: "allow_delete_body=true,allow_merge=true,allow_repeated_fields_in_body=true,include_package_in_tags=true,merge_file_name=test_name,file=./foo.pb,import_prefix=/bar/baz,Mgoogle/api/annotations.proto=github.com/googleapis/googleapis/google/api",
  52. allowDeleteBodyV: true,
  53. allowMergeV: true,
  54. includePackageInTagsV: true,
  55. fileV: "./foo.pb",
  56. importPathV: "/bar/baz",
  57. mergeFileNameV: "test_name",
  58. },
  59. {
  60. name: "Test 3",
  61. expected: map[string]string{"a/b/c.proto": "github.com/x/y/z", "f/g/h.proto": "github.com/1/2/3/"},
  62. request: "allow_delete_body=false,allow_merge=false,Ma/b/c.proto=github.com/x/y/z,Mf/g/h.proto=github.com/1/2/3/",
  63. allowDeleteBodyV: false,
  64. allowMergeV: false,
  65. includePackageInTagsV: false,
  66. fileV: "stdin",
  67. importPathV: "",
  68. mergeFileNameV: "apidocs",
  69. },
  70. {
  71. name: "Test 4",
  72. expected: map[string]string{},
  73. request: "",
  74. allowDeleteBodyV: false,
  75. allowMergeV: false,
  76. includePackageInTagsV: false,
  77. fileV: "stdin",
  78. importPathV: "",
  79. mergeFileNameV: "apidocs",
  80. },
  81. {
  82. name: "Test 5",
  83. expected: map[string]string{},
  84. request: "unknown_param=17",
  85. expectedError: errors.New("cannot set flag unknown_param=17: no such flag -unknown_param"),
  86. allowDeleteBodyV: false,
  87. allowMergeV: false,
  88. includePackageInTagsV: false,
  89. fileV: "stdin",
  90. importPathV: "",
  91. mergeFileNameV: "apidocs",
  92. },
  93. {
  94. name: "Test 6",
  95. expected: map[string]string{},
  96. request: "Mfoo",
  97. expectedError: errors.New("cannot set flag Mfoo: no such flag -Mfoo"),
  98. allowDeleteBodyV: false,
  99. allowMergeV: false,
  100. includePackageInTagsV: false,
  101. fileV: "stdin",
  102. importPathV: "",
  103. mergeFileNameV: "apidocs",
  104. },
  105. {
  106. name: "Test 7",
  107. expected: map[string]string{},
  108. request: "allow_delete_body,file,import_prefix,allow_merge,allow_repeated_fields_in_body,include_package_in_tags,merge_file_name",
  109. allowDeleteBodyV: true,
  110. allowMergeV: true,
  111. includePackageInTagsV: true,
  112. fileV: "",
  113. importPathV: "",
  114. mergeFileNameV: "",
  115. },
  116. {
  117. name: "Test 8",
  118. expected: map[string]string{},
  119. request: "allow_delete_body,file,import_prefix,allow_merge,allow_repeated_fields_in_body=3,merge_file_name",
  120. expectedError: errors.New(`cannot set flag allow_repeated_fields_in_body=3: parse error`),
  121. allowDeleteBodyV: true,
  122. allowMergeV: true,
  123. includePackageInTagsV: false,
  124. fileV: "",
  125. importPathV: "",
  126. mergeFileNameV: "apidocs",
  127. },
  128. {
  129. name: "Test 9",
  130. expected: map[string]string{},
  131. request: "include_package_in_tags=3",
  132. expectedError: errors.New(`cannot set flag include_package_in_tags=3: parse error`),
  133. allowDeleteBodyV: false,
  134. allowMergeV: false,
  135. includePackageInTagsV: false,
  136. fileV: "stdin",
  137. importPathV: "",
  138. mergeFileNameV: "apidocs",
  139. },
  140. {
  141. name: "Test 10",
  142. expected: map[string]string{},
  143. request: "fqn_for_openapi_name=3",
  144. expectedError: errors.New(`cannot set flag fqn_for_openapi_name=3: parse error`),
  145. allowDeleteBodyV: false,
  146. allowMergeV: false,
  147. includePackageInTagsV: false,
  148. useFQNForOpenAPINameV: false,
  149. fileV: "stdin",
  150. importPathV: "",
  151. mergeFileNameV: "apidocs",
  152. },
  153. {
  154. name: "Test 11",
  155. expected: map[string]string{},
  156. request: "fqn_for_openapi_name=true",
  157. allowDeleteBodyV: false,
  158. allowMergeV: false,
  159. includePackageInTagsV: false,
  160. useFQNForOpenAPINameV: true,
  161. fileV: "stdin",
  162. importPathV: "",
  163. mergeFileNameV: "apidocs",
  164. },
  165. {
  166. name: "Test 12",
  167. expected: map[string]string{},
  168. request: "openapi_naming_strategy=simple",
  169. allowDeleteBodyV: false,
  170. allowMergeV: false,
  171. includePackageInTagsV: false,
  172. useFQNForOpenAPINameV: false,
  173. openAPINamingStrategyV: "simple",
  174. fileV: "stdin",
  175. importPathV: "",
  176. mergeFileNameV: "apidocs",
  177. },
  178. }
  179. for i, tc := range testcases {
  180. t.Run(tc.name, func(tt *testing.T) {
  181. f := flag.CommandLine
  182. pkgMap := make(map[string]string)
  183. err := parseReqParam(tc.request, f, pkgMap)
  184. if tc.expectedError == nil {
  185. if err != nil {
  186. tt.Errorf("unexpected parse error '%v'", err)
  187. }
  188. if !reflect.DeepEqual(pkgMap, tc.expected) {
  189. tt.Errorf("pkgMap parse error, expected '%v', got '%v'", tc.expected, pkgMap)
  190. }
  191. } else {
  192. if err == nil {
  193. tt.Error("expected parse error not returned")
  194. }
  195. if !reflect.DeepEqual(pkgMap, tc.expected) {
  196. tt.Errorf("pkgMap parse error, expected '%v', got '%v'", tc.expected, pkgMap)
  197. }
  198. if err.Error() != tc.expectedError.Error() {
  199. tt.Errorf("expected error malformed, expected %q, got %q", tc.expectedError.Error(), err.Error())
  200. }
  201. }
  202. checkFlags(tc.allowDeleteBodyV, tc.allowMergeV, tc.includePackageInTagsV, tc.useFQNForOpenAPINameV, tc.openAPINamingStrategyV, tc.fileV, tc.importPathV, tc.mergeFileNameV, tt, i)
  203. clearFlags()
  204. })
  205. }
  206. }
  207. func checkFlags(
  208. allowDeleteV,
  209. allowMergeV,
  210. includePackageInTagsV bool,
  211. useFQNForOpenAPINameV bool,
  212. openAPINamingStrategyV,
  213. fileV,
  214. importPathV,
  215. mergeFileNameV string,
  216. t *testing.T,
  217. tid int,
  218. ) {
  219. if *importPrefix != importPathV {
  220. t.Errorf("Test %v: import_prefix misparsed, expected '%v', got '%v'", tid, importPathV, *importPrefix)
  221. }
  222. if *file != fileV {
  223. t.Errorf("Test %v: file misparsed, expected '%v', got '%v'", tid, fileV, *file)
  224. }
  225. if *allowDeleteBody != allowDeleteV {
  226. t.Errorf("Test %v: allow_delete_body misparsed, expected '%v', got '%v'", tid, allowDeleteV, *allowDeleteBody)
  227. }
  228. if *allowMerge != allowMergeV {
  229. t.Errorf("Test %v: allow_merge misparsed, expected '%v', got '%v'", tid, allowMergeV, *allowMerge)
  230. }
  231. if *mergeFileName != mergeFileNameV {
  232. t.Errorf("Test %v: merge_file_name misparsed, expected '%v', got '%v'", tid, mergeFileNameV, *mergeFileName)
  233. }
  234. if *includePackageInTags != includePackageInTagsV {
  235. t.Errorf("Test %v: include_package_in_tags misparsed, expected '%v', got '%v'", tid, includePackageInTagsV, *includePackageInTags)
  236. }
  237. if *useFQNForOpenAPIName != useFQNForOpenAPINameV {
  238. t.Errorf("Test %v: fqn_for_openapi_name misparsed, expected '%v', got '%v'", tid, useFQNForOpenAPINameV, *useFQNForOpenAPIName)
  239. }
  240. if *openAPINamingStrategy != openAPINamingStrategyV {
  241. t.Errorf("Test %v: openapi_naming_strategy misparsed, expected '%v', got '%v'", tid, openAPINamingStrategyV, *openAPINamingStrategy)
  242. }
  243. }
  244. func clearFlags() {
  245. *importPrefix = ""
  246. *file = "stdin"
  247. *allowDeleteBody = false
  248. *allowMerge = false
  249. *includePackageInTags = false
  250. *mergeFileName = "apidocs"
  251. *useFQNForOpenAPIName = false
  252. *openAPINamingStrategy = ""
  253. }