@pact-foundation/pact 10.0.0-beta.9 → 10.1.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (285) hide show
  1. package/CHANGELOG.md +2444 -1
  2. package/CODE_OF_CONDUCT.md +1 -1
  3. package/CONTRIBUTING.md +49 -12
  4. package/MIGRATION.md +77 -0
  5. package/README.md +180 -1274
  6. package/RELEASING.md +63 -59
  7. package/package.json +95 -97
  8. package/src/common/jsonTypes.d.ts +5 -0
  9. package/src/common/jsonTypes.js +3 -0
  10. package/src/common/jsonTypes.js.map +1 -0
  11. package/src/common/logger.d.ts +10 -0
  12. package/src/common/logger.js +32 -0
  13. package/src/common/logger.js.map +1 -0
  14. package/src/common/net.d.ts +9 -0
  15. package/src/common/net.js +82 -0
  16. package/src/common/net.js.map +1 -0
  17. package/{common → src/common}/net.spec.d.ts +0 -0
  18. package/src/common/net.spec.js +69 -0
  19. package/src/common/net.spec.js.map +1 -0
  20. package/src/common/request.d.ts +21 -0
  21. package/src/common/request.js +110 -0
  22. package/src/common/request.js.map +1 -0
  23. package/{common → src/common}/request.spec.d.ts +0 -0
  24. package/src/common/request.spec.js +69 -0
  25. package/src/common/request.spec.js.map +1 -0
  26. package/src/common/spec.d.ts +2 -0
  27. package/src/common/spec.js +22 -0
  28. package/src/common/spec.js.map +1 -0
  29. package/{dsl → src/dsl}/apolloGraphql.d.ts +1 -1
  30. package/{dsl → src/dsl}/apolloGraphql.js +4 -1
  31. package/src/dsl/apolloGraphql.js.map +1 -0
  32. package/{dsl → src/dsl}/apolloGraphql.spec.d.ts +0 -0
  33. package/src/dsl/apolloGraphql.spec.js +74 -0
  34. package/src/dsl/apolloGraphql.spec.js.map +1 -0
  35. package/{dsl → src/dsl}/graphql.d.ts +19 -8
  36. package/{dsl → src/dsl}/graphql.js +59 -31
  37. package/src/dsl/graphql.js.map +1 -0
  38. package/{dsl → src/dsl}/graphql.spec.d.ts +0 -0
  39. package/src/dsl/graphql.spec.js +229 -0
  40. package/src/dsl/graphql.spec.js.map +1 -0
  41. package/{dsl → src/dsl}/interaction.d.ts +22 -20
  42. package/src/dsl/interaction.js +144 -0
  43. package/src/dsl/interaction.js.map +1 -0
  44. package/{dsl → src/dsl}/interaction.spec.d.ts +0 -0
  45. package/src/dsl/interaction.spec.js +214 -0
  46. package/src/dsl/interaction.spec.js.map +1 -0
  47. package/src/dsl/matchers.d.ts +143 -0
  48. package/{dsl → src/dsl}/matchers.js +92 -93
  49. package/src/dsl/matchers.js.map +1 -0
  50. package/{dsl → src/dsl}/matchers.spec.d.ts +0 -0
  51. package/src/dsl/matchers.spec.js +668 -0
  52. package/src/dsl/matchers.spec.js.map +1 -0
  53. package/{dsl → src/dsl}/message.d.ts +32 -12
  54. package/{dsl → src/dsl}/message.js +0 -0
  55. package/{dsl → src/dsl}/message.js.map +1 -1
  56. package/src/dsl/mockService.d.ts +13 -0
  57. package/src/dsl/mockService.js +3 -0
  58. package/src/dsl/mockService.js.map +1 -0
  59. package/{dsl → src/dsl}/options.d.ts +7 -6
  60. package/{dsl → src/dsl}/options.js +0 -0
  61. package/{dsl → src/dsl}/options.js.map +1 -1
  62. package/src/dsl/verifier/index.d.ts +1 -0
  63. package/src/dsl/verifier/index.js +18 -0
  64. package/src/dsl/verifier/index.js.map +1 -0
  65. package/src/dsl/verifier/proxy/hooks.d.ts +4 -0
  66. package/src/dsl/verifier/proxy/hooks.js +109 -0
  67. package/src/dsl/verifier/proxy/hooks.js.map +1 -0
  68. package/src/dsl/verifier/proxy/index.d.ts +1 -0
  69. package/src/dsl/verifier/proxy/index.js +18 -0
  70. package/src/dsl/verifier/proxy/index.js.map +1 -0
  71. package/src/dsl/verifier/proxy/parseBody.d.ts +7 -0
  72. package/src/dsl/verifier/proxy/parseBody.js +22 -0
  73. package/src/dsl/verifier/proxy/parseBody.js.map +1 -0
  74. package/{dsl/mockService.spec.d.ts → src/dsl/verifier/proxy/parseBody.spec.d.ts} +0 -0
  75. package/src/dsl/verifier/proxy/parseBody.spec.js +118 -0
  76. package/src/dsl/verifier/proxy/parseBody.spec.js.map +1 -0
  77. package/src/dsl/verifier/proxy/proxy.d.ts +4 -0
  78. package/src/dsl/verifier/proxy/proxy.js +92 -0
  79. package/src/dsl/verifier/proxy/proxy.js.map +1 -0
  80. package/{dsl/publisher.spec.d.ts → src/dsl/verifier/proxy/proxy.spec.d.ts} +0 -0
  81. package/src/dsl/verifier/proxy/proxy.spec.js +33 -0
  82. package/src/dsl/verifier/proxy/proxy.spec.js.map +1 -0
  83. package/src/dsl/verifier/proxy/stateHandler/index.d.ts +1 -0
  84. package/src/dsl/verifier/proxy/stateHandler/index.js +18 -0
  85. package/src/dsl/verifier/proxy/stateHandler/index.js.map +1 -0
  86. package/src/dsl/verifier/proxy/stateHandler/setupStates.d.ts +3 -0
  87. package/src/dsl/verifier/proxy/stateHandler/setupStates.js +48 -0
  88. package/src/dsl/verifier/proxy/stateHandler/setupStates.js.map +1 -0
  89. package/{dsl/verifier.spec.d.ts → src/dsl/verifier/proxy/stateHandler/setupStates.spec.d.ts} +0 -0
  90. package/src/dsl/verifier/proxy/stateHandler/setupStates.spec.js +191 -0
  91. package/src/dsl/verifier/proxy/stateHandler/setupStates.spec.js.map +1 -0
  92. package/src/dsl/verifier/proxy/stateHandler/stateHandler.d.ts +3 -0
  93. package/src/dsl/verifier/proxy/stateHandler/stateHandler.js +14 -0
  94. package/src/dsl/verifier/proxy/stateHandler/stateHandler.js.map +1 -0
  95. package/{httpPact.spec.d.ts → src/dsl/verifier/proxy/stateHandler/stateHandler.spec.d.ts} +0 -0
  96. package/src/dsl/verifier/proxy/stateHandler/stateHandler.spec.js +130 -0
  97. package/src/dsl/verifier/proxy/stateHandler/stateHandler.spec.js.map +1 -0
  98. package/src/dsl/verifier/proxy/tracer.d.ts +3 -0
  99. package/src/dsl/verifier/proxy/tracer.js +52 -0
  100. package/src/dsl/verifier/proxy/tracer.js.map +1 -0
  101. package/src/dsl/verifier/proxy/types.d.ts +48 -0
  102. package/src/dsl/verifier/proxy/types.js +3 -0
  103. package/src/dsl/verifier/proxy/types.js.map +1 -0
  104. package/src/dsl/verifier/types.d.ts +3 -0
  105. package/src/dsl/verifier/types.js +3 -0
  106. package/src/dsl/verifier/types.js.map +1 -0
  107. package/src/dsl/verifier/verifier.d.ts +16 -0
  108. package/src/dsl/verifier/verifier.js +129 -0
  109. package/src/dsl/verifier/verifier.js.map +1 -0
  110. package/{messageConsumerPact.spec.d.ts → src/dsl/verifier/verifier.spec.d.ts} +0 -0
  111. package/src/dsl/verifier/verifier.spec.js +172 -0
  112. package/src/dsl/verifier/verifier.spec.js.map +1 -0
  113. package/{errors → src/errors}/configurationError.d.ts +0 -0
  114. package/{errors → src/errors}/configurationError.js +3 -1
  115. package/src/errors/configurationError.js.map +1 -0
  116. package/{errors → src/errors}/graphQLQueryError.d.ts +0 -0
  117. package/{errors → src/errors}/graphQLQueryError.js +3 -1
  118. package/src/errors/graphQLQueryError.js.map +1 -0
  119. package/{errors → src/errors}/matcherError.d.ts +0 -0
  120. package/{errors → src/errors}/matcherError.js +3 -1
  121. package/src/errors/matcherError.js.map +1 -0
  122. package/{errors → src/errors}/verificationError.d.ts +0 -0
  123. package/{errors → src/errors}/verificationError.js +3 -1
  124. package/src/errors/verificationError.js.map +1 -0
  125. package/src/httpPact/ffi.d.ts +15 -0
  126. package/src/httpPact/ffi.js +91 -0
  127. package/src/httpPact/ffi.js.map +1 -0
  128. package/{messageProviderPact.spec.d.ts → src/httpPact/ffi.spec.d.ts} +0 -0
  129. package/src/httpPact/ffi.spec.js +81 -0
  130. package/src/httpPact/ffi.spec.js.map +1 -0
  131. package/{httpPact.d.ts → src/httpPact/index.d.ts} +12 -12
  132. package/src/httpPact/index.js +311 -0
  133. package/src/httpPact/index.js.map +1 -0
  134. package/{pact-web.spec.d.ts → src/httpPact/index.spec.d.ts} +0 -0
  135. package/src/httpPact/index.spec.js +238 -0
  136. package/src/httpPact/index.spec.js.map +1 -0
  137. package/src/httpPact/tracing.d.ts +1 -0
  138. package/src/httpPact/tracing.js +53 -0
  139. package/src/httpPact/tracing.js.map +1 -0
  140. package/{pact.d.ts → src/index.d.ts} +22 -21
  141. package/src/index.js +107 -0
  142. package/src/index.js.map +1 -0
  143. package/src/messageConsumerPact.d.ts +86 -0
  144. package/src/messageConsumerPact.js +222 -0
  145. package/src/messageConsumerPact.js.map +1 -0
  146. package/src/messageConsumerPact.spec.d.ts +1 -0
  147. package/src/messageConsumerPact.spec.js +117 -0
  148. package/src/messageConsumerPact.spec.js.map +1 -0
  149. package/{messageProviderPact.d.ts → src/messageProviderPact.d.ts} +7 -4
  150. package/src/messageProviderPact.js +190 -0
  151. package/src/messageProviderPact.js.map +1 -0
  152. package/src/messageProviderPact.spec.d.ts +1 -0
  153. package/src/messageProviderPact.spec.js +183 -0
  154. package/src/messageProviderPact.spec.js.map +1 -0
  155. package/{pact.integration.spec.d.ts → src/pact.integration.spec.d.ts} +0 -0
  156. package/{pact.integration.spec.js → src/pact.integration.spec.js} +0 -0
  157. package/src/pact.integration.spec.js.map +1 -0
  158. package/src/v3/display.d.ts +6 -0
  159. package/src/v3/display.js +83 -0
  160. package/src/v3/display.js.map +1 -0
  161. package/src/v3/index.d.ts +17 -0
  162. package/src/v3/index.js +47 -0
  163. package/src/v3/index.js.map +1 -0
  164. package/src/v3/matchers.d.ts +182 -0
  165. package/src/v3/matchers.js +443 -0
  166. package/src/v3/matchers.js.map +1 -0
  167. package/src/v3/matchers.spec.d.ts +1 -0
  168. package/src/v3/matchers.spec.js +461 -0
  169. package/src/v3/matchers.spec.js.map +1 -0
  170. package/src/v3/pact.d.ts +21 -0
  171. package/src/v3/pact.js +240 -0
  172. package/src/v3/pact.js.map +1 -0
  173. package/src/v3/types.d.ts +81 -0
  174. package/src/v3/types.js +11 -0
  175. package/src/v3/types.js.map +1 -0
  176. package/{v3 → src/v3}/xml/xmlBuilder.d.ts +2 -2
  177. package/{v3 → src/v3}/xml/xmlBuilder.js +2 -1
  178. package/src/v3/xml/xmlBuilder.js.map +1 -0
  179. package/src/v3/xml/xmlElement.d.ts +27 -0
  180. package/{v3 → src/v3}/xml/xmlElement.js +21 -15
  181. package/src/v3/xml/xmlElement.js.map +1 -0
  182. package/src/v3/xml/xmlElement.spec.d.ts +1 -0
  183. package/src/v3/xml/xmlElement.spec.js +102 -0
  184. package/src/v3/xml/xmlElement.spec.js.map +1 -0
  185. package/{v3 → src/v3}/xml/xmlNode.d.ts +0 -0
  186. package/{v3 → src/v3}/xml/xmlNode.js +1 -0
  187. package/src/v3/xml/xmlNode.js.map +1 -0
  188. package/src/v3/xml/xmlText.d.ts +7 -0
  189. package/{v3 → src/v3}/xml/xmlText.js +4 -1
  190. package/src/v3/xml/xmlText.js.map +1 -0
  191. package/test/helper.d.ts +1 -0
  192. package/test/helper.js +37 -0
  193. package/test/helper.js.map +1 -0
  194. package/ROADMAP.md +0 -20
  195. package/common/logger.d.ts +0 -7
  196. package/common/logger.js +0 -56
  197. package/common/logger.js.map +0 -1
  198. package/common/metadata.d.ts +0 -0
  199. package/common/metadata.js +0 -2
  200. package/common/metadata.js.map +0 -1
  201. package/common/net.d.ts +0 -9
  202. package/common/net.js +0 -48
  203. package/common/net.js.map +0 -1
  204. package/common/net.spec.js +0 -67
  205. package/common/net.spec.js.map +0 -1
  206. package/common/request.d.ts +0 -14
  207. package/common/request.js +0 -47
  208. package/common/request.js.map +0 -1
  209. package/common/request.spec.js +0 -71
  210. package/common/request.spec.js.map +0 -1
  211. package/common/utils.d.ts +0 -2
  212. package/common/utils.js +0 -10
  213. package/common/utils.js.map +0 -1
  214. package/dsl/apolloGraphql.js.map +0 -1
  215. package/dsl/apolloGraphql.spec.js +0 -47
  216. package/dsl/apolloGraphql.spec.js.map +0 -1
  217. package/dsl/graphql.js.map +0 -1
  218. package/dsl/graphql.spec.js +0 -150
  219. package/dsl/graphql.spec.js.map +0 -1
  220. package/dsl/interaction.js +0 -112
  221. package/dsl/interaction.js.map +0 -1
  222. package/dsl/interaction.spec.js +0 -217
  223. package/dsl/interaction.spec.js.map +0 -1
  224. package/dsl/matchers.d.ts +0 -269
  225. package/dsl/matchers.js.map +0 -1
  226. package/dsl/matchers.spec.js +0 -563
  227. package/dsl/matchers.spec.js.map +0 -1
  228. package/dsl/mockService.d.ts +0 -58
  229. package/dsl/mockService.js +0 -74
  230. package/dsl/mockService.js.map +0 -1
  231. package/dsl/mockService.spec.js +0 -126
  232. package/dsl/mockService.spec.js.map +0 -1
  233. package/dsl/publisher.d.ts +0 -6
  234. package/dsl/publisher.js +0 -19
  235. package/dsl/publisher.js.map +0 -1
  236. package/dsl/publisher.spec.js +0 -21
  237. package/dsl/publisher.spec.js.map +0 -1
  238. package/dsl/verifier.d.ts +0 -39
  239. package/dsl/verifier.js +0 -173
  240. package/dsl/verifier.js.map +0 -1
  241. package/dsl/verifier.spec.js +0 -299
  242. package/dsl/verifier.spec.js.map +0 -1
  243. package/errors/configurationError.js.map +0 -1
  244. package/errors/graphQLQueryError.js.map +0 -1
  245. package/errors/matcherError.js.map +0 -1
  246. package/errors/verificationError.js.map +0 -1
  247. package/httpPact.js +0 -206
  248. package/httpPact.js.map +0 -1
  249. package/httpPact.spec.js +0 -337
  250. package/httpPact.spec.js.map +0 -1
  251. package/messageConsumerPact.d.ts +0 -67
  252. package/messageConsumerPact.js +0 -161
  253. package/messageConsumerPact.js.map +0 -1
  254. package/messageConsumerPact.spec.js +0 -161
  255. package/messageConsumerPact.spec.js.map +0 -1
  256. package/messageProviderPact.js +0 -139
  257. package/messageProviderPact.js.map +0 -1
  258. package/messageProviderPact.spec.js +0 -143
  259. package/messageProviderPact.spec.js.map +0 -1
  260. package/pact-web.d.ts +0 -100
  261. package/pact-web.js +0 -151
  262. package/pact-web.js.map +0 -1
  263. package/pact-web.spec.js +0 -191
  264. package/pact-web.spec.js.map +0 -1
  265. package/pact.integration.spec.js.map +0 -1
  266. package/pact.js +0 -74
  267. package/pact.js.map +0 -1
  268. package/v3/index.d.ts +0 -23
  269. package/v3/index.js +0 -33
  270. package/v3/index.js.map +0 -1
  271. package/v3/matchers.d.ts +0 -199
  272. package/v3/matchers.js +0 -305
  273. package/v3/matchers.js.map +0 -1
  274. package/v3/pact.d.ts +0 -47
  275. package/v3/pact.js +0 -101
  276. package/v3/pact.js.map +0 -1
  277. package/v3/verifier.d.ts +0 -27
  278. package/v3/verifier.js +0 -46
  279. package/v3/verifier.js.map +0 -1
  280. package/v3/xml/xmlBuilder.js.map +0 -1
  281. package/v3/xml/xmlElement.d.ts +0 -34
  282. package/v3/xml/xmlElement.js.map +0 -1
  283. package/v3/xml/xmlNode.js.map +0 -1
  284. package/v3/xml/xmlText.d.ts +0 -6
  285. package/v3/xml/xmlText.js.map +0 -1
package/v3/matchers.d.ts DELETED
@@ -1,199 +0,0 @@
1
- /**
2
- * Value must match the given template
3
- * @param template Template to base the comparison on
4
- */
5
- export declare function like(template: any): {
6
- "pact:matcher:type": string;
7
- value: any;
8
- };
9
- /**
10
- * Array where each element must match the given template
11
- * @param template Template to base the comparison on
12
- */
13
- export declare function eachLike(template: any): {
14
- "pact:matcher:type": string;
15
- value: any[];
16
- };
17
- /**
18
- * An array that has to have at least one element and each element must match the given template
19
- * @param template Template to base the comparison on
20
- * @param count Number of examples to generate, defaults to one
21
- */
22
- export declare function atLeastOneLike(template: any, count?: number): {
23
- min: number;
24
- "pact:matcher:type": string;
25
- value: any[];
26
- };
27
- /**
28
- * An array that has to have at least the required number of elements and each element must match the given template
29
- * @param template Template to base the comparison on
30
- * @param min Minimum number of elements required in the array
31
- * @param count Number of examples to generate, defaults to one
32
- */
33
- export declare function atLeastLike(template: any, min: number, count?: number): {
34
- min: number;
35
- "pact:matcher:type": string;
36
- value: any[];
37
- };
38
- /**
39
- * An array that has to have at most the required number of elements and each element must match the given template
40
- * @param template Template to base the comparison on
41
- * @param max Maximum number of elements required in the array
42
- * @param count Number of examples to generate, defaults to one
43
- */
44
- export declare function atMostLike(template: any, max: number, count?: number): {
45
- max: number;
46
- "pact:matcher:type": string;
47
- value: any[];
48
- };
49
- /**
50
- * An array whose size is constrained to the minimum and maximum number of elements and each element must match the given template
51
- * @param template Template to base the comparison on
52
- * @param min Minimum number of elements required in the array
53
- * @param max Maximum number of elements required in the array
54
- * @param count Number of examples to generate, defaults to one
55
- */
56
- export declare function constrainedArrayLike(template: any, min: number, max: number, count?: number): {
57
- min: number;
58
- max: number;
59
- "pact:matcher:type": string;
60
- value: any[];
61
- };
62
- /**
63
- * Value must be a boolean
64
- * @param b Boolean example value
65
- */
66
- export declare function boolean(b: boolean): {
67
- "pact:matcher:type": string;
68
- value: boolean;
69
- };
70
- /**
71
- * Value must be an integer (must be a number and have no decimal places)
72
- * @param int Example value. If omitted a random value will be generated.
73
- */
74
- export declare function integer(int?: number): {
75
- "pact:matcher:type": string;
76
- value: number;
77
- "pact:generator:type"?: undefined;
78
- } | {
79
- "pact:generator:type": string;
80
- "pact:matcher:type": string;
81
- value: number;
82
- };
83
- /**
84
- * Value must be a decimal number (must be a number and have decimal places)
85
- * @param num Example value. If omitted a random value will be generated.
86
- */
87
- export declare function decimal(num?: number): {
88
- "pact:matcher:type": string;
89
- value: number;
90
- "pact:generator:type"?: undefined;
91
- } | {
92
- "pact:generator:type": string;
93
- "pact:matcher:type": string;
94
- value: number;
95
- };
96
- /**
97
- * Value must be a number
98
- * @param num Example value. If omitted a random integer value will be generated.
99
- */
100
- export declare function number(num?: number): {
101
- "pact:matcher:type": string;
102
- value: number;
103
- "pact:generator:type"?: undefined;
104
- } | {
105
- "pact:generator:type": string;
106
- "pact:matcher:type": string;
107
- value: number;
108
- };
109
- /**
110
- * Value must be a string
111
- * @param str Example value
112
- */
113
- export declare function string(str: string): {
114
- "pact:matcher:type": string;
115
- value: string;
116
- };
117
- /**
118
- * Value that must match the given regular expression
119
- * @param pattern Regular Expression to match
120
- * @param str Example value
121
- */
122
- export declare function regex(pattern: string, str: string): any;
123
- /**
124
- * Value that must match the given regular expression
125
- * @param pattern Regular Expression to match
126
- * @param str Example value
127
- */
128
- export declare function regex(pattern: RegExp, str: string): any;
129
- /**
130
- * Value that must be equal to the example. This is mainly used to reset the matching rules which cascade.
131
- * @param value Example value
132
- */
133
- export declare function equal(value: any): {
134
- "pact:matcher:type": string;
135
- value: any;
136
- };
137
- /**
138
- * String value that must match the provided datetime format string.
139
- * @param format Datetime format string. See [Java SimpleDateFormat](https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html)
140
- * @param example Example value to use. If omitted a value using the current system date and time will be generated.
141
- */
142
- export declare function timestamp(format: string, example?: string): {
143
- "pact:generator:type": string;
144
- "pact:matcher:type": string;
145
- format: string;
146
- timestamp: string;
147
- value: any;
148
- };
149
- /**
150
- * String value that must match the provided datetime format string.
151
- * @param format Datetime format string. See [Java SimpleDateFormat](https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html)
152
- * @param example Example value to use. If omitted a value using the current system date and time will be generated.
153
- */
154
- export declare function datetime(format: string, example?: string): {
155
- "pact:generator:type": string;
156
- "pact:matcher:type": string;
157
- format: string;
158
- timestamp: string;
159
- value: any;
160
- };
161
- /**
162
- * String value that must match the provided time format string.
163
- * @param format Time format string. See [Java SimpleDateFormat](https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html)
164
- * @param example Example value to use. If omitted a value using the current system time will be generated.
165
- */
166
- export declare function time(format: string, example?: string): {
167
- "pact:generator:type": string;
168
- "pact:matcher:type": string;
169
- format: string;
170
- time: string;
171
- value: any;
172
- };
173
- /**
174
- * String value that must match the provided date format string.
175
- * @param format Date format string. See [Java SimpleDateFormat](https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html)
176
- * @param example Example value to use. If omitted a value using the current system date will be generated.
177
- */
178
- export declare function date(format: any, example?: string): {
179
- format: any;
180
- "pact:generator:type": string;
181
- "pact:matcher:type": string;
182
- date: any;
183
- value: any;
184
- };
185
- /**
186
- * Value that must include the example value as a substring.
187
- * @param value String value to include
188
- */
189
- export declare function includes(value: string): {
190
- "pact:matcher:type": string;
191
- value: string;
192
- };
193
- /**
194
- * Value that must be null. This will only match the JSON Null value. For other content types, it will
195
- * match if the attribute is missing.
196
- */
197
- export declare function nullValue(): {
198
- "pact:matcher:type": string;
199
- };
package/v3/matchers.js DELETED
@@ -1,305 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var R = require("ramda");
4
- var PactNative = require("../native");
5
- /**
6
- * Value must match the given template
7
- * @param template Template to base the comparison on
8
- */
9
- function like(template) {
10
- return {
11
- "pact:matcher:type": "type",
12
- value: template,
13
- };
14
- }
15
- exports.like = like;
16
- /**
17
- * Array where each element must match the given template
18
- * @param template Template to base the comparison on
19
- */
20
- function eachLike(template) {
21
- return {
22
- "pact:matcher:type": "type",
23
- value: [template],
24
- };
25
- }
26
- exports.eachLike = eachLike;
27
- /**
28
- * An array that has to have at least one element and each element must match the given template
29
- * @param template Template to base the comparison on
30
- * @param count Number of examples to generate, defaults to one
31
- */
32
- function atLeastOneLike(template, count) {
33
- if (count === void 0) { count = 1; }
34
- return {
35
- min: 1,
36
- "pact:matcher:type": "type",
37
- value: R.times(function () { return template; }, count),
38
- };
39
- }
40
- exports.atLeastOneLike = atLeastOneLike;
41
- /**
42
- * An array that has to have at least the required number of elements and each element must match the given template
43
- * @param template Template to base the comparison on
44
- * @param min Minimum number of elements required in the array
45
- * @param count Number of examples to generate, defaults to one
46
- */
47
- function atLeastLike(template, min, count) {
48
- var elements = count || min;
49
- if (count && count < min) {
50
- throw new Error("atLeastLike has a minimum of " +
51
- min +
52
- " but " +
53
- count +
54
- " elements where requested." +
55
- " Make sure the count is greater than or equal to the min.");
56
- }
57
- return {
58
- min: min,
59
- "pact:matcher:type": "type",
60
- value: R.times(function () { return template; }, elements),
61
- };
62
- }
63
- exports.atLeastLike = atLeastLike;
64
- /**
65
- * An array that has to have at most the required number of elements and each element must match the given template
66
- * @param template Template to base the comparison on
67
- * @param max Maximum number of elements required in the array
68
- * @param count Number of examples to generate, defaults to one
69
- */
70
- function atMostLike(template, max, count) {
71
- var elements = count || 1;
72
- if (count && count > max) {
73
- throw new Error("atMostLike has a maximum of " +
74
- max +
75
- " but " +
76
- count +
77
- " elements where requested." +
78
- " Make sure the count is less than or equal to the max.");
79
- }
80
- return {
81
- max: max,
82
- "pact:matcher:type": "type",
83
- value: R.times(function () { return template; }, elements),
84
- };
85
- }
86
- exports.atMostLike = atMostLike;
87
- /**
88
- * An array whose size is constrained to the minimum and maximum number of elements and each element must match the given template
89
- * @param template Template to base the comparison on
90
- * @param min Minimum number of elements required in the array
91
- * @param max Maximum number of elements required in the array
92
- * @param count Number of examples to generate, defaults to one
93
- */
94
- function constrainedArrayLike(template, min, max, count) {
95
- var elements = count || min;
96
- if (count) {
97
- if (count < min) {
98
- throw new Error("constrainedArrayLike has a minimum of " +
99
- min +
100
- " but " +
101
- count +
102
- " elements where requested." +
103
- " Make sure the count is greater than or equal to the min.");
104
- }
105
- else if (count > max) {
106
- throw new Error("constrainedArrayLike has a maximum of " +
107
- max +
108
- " but " +
109
- count +
110
- " elements where requested." +
111
- " Make sure the count is less than or equal to the max.");
112
- }
113
- }
114
- return {
115
- min: min,
116
- max: max,
117
- "pact:matcher:type": "type",
118
- value: R.times(function () { return template; }, elements),
119
- };
120
- }
121
- exports.constrainedArrayLike = constrainedArrayLike;
122
- /**
123
- * Value must be a boolean
124
- * @param b Boolean example value
125
- */
126
- function boolean(b) {
127
- return {
128
- "pact:matcher:type": "type",
129
- value: b,
130
- };
131
- }
132
- exports.boolean = boolean;
133
- /**
134
- * Value must be an integer (must be a number and have no decimal places)
135
- * @param int Example value. If omitted a random value will be generated.
136
- */
137
- function integer(int) {
138
- if (int) {
139
- return {
140
- "pact:matcher:type": "integer",
141
- value: int,
142
- };
143
- }
144
- else {
145
- return {
146
- "pact:generator:type": "RandomInt",
147
- "pact:matcher:type": "integer",
148
- value: 101,
149
- };
150
- }
151
- }
152
- exports.integer = integer;
153
- /**
154
- * Value must be a decimal number (must be a number and have decimal places)
155
- * @param num Example value. If omitted a random value will be generated.
156
- */
157
- function decimal(num) {
158
- if (num) {
159
- return {
160
- "pact:matcher:type": "decimal",
161
- value: num,
162
- };
163
- }
164
- else {
165
- return {
166
- "pact:generator:type": "RandomDecimal",
167
- "pact:matcher:type": "decimal",
168
- value: 12.34,
169
- };
170
- }
171
- }
172
- exports.decimal = decimal;
173
- /**
174
- * Value must be a number
175
- * @param num Example value. If omitted a random integer value will be generated.
176
- */
177
- function number(num) {
178
- if (num) {
179
- return {
180
- "pact:matcher:type": "number",
181
- value: num,
182
- };
183
- }
184
- else {
185
- return {
186
- "pact:generator:type": "RandomInt",
187
- "pact:matcher:type": "number",
188
- value: 1234,
189
- };
190
- }
191
- }
192
- exports.number = number;
193
- /**
194
- * Value must be a string
195
- * @param str Example value
196
- */
197
- function string(str) {
198
- return {
199
- "pact:matcher:type": "type",
200
- value: str,
201
- };
202
- }
203
- exports.string = string;
204
- function regex(pattern, str) {
205
- if (pattern instanceof RegExp) {
206
- return {
207
- "pact:matcher:type": "regex",
208
- regex: pattern.source,
209
- value: str,
210
- };
211
- }
212
- return {
213
- "pact:matcher:type": "regex",
214
- regex: pattern,
215
- value: str,
216
- };
217
- }
218
- exports.regex = regex;
219
- /**
220
- * Value that must be equal to the example. This is mainly used to reset the matching rules which cascade.
221
- * @param value Example value
222
- */
223
- function equal(value) {
224
- return {
225
- "pact:matcher:type": "equality",
226
- value: value,
227
- };
228
- }
229
- exports.equal = equal;
230
- /**
231
- * String value that must match the provided datetime format string.
232
- * @param format Datetime format string. See [Java SimpleDateFormat](https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html)
233
- * @param example Example value to use. If omitted a value using the current system date and time will be generated.
234
- */
235
- function timestamp(format, example) {
236
- return datetime(format, example);
237
- }
238
- exports.timestamp = timestamp;
239
- /**
240
- * String value that must match the provided datetime format string.
241
- * @param format Datetime format string. See [Java SimpleDateFormat](https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html)
242
- * @param example Example value to use. If omitted a value using the current system date and time will be generated.
243
- */
244
- function datetime(format, example) {
245
- return {
246
- "pact:generator:type": "DateTime",
247
- "pact:matcher:type": "timestamp",
248
- format: format,
249
- timestamp: format,
250
- value: example || PactNative.generate_datetime_string(format),
251
- };
252
- }
253
- exports.datetime = datetime;
254
- /**
255
- * String value that must match the provided time format string.
256
- * @param format Time format string. See [Java SimpleDateFormat](https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html)
257
- * @param example Example value to use. If omitted a value using the current system time will be generated.
258
- */
259
- function time(format, example) {
260
- return {
261
- "pact:generator:type": "Time",
262
- "pact:matcher:type": "time",
263
- format: format,
264
- time: format,
265
- value: example || PactNative.generate_datetime_string(format),
266
- };
267
- }
268
- exports.time = time;
269
- /**
270
- * String value that must match the provided date format string.
271
- * @param format Date format string. See [Java SimpleDateFormat](https://docs.oracle.com/javase/8/docs/api/java/text/SimpleDateFormat.html)
272
- * @param example Example value to use. If omitted a value using the current system date will be generated.
273
- */
274
- function date(format, example) {
275
- return {
276
- format: format,
277
- "pact:generator:type": "Date",
278
- "pact:matcher:type": "date",
279
- date: format,
280
- value: example || PactNative.generate_datetime_string(format),
281
- };
282
- }
283
- exports.date = date;
284
- /**
285
- * Value that must include the example value as a substring.
286
- * @param value String value to include
287
- */
288
- function includes(value) {
289
- return {
290
- "pact:matcher:type": "include",
291
- value: value,
292
- };
293
- }
294
- exports.includes = includes;
295
- /**
296
- * Value that must be null. This will only match the JSON Null value. For other content types, it will
297
- * match if the attribute is missing.
298
- */
299
- function nullValue() {
300
- return {
301
- "pact:matcher:type": "null",
302
- };
303
- }
304
- exports.nullValue = nullValue;
305
- //# sourceMappingURL=matchers.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"matchers.js","sourceRoot":"","sources":["../../src/v3/matchers.ts"],"names":[],"mappings":"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"}
package/v3/pact.d.ts DELETED
@@ -1,47 +0,0 @@
1
- export interface PactV3Options {
2
- dir: string;
3
- consumer: string;
4
- provider: string;
5
- }
6
- export interface V3ProviderState {
7
- description: string;
8
- parameters?: any;
9
- }
10
- export interface V3Request {
11
- method: string;
12
- path: string;
13
- query?: {
14
- [param: string]: string;
15
- };
16
- headers?: {
17
- [header: string]: string;
18
- };
19
- body?: any;
20
- }
21
- export interface V3Response {
22
- status: number;
23
- headers?: {
24
- [header: string]: string;
25
- };
26
- body?: any;
27
- }
28
- export interface V3MockServer {
29
- port: number;
30
- url: string;
31
- id: string;
32
- }
33
- export declare class PactV3 {
34
- private opts;
35
- private states;
36
- private pact;
37
- constructor(opts: PactV3Options & {});
38
- given(providerState: string, parameters?: any): this;
39
- uponReceiving(desc: string): this;
40
- withRequest(req: V3Request): this;
41
- withRequestBinaryFile(req: V3Request, contentType: string, file: string): this;
42
- withRequestMultipartFileUpload(req: V3Request, contentType: string, file: string, part: string): this;
43
- willRespondWith(res: V3Response): this;
44
- withResponseBinaryFile(res: V3Response, contentType: string, file: string): this;
45
- withResponseMultipartFileUpload(req: V3Response, contentType: string, file: string, part: string): this;
46
- executeTest<T>(testFn: (mockServer: V3MockServer) => Promise<T>): Promise<T>;
47
- }
package/v3/pact.js DELETED
@@ -1,101 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- var PactNative = require("../native");
4
- var PactV3 = /** @class */ (function () {
5
- function PactV3(opts) {
6
- this.states = [];
7
- this.opts = opts;
8
- this.pact = new PactNative.Pact(opts.consumer, opts.provider);
9
- }
10
- PactV3.prototype.given = function (providerState, parameters) {
11
- this.states.push({ description: providerState, parameters: parameters });
12
- return this;
13
- };
14
- PactV3.prototype.uponReceiving = function (desc) {
15
- this.pact.addInteraction(desc, this.states);
16
- return this;
17
- };
18
- PactV3.prototype.withRequest = function (req) {
19
- this.pact.addRequest(req, req.body && JSON.stringify(req.body));
20
- return this;
21
- };
22
- PactV3.prototype.withRequestBinaryFile = function (req, contentType, file) {
23
- this.pact.addRequestBinaryFile(req, contentType, file);
24
- return this;
25
- };
26
- PactV3.prototype.withRequestMultipartFileUpload = function (req, contentType, file, part) {
27
- this.pact.addRequestMultipartFileUpload(req, contentType, file, part);
28
- return this;
29
- };
30
- PactV3.prototype.willRespondWith = function (res) {
31
- this.pact.addResponse(res, res.body && JSON.stringify(res.body));
32
- this.states = [];
33
- return this;
34
- };
35
- PactV3.prototype.withResponseBinaryFile = function (res, contentType, file) {
36
- this.pact.addResponseBinaryFile(res, contentType, file);
37
- return this;
38
- };
39
- PactV3.prototype.withResponseMultipartFileUpload = function (req, contentType, file, part) {
40
- this.pact.addResponseMultipartFileUpload(req, contentType, file, part);
41
- return this;
42
- };
43
- PactV3.prototype.executeTest = function (testFn) {
44
- var _this = this;
45
- var result = this.pact.executeTest(testFn);
46
- if (result.testResult) {
47
- return result.testResult
48
- .then(function (val) {
49
- var testResult = _this.pact.getTestResult(result.mockServer.id);
50
- if (testResult.mockServerError) {
51
- return Promise.reject(new Error(testResult.mockServerError));
52
- }
53
- else if (testResult.mockServerMismatches) {
54
- var error = "Mock server failed with the following mismatches: ";
55
- for (var _i = 0, _a = testResult.mockServerMismatches; _i < _a.length; _i++) {
56
- var mismatch = _a[_i];
57
- error += "\n\t" + mismatch;
58
- }
59
- return Promise.reject(new Error(error));
60
- }
61
- else {
62
- _this.pact.writePactFile(result.mockServer.id, _this.opts.dir);
63
- return val;
64
- }
65
- })
66
- .catch(function (err) {
67
- var testResult = _this.pact.getTestResult(result.mockServer.id);
68
- var error = "Test failed for the following reasons:";
69
- error += "\n\n\tTest code failed with an error: " + err.message;
70
- if (testResult.mockServerError) {
71
- error += "\n\n\t" + testResult.mockServerError;
72
- }
73
- if (testResult.mockServerMismatches) {
74
- error += "\n\n\tMock server failed with the following mismatches: ";
75
- var i = 1;
76
- for (var _i = 0, _a = testResult.mockServerMismatches; _i < _a.length; _i++) {
77
- var mismatchJson = _a[_i];
78
- var mismatches = JSON.parse(mismatchJson);
79
- if (mismatches.mismatches) {
80
- for (var _b = 0, _c = mismatches.mismatches; _b < _c.length; _b++) {
81
- var mismatch = _c[_b];
82
- error += "\n\t\t" + i++ + ") " + mismatch.type + " " + (mismatch.path ? "(at " + mismatch.path + ") " : "") + mismatch.mismatch;
83
- }
84
- }
85
- }
86
- }
87
- return Promise.reject(new Error(error));
88
- })
89
- .finally(function () {
90
- _this.pact.shutdownTest(result);
91
- });
92
- }
93
- else {
94
- this.pact.shutdownTest(result);
95
- return Promise.reject(result.testError);
96
- }
97
- };
98
- return PactV3;
99
- }());
100
- exports.PactV3 = PactV3;
101
- //# sourceMappingURL=pact.js.map
package/v3/pact.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"pact.js","sourceRoot":"","sources":["../../src/v3/pact.ts"],"names":[],"mappings":"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"}