File size: 9,117 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
/**
 * @jest-environment jsdom
 */
// @ts-nocheck - TODO: Fix TypeScript issues

import { getEmptyResponseCart, getEmptyResponseCartProduct } from '@automattic/shopping-cart';
import { act, render } from '@testing-library/react';
import { translate } from 'i18n-calypso';
import { createElement } from 'react';
import weChatProcessor from '../lib/we-chat-processor';
import {
	mockTransactionsEndpoint,
	mockTransactionsRedirectResponse,
	processorOptions,
	basicExpectedDomainDetails,
	countryCode,
	postalCode,
	contactDetailsForDomain,
	mockOrderEndpoint,
} from './util';

describe( 'weChatProcessor', () => {
	const product = getEmptyResponseCartProduct();
	const domainProduct = {
		...getEmptyResponseCartProduct(),
		meta: 'example.com',
		is_domain_registration: true,
	};
	const cart = { ...getEmptyResponseCart(), products: [ product ] };
	const options = {
		...processorOptions,
		responseCart: cart,
	};

	const basicExpectedStripeRequest = {
		cart: {
			blog_id: 0,
			cart_key: 'no-site',
			coupon: '',
			products: [ product ],
			tax: {
				location: {},
			},
			temporary: false,
		},
		payment: {
			cancel_url: 'https://example.com/',
			country: 'US',
			country_code: 'US',
			name: 'test name',
			payment_method: 'WPCOM_Billing_Stripe_Wechat_Pay',
			payment_partner: 'IE',
			postal_code: '10001',
			success_url:
				'https://example.com/checkout/thank-you/no-site/pending/:orderId?redirect_to=%2Fthank-you&receiptId=%3AreceiptId',
			zip: '10001',
		},
		tos: {
			locale: 'en',
			path: '/',
			viewport: '0x0',
		},
		ad_conversion: {
			ad_details: '',
			sensitive_pixel_options: '',
		},
	};

	it( 'sends the correct data to the endpoint with no site and one product', async () => {
		// The processor renders the dialog into a div so that div must be
		// present to avoid errors.
		render( createElement( 'div', { className: 'we-chat-modal-target' } ) );

		const orderId = 54321;
		const mockOrderStatus = {
			order_id: orderId,
			user_id: 1234,
			receipt_id: undefined,
			processing_status: 'payment-failure',
		};
		mockOrderEndpoint( orderId, () => [ 200, mockOrderStatus ] );
		const transactionsEndpoint = mockTransactionsEndpoint( () =>
			mockTransactionsRedirectResponse( orderId )
		);
		const submitData = {
			name: 'test name',
		};
		const expected = {
			payload: "Sorry, we couldn't process your payment. Please try again later.",
			type: 'ERROR',
		};

		// We have to use `act()` because this changes the DOM async and
		// otherwise we get a bunch of warnings.
		await act( async () => {
			await expect(
				weChatProcessor(
					submitData,
					{
						...options,
						contactDetails: {
							countryCode,
							postalCode,
						},
					},
					translate
				)
			).resolves.toStrictEqual( expected );
		} );

		expect( transactionsEndpoint ).toHaveBeenCalledWith( basicExpectedStripeRequest );
	} );

	it( 'returns an explicit error response if the transaction fails', async () => {
		// The processor renders the dialog into a div so that div must be
		// present to avoid errors.
		render( createElement( 'div', { className: 'we-chat-modal-target' } ) );

		const submitData = {
			name: 'test name',
		};

		mockTransactionsEndpoint( () => [
			400,
			{
				error: 'test_error',
				message: 'test error',
			},
		] );
		const expected = { payload: 'test error', type: 'ERROR' };

		// We have to use `act()` because this changes the DOM async and
		// otherwise we get a bunch of warnings.
		await act( async () => {
			await expect(
				weChatProcessor(
					submitData,
					{
						...options,
						contactDetails: {
							countryCode,
							postalCode,
						},
					},
					translate
				)
			).resolves.toStrictEqual( expected );
		} );
	} );

	it( 'sends the correct data to the endpoint with a site and one product', async () => {
		// The processor renders the dialog into a div so that div must be
		// present to avoid errors.
		render( createElement( 'div', { className: 'we-chat-modal-target' } ) );

		const orderId = 54321;
		const mockOrderStatus = {
			order_id: orderId,
			user_id: 1234,
			receipt_id: undefined,
			processing_status: 'payment-failure',
		};
		mockOrderEndpoint( orderId, () => [ 200, mockOrderStatus ] );
		const transactionsEndpoint = mockTransactionsEndpoint( () =>
			mockTransactionsRedirectResponse( orderId )
		);
		const submitData = {
			name: 'test name',
		};
		const expected = {
			payload: "Sorry, we couldn't process your payment. Please try again later.",
			type: 'ERROR',
		};

		// We have to use `act()` because this changes the DOM async and
		// otherwise we get a bunch of warnings.
		await act( async () => {
			await expect(
				weChatProcessor(
					submitData,
					{
						...options,
						siteSlug: 'example.wordpress.com',
						siteId: 1234567,
						contactDetails: {
							countryCode,
							postalCode,
						},
					},
					translate
				)
			).resolves.toStrictEqual( expected );
		} );

		expect( transactionsEndpoint ).toHaveBeenCalledWith( {
			...basicExpectedStripeRequest,
			cart: {
				...basicExpectedStripeRequest.cart,
				blog_id: 1234567,
				cart_key: 1234567,
				coupon: '',
			},
			payment: {
				...basicExpectedStripeRequest.payment,
				success_url:
					'https://example.com/checkout/thank-you/example.wordpress.com/pending/:orderId?redirect_to=%2Fthank-you&receiptId=%3AreceiptId',
			},
		} );
	} );

	it( 'sends the correct data to the endpoint with tax information', async () => {
		// The processor renders the dialog into a div so that div must be
		// present to avoid errors.
		render( createElement( 'div', { className: 'we-chat-modal-target' } ) );

		const orderId = 54321;
		const mockOrderStatus = {
			order_id: orderId,
			user_id: 1234,
			receipt_id: undefined,
			processing_status: 'payment-failure',
		};
		mockOrderEndpoint( orderId, () => [ 200, mockOrderStatus ] );
		const transactionsEndpoint = mockTransactionsEndpoint( () =>
			mockTransactionsRedirectResponse( orderId )
		);
		const submitData = {
			name: 'test name',
		};
		const expected = {
			payload: "Sorry, we couldn't process your payment. Please try again later.",
			type: 'ERROR',
		};

		// We have to use `act()` because this changes the DOM async and
		// otherwise we get a bunch of warnings.
		await act( async () => {
			await expect(
				weChatProcessor(
					submitData,
					{
						...options,
						siteSlug: 'example.wordpress.com',
						siteId: 1234567,
						contactDetails: {
							countryCode,
							postalCode,
						},
						responseCart: {
							...options.responseCart,
							tax: {
								display_taxes: true,
								location: {
									postal_code: 'pr267ry',
									country_code: 'GB',
								},
							},
						},
					},
					translate
				)
			).resolves.toStrictEqual( expected );
		} );

		expect( transactionsEndpoint ).toHaveBeenCalledWith( {
			...basicExpectedStripeRequest,
			cart: {
				...basicExpectedStripeRequest.cart,
				blog_id: 1234567,
				cart_key: 1234567,
				coupon: '',
				tax: { location: { postal_code: 'pr267ry', country_code: 'GB' } },
			},
			payment: {
				...basicExpectedStripeRequest.payment,
				success_url:
					'https://example.com/checkout/thank-you/example.wordpress.com/pending/:orderId?redirect_to=%2Fthank-you&receiptId=%3AreceiptId',
			},
		} );
	} );

	it( 'sends the correct data to the endpoint with a site and one domain product', async () => {
		// The processor renders the dialog into a div so that div must be
		// present to avoid errors.
		render( createElement( 'div', { className: 'we-chat-modal-target' } ) );

		const orderId = 54321;
		const mockOrderStatus = {
			order_id: orderId,
			user_id: 1234,
			receipt_id: undefined,
			processing_status: 'payment-failure',
		};
		mockOrderEndpoint( orderId, () => [ 200, mockOrderStatus ] );
		const transactionsEndpoint = mockTransactionsEndpoint( () =>
			mockTransactionsRedirectResponse( orderId )
		);
		const submitData = {
			name: 'test name',
		};
		const expected = {
			payload: "Sorry, we couldn't process your payment. Please try again later.",
			type: 'ERROR',
		};

		// We have to use `act()` because this changes the DOM async and
		// otherwise we get a bunch of warnings.
		await act( async () => {
			await expect(
				weChatProcessor(
					submitData,
					{
						...options,
						siteSlug: 'example.wordpress.com',
						siteId: 1234567,
						contactDetails: contactDetailsForDomain,
						responseCart: { ...cart, products: [ domainProduct ] },
						includeDomainDetails: true,
					},
					translate
				)
			).resolves.toStrictEqual( expected );
		} );

		expect( transactionsEndpoint ).toHaveBeenCalledWith( {
			...basicExpectedStripeRequest,
			cart: {
				...basicExpectedStripeRequest.cart,
				blog_id: 1234567,
				cart_key: 1234567,
				coupon: '',
				products: [ domainProduct ],
			},
			domain_details: basicExpectedDomainDetails,
			payment: {
				...basicExpectedStripeRequest.payment,
				success_url:
					'https://example.com/checkout/thank-you/example.wordpress.com/pending/:orderId?redirect_to=%2Fthank-you&receiptId=%3AreceiptId',
			},
		} );
	} );
} );