-
Notifications
You must be signed in to change notification settings - Fork 212
/
Copy pathcapability.js
400 lines (368 loc) · 12.4 KB
/
capability.js
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
'use strict';
const sinon = require('sinon');
const assert = { ...sinon.assert, ...require('chai').assert };
const { Container } = require('typedi');
const { mockLog } = require('../../mocks');
const { AuthLogger } = require('../../../lib/types');
const { StripeHelper } = require('../../../lib/payments/stripe');
const { PlayBilling } = require('../../../lib/payments/iap/google-play');
const subscriptionCreated =
require('./fixtures/stripe/subscription_created.json').data.object;
const { ProfileClient } = require('../../../lib/types');
const {
SubscriptionPurchase,
} = require('../../../lib/payments/iap/google-play/subscription-purchase');
const proxyquire = require('proxyquire').noPreserveCache();
const authDbModule = require('fxa-shared/db/models/auth');
const {
PurchaseQueryError,
} = require('../../../lib/payments/iap/google-play/types');
const mockAuthEvents = {};
const { CapabilityService } = proxyquire('../../../lib/payments/capability', {
'../events': {
authEvents: mockAuthEvents,
},
});
const VALID_SUB_API_RESPONSE = {
kind: 'androidpublisher#subscriptionPurchase',
startTimeMillis: `${Date.now() - 10000}`, // some time in the past
expiryTimeMillis: `${Date.now() + 10000}`, // some time in the future
autoRenewing: true,
priceCurrencyCode: 'JPY',
priceAmountMicros: '99000000',
countryCode: 'JP',
developerPayload: '',
paymentState: 1,
orderId: 'GPA.3313-5503-3858-32549',
};
const UID = 'uid8675309';
const EMAIL = 'user@example.com';
/**
* To prevent the modification of the test objects loaded, which can impact other tests referencing the object,
* a deep copy of the object can be created which uses the test object as a template
*
* @param {Object} object
*/
function deepCopy(object) {
return JSON.parse(JSON.stringify(object));
}
describe('CapabilityService', () => {
let mockStripeHelper;
let mockPlayBilling;
let capabilityService;
let log;
let mockSubscriptionPurchase;
let mockProfileClient;
beforeEach(async () => {
mockAuthEvents.on = sinon.fake.returns({});
mockStripeHelper = {};
mockPlayBilling = {
userManager: {},
purchaseManager: {},
};
mockProfileClient = {
deleteCache: sinon.fake.resolves({}),
};
mockStripeHelper.allAbbrevPlans = sinon.spy(async () => [
{
plan_id: 'plan_123456',
product_id: 'prod_123456',
plan_metadata: {
capabilities: 'capAll',
'capabilities:c1': 'cap4,cap5',
'capabilities:c2': 'cap5,cap6',
},
product_metadata: {
'capabilities:c1': 'capZZ',
},
},
{
plan_id: 'plan_876543',
product_id: 'prod_876543',
plan_metadata: {
'capabilities:c2': 'capC, capD',
'capabilities:c3': 'capD, capE',
},
},
{
plan_id: 'plan_ABCDEF',
product_id: 'prod_ABCDEF',
product_metadata: {
'capabilities:c3': ' capZ, capW ',
},
},
{
plan_id: 'plan_456789',
product_id: 'prod_456789',
product_metadata: {
'capabilities:c3': ' capZ,capW',
},
},
{
plan_id: 'plan_PLAY',
product_id: 'prod_PLAY',
product_metadata: {
'capabilities:c3': ' capP',
},
},
]);
log = mockLog();
Container.set(AuthLogger, log);
Container.set(StripeHelper, mockStripeHelper);
Container.set(PlayBilling, mockPlayBilling);
Container.set(ProfileClient, mockProfileClient);
capabilityService = new CapabilityService();
});
afterEach(() => {
Container.reset();
sinon.restore();
});
describe('stripeUpdate', () => {
beforeEach(() => {
const fake = sinon.fake.resolves({
uid: UID,
email: EMAIL,
});
sinon.replace(authDbModule, 'getUidAndEmailByStripeCustomerId', fake);
capabilityService.subscribedPriceIds = sinon.fake.resolves([
'price_GWScEDK6LT8cSV',
]);
capabilityService.processPriceIdDiff = sinon.fake.resolves();
});
it('handles a stripe price update with new prices', async () => {
const sub = deepCopy(subscriptionCreated);
await capabilityService.stripeUpdate({ sub, uid: UID, email: EMAIL });
assert.notCalled(authDbModule.getUidAndEmailByStripeCustomerId);
assert.calledWith(mockProfileClient.deleteCache, UID);
assert.calledWith(capabilityService.subscribedPriceIds, UID);
assert.calledWith(capabilityService.processPriceIdDiff, {
uid: UID,
priorPriceIds: [],
currentPriceIds: ['price_GWScEDK6LT8cSV'],
});
});
it('handles a stripe price update with removed prices', async () => {
const sub = deepCopy(subscriptionCreated);
capabilityService.subscribedPriceIds = sinon.fake.resolves([]);
await capabilityService.stripeUpdate({ sub, uid: UID, email: EMAIL });
assert.notCalled(authDbModule.getUidAndEmailByStripeCustomerId);
assert.calledWith(mockProfileClient.deleteCache, UID);
assert.calledWith(capabilityService.subscribedPriceIds, UID);
assert.calledWith(capabilityService.processPriceIdDiff, {
uid: UID,
priorPriceIds: ['price_GWScEDK6LT8cSV'],
currentPriceIds: [],
});
});
it('handles a stripe price update without uid/email', async () => {
const sub = deepCopy(subscriptionCreated);
await capabilityService.stripeUpdate({ sub });
assert.calledWith(
authDbModule.getUidAndEmailByStripeCustomerId,
sub.customer
);
assert.calledWith(mockProfileClient.deleteCache, UID);
assert.calledWith(capabilityService.subscribedPriceIds, UID);
assert.calledWith(capabilityService.processPriceIdDiff, {
uid: UID,
priorPriceIds: [],
currentPriceIds: ['price_GWScEDK6LT8cSV'],
});
});
});
describe('playUpdate', () => {
let subscriptionPurchase;
beforeEach(() => {
const fake = sinon.fake.resolves({
uid: UID,
email: EMAIL,
});
sinon.replace(authDbModule, 'getUidAndEmailByStripeCustomerId', fake);
capabilityService.subscribedPriceIds = sinon.fake.resolves([
'prod_FUUNYnlDso7FeB',
]);
capabilityService.processPriceIdDiff = sinon.fake.resolves();
subscriptionPurchase = SubscriptionPurchase.fromApiResponse(
VALID_SUB_API_RESPONSE,
'testPackage',
'testToken',
'testSku',
Date.now()
);
mockStripeHelper.purchasesToPriceIds = sinon.fake.resolves([
'prod_FUUNYnlDso7FeB',
]);
});
it('handles a play purchase with new product', async () => {
await capabilityService.playUpdate(UID, EMAIL, subscriptionPurchase);
assert.calledWith(mockProfileClient.deleteCache, UID);
assert.calledWith(capabilityService.subscribedPriceIds, UID);
assert.calledWith(capabilityService.processPriceIdDiff, {
uid: UID,
priorPriceIds: [],
currentPriceIds: ['prod_FUUNYnlDso7FeB'],
});
});
it('handles a play purchase with a removed product', async () => {
capabilityService.subscribedPriceIds = sinon.fake.resolves([]);
await capabilityService.playUpdate(UID, EMAIL, subscriptionPurchase);
assert.calledWith(mockProfileClient.deleteCache, UID);
assert.calledWith(capabilityService.subscribedPriceIds, UID);
assert.calledWith(capabilityService.processPriceIdDiff, {
uid: UID,
priorPriceIds: ['prod_FUUNYnlDso7FeB'],
currentPriceIds: [],
});
});
});
describe('broadcastCapabilitiesAdded', () => {
it('should broadcast the capabilities added', async () => {
const capabilities = ['cap2'];
capabilityService.broadcastCapabilitiesAdded({ uid: UID, capabilities });
sinon.assert.calledOnce(log.notifyAttachedServices);
});
});
describe('broadcastCapabilitiesRemoved', () => {
it('should broadcast the capabilities removed event', async () => {
const capabilities = ['cap1'];
capabilityService.broadcastCapabilitiesRemoved({
uid: UID,
capabilities,
});
sinon.assert.calledOnce(log.notifyAttachedServices);
});
});
describe('processPriceIdDiff', () => {
it('should process the product diff', async () => {
mockAuthEvents.emit = sinon.fake.returns({});
await capabilityService.processPriceIdDiff({
uid: UID,
priorPriceIds: ['plan_123456', 'plan_876543'],
currentPriceIds: ['plan_876543', 'plan_ABCDEF'],
});
sinon.assert.calledTwice(log.notifyAttachedServices);
});
});
describe('determineClientVisibleSubscriptionCapabilities', () => {
beforeEach(() => {
mockStripeHelper.fetchCustomer = sinon.spy(async () => ({
subscriptions: {
data: [
{
status: 'active',
items: {
data: [{ price: { id: 'plan_123456' } }],
},
},
{
status: 'active',
items: {
data: [{ price: { id: 'plan_876543' } }],
},
},
{
status: 'incomplete',
items: {
data: [{ price: { id: 'plan_456789' } }],
},
},
],
},
}));
mockStripeHelper.purchasesToPriceIds = sinon.fake.returns(['plan_PLAY']);
mockSubscriptionPurchase = {
sku: 'play_1234',
isEntitlementActive: sinon.fake.returns(true),
};
mockPlayBilling.userManager.queryCurrentSubscriptions = sinon
.stub()
.resolves([mockSubscriptionPurchase]);
});
async function assertExpectedCapabilities(clientId, expectedCapabilities) {
const allCapabilities = await capabilityService.subscriptionCapabilities(
UID
);
const resultCapabilities =
await capabilityService.determineClientVisibleSubscriptionCapabilities(
// null client represents sessionToken auth from content-server, unfiltered by client
clientId === 'null' ? null : Buffer.from(clientId, 'hex'),
allCapabilities
);
assert.deepEqual(resultCapabilities.sort(), expectedCapabilities.sort());
}
it('handles a firestore fetch error', async () => {
const error = new Error('test error');
error.name = PurchaseQueryError.OTHER_ERROR;
mockPlayBilling.userManager.queryCurrentSubscriptions = sinon
.stub()
.rejects(error);
const allCapabilities = await capabilityService.subscriptionCapabilities(
UID
);
assert.deepEqual(allCapabilities, {
'*': ['capAll'],
c1: ['cap4', 'cap5', 'capZZ'],
c2: ['cap5', 'cap6', 'capC', 'capD'],
c3: ['capD', 'capE'],
});
assert.calledOnceWithExactly(
mockPlayBilling.userManager.queryCurrentSubscriptions,
UID
);
});
it('only reveals capabilities relevant to the client', async () => {
const expected = {
c0: ['capAll'],
c1: ['capAll', 'cap4', 'cap5', 'capZZ'],
c2: ['capAll', 'cap5', 'cap6', 'capC', 'capD'],
c3: ['capAll', 'capD', 'capE', 'capP'],
null: [
'capAll',
'cap4',
'cap5',
'cap6',
'capC',
'capD',
'capE',
'capP',
'capZZ',
],
};
for (const clientId in expected) {
await assertExpectedCapabilities(clientId, expected[clientId]);
}
});
it('supports capabilities visible to all clients', async () => {
mockStripeHelper.allAbbrevPlans = sinon.spy(async () => [
{
plan_id: 'plan_123456',
product_id: 'prod_123456',
product_metadata: {
capabilities: 'cap1,cap2,cap3',
},
},
{
plan_id: 'plan_876543',
product_id: 'prod_876543',
product_metadata: {
capabilities: 'capA,capB,capC',
},
},
{
plan_id: 'plan_ABCDEF',
product_id: 'prod_ABCDEF',
product_metadata: {
capabilities: 'cap00, cap01,cap02',
},
},
]);
for (const clientId of ['c0', 'c1', 'c2', 'c3', 'null']) {
const expected = ['cap1', 'cap2', 'cap3', 'capA', 'capB', 'capC'];
await assertExpectedCapabilities(clientId, expected);
}
});
});
});