-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathmetametrics-controller.test.ts
More file actions
2345 lines (2231 loc) · 76.3 KB
/
metametrics-controller.test.ts
File metadata and controls
2345 lines (2231 loc) · 76.3 KB
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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { toHex } from '@metamask/controller-utils';
import type {
NetworkClientId,
NetworkState,
} from '@metamask/network-controller';
import { NameEntry, NameType } from '@metamask/name-controller';
import { AddressBookEntry } from '@metamask/address-book-controller';
import {
Nft,
Token,
TokensControllerState,
} from '@metamask/assets-controllers';
import { InternalAccount } from '@metamask/keyring-internal-api';
import { Browser } from 'webextension-polyfill';
import { deriveStateFromMetadata } from '@metamask/base-controller';
import {
MOCK_ANY_NAMESPACE,
Messenger,
MockAnyNamespace,
} from '@metamask/messenger';
import { merge } from 'lodash';
import { ThemeType } from '../../../shared/constants/preferences';
import { ENVIRONMENT_TYPE_BACKGROUND } from '../../../shared/constants/app';
import { createSegmentMock } from '../lib/segment';
import {
METAMETRICS_ANONYMOUS_ID,
METAMETRICS_BACKGROUND_PAGE_OBJECT,
MetaMetricsUserTrait,
MetaMetricsUserTraits,
} from '../../../shared/constants/metametrics';
import { CHAIN_IDS } from '../../../shared/constants/network';
import { KeyringType } from '../../../shared/constants/keyring';
import { LedgerTransportTypes } from '../../../shared/constants/hardware-wallets';
import * as Utils from '../lib/util';
import { mockNetworkState } from '../../../test/stub/networks';
import { flushPromises } from '../../../test/lib/timer-helpers';
import MetaMetricsController, {
AllowedActions,
AllowedEvents,
MetaMetricsControllerOptions,
} from './metametrics-controller';
import {
getDefaultPreferencesControllerState,
Preferences,
PreferencesControllerState,
} from './preferences-controller';
const segmentMock = createSegmentMock(2);
const VERSION = '0.0.1-test';
const DEFAULT_CHAIN_ID = '0x1338';
const LOCALE = 'en_US';
const TEST_META_METRICS_ID = '0xabc';
const TEST_GA_COOKIE_ID = '123456.123455';
const DUMMY_ACTION_ID = 'DUMMY_ACTION_ID';
const MOCK_EXTENSION_ID = 'testid';
const MOCK_EXTENSION = {
runtime: {
id: MOCK_EXTENSION_ID,
setUninstallURL: () => undefined,
},
} as unknown as Browser;
const MOCK_TRAITS = {
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
test_boolean: true,
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
test_string: 'abc',
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
test_number: 123,
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
test_bool_array: [true, true, false],
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
test_string_array: ['test', 'test', 'test'],
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
test_boolean_array: [1, 2, 3],
} as MetaMetricsUserTraits;
const MOCK_INVALID_TRAITS = {
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
test_null: null,
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
test_array_multi_types: [true, 'a', 1],
} as MetaMetricsUserTraits;
const DEFAULT_TEST_CONTEXT = {
app: {
name: 'MetaMask Extension',
version: VERSION,
},
page: METAMETRICS_BACKGROUND_PAGE_OBJECT,
referrer: undefined,
userAgent: window.navigator.userAgent,
marketingCampaignCookieId: null,
};
const DEFAULT_SHARED_PROPERTIES = {
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
chain_id: DEFAULT_CHAIN_ID,
locale: LOCALE.replace('_', '-'),
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
environment_type: 'background',
};
const DEFAULT_EVENT_PROPERTIES = {
category: 'Unit Test',
...DEFAULT_SHARED_PROPERTIES,
};
const DEFAULT_PAGE_PROPERTIES = {
...DEFAULT_SHARED_PROPERTIES,
};
const SAMPLE_TX_SUBMITTED_PARTIAL_FRAGMENT = {
id: 'transaction-submitted-0000',
canDeleteIfAbandoned: true,
category: 'Unit Test',
successEvent: 'Transaction Finalized',
persist: true,
properties: {
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
simulation_response: 'no_balance_change',
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
test_stored_prop: 1,
},
};
const SAMPLE_PERSISTED_EVENT_NO_ID = {
persist: true,
category: 'Unit Test',
successEvent: 'sample persisted event success',
failureEvent: 'sample persisted event failure',
properties: {
test: true,
},
};
const SAMPLE_PERSISTED_EVENT = {
id: 'testid',
...SAMPLE_PERSISTED_EVENT_NO_ID,
};
const SAMPLE_NON_PERSISTED_EVENT = {
id: 'testid2',
persist: false,
category: 'Unit Test',
successEvent: 'sample non-persisted event success',
failureEvent: 'sample non-persisted event failure',
uniqueIdentifier: 'sample-non-persisted-event',
properties: {
test: true,
},
};
describe('MetaMetricsController', function () {
describe('constructor', function () {
it('should properly initialize', async function () {
const spy = jest.spyOn(segmentMock, 'track');
await withController(({ controller }) => {
expect(controller.version).toStrictEqual(VERSION);
expect(controller.chainId).toStrictEqual(DEFAULT_CHAIN_ID);
expect(controller.state.participateInMetaMetrics).toStrictEqual(true);
expect(controller.state.metaMetricsId).toStrictEqual(
TEST_META_METRICS_ID,
);
expect(controller.state.marketingCampaignCookieId).toStrictEqual(null);
expect(controller.locale).toStrictEqual(LOCALE.replace('_', '-'));
expect(controller.state.fragments).toStrictEqual({
testid: SAMPLE_PERSISTED_EVENT,
});
expect(spy).toHaveBeenCalledTimes(1);
expect(spy).toHaveBeenCalledWith(
{
event: 'sample non-persisted event failure',
userId: TEST_META_METRICS_ID,
context: DEFAULT_TEST_CONTEXT,
properties: {
...DEFAULT_EVENT_PROPERTIES,
test: true,
},
messageId: 'sample-non-persisted-event-failure',
timestamp: new Date(),
},
spy.mock.calls[0][1],
);
});
});
it('should update when network changes', async function () {
const selectedNetworkClientId = 'selectedNetworkClientId2';
const selectedChainId = '0x222';
await withController(
{
mockNetworkClientConfigurationsByNetworkClientId: {
[selectedNetworkClientId]: {
chainId: selectedChainId,
},
},
},
({ controller, triggerNetworkDidChange }) => {
triggerNetworkDidChange({
networkConfigurationsByChainId: {},
selectedNetworkClientId: 'selectedNetworkClientId2',
networksMetadata: {},
});
expect(controller.chainId).toStrictEqual(selectedChainId);
},
);
});
it('should update when preferences changes', async function () {
await withController(
{
currentLocale: LOCALE,
},
({ controller, triggerPreferencesControllerStateChange }) => {
triggerPreferencesControllerStateChange({
...getDefaultPreferencesControllerState(),
currentLocale: 'en_UK',
});
expect(controller.locale).toStrictEqual('en-UK');
},
);
});
});
describe('createEventFragment', function () {
it('should throw an error if the param is missing successEvent', async function () {
await withController(async ({ controller }) => {
await expect(() => {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error because we are testing the error case
controller.createEventFragment({ category: 'test' });
}).toThrow(/Must specify success event\./u);
});
});
it('should update fragments state with new fragment', async function () {
await withController(({ controller }) => {
jest.useFakeTimers().setSystemTime(1730798301422);
const mockNewId = 'testid3';
controller.createEventFragment({
...SAMPLE_PERSISTED_EVENT_NO_ID,
uniqueIdentifier: mockNewId,
});
const resultFragment = controller.state.fragments[mockNewId];
expect(resultFragment).toStrictEqual({
...SAMPLE_PERSISTED_EVENT_NO_ID,
id: mockNewId,
uniqueIdentifier: mockNewId,
lastUpdated: 1730798301422,
});
});
});
it('should track the initial event if provided', async function () {
await withController(
{
options: {
state: {
participateInMetaMetrics: true,
},
},
},
({ controller }) => {
const spy = jest.spyOn(segmentMock, 'track');
const mockInitialEventName = 'Test Initial Event';
controller.createEventFragment({
...SAMPLE_PERSISTED_EVENT_NO_ID,
initialEvent: mockInitialEventName,
});
expect(spy).toHaveBeenCalledTimes(1);
},
);
});
it('should not call track if no initialEvent was provided', async function () {
await withController(
{
options: {
state: {
participateInMetaMetrics: true,
},
},
},
({ controller }) => {
const spy = jest.spyOn(segmentMock, 'track');
controller.createEventFragment({
...SAMPLE_PERSISTED_EVENT_NO_ID,
});
expect(spy).toHaveBeenCalledTimes(0);
},
);
});
describe('when intialEvent is "Transaction Submitted" and a fragment exists before createEventFragment is called', function () {
it('should update existing fragment state with new fragment props', async function () {
await withController(({ controller }) => {
jest.useFakeTimers().setSystemTime(1730798302222);
const { id } = SAMPLE_TX_SUBMITTED_PARTIAL_FRAGMENT;
controller.updateEventFragment(
SAMPLE_TX_SUBMITTED_PARTIAL_FRAGMENT.id,
{
...SAMPLE_TX_SUBMITTED_PARTIAL_FRAGMENT,
},
);
controller.createEventFragment({
...SAMPLE_PERSISTED_EVENT_NO_ID,
initialEvent: 'Transaction Submitted',
uniqueIdentifier: id,
});
const expectedFragment = merge(
{},
SAMPLE_TX_SUBMITTED_PARTIAL_FRAGMENT,
SAMPLE_PERSISTED_EVENT_NO_ID,
{
canDeleteIfAbandoned: false,
id,
initialEvent: 'Transaction Submitted',
uniqueIdentifier: id,
lastUpdated: 1730798302222,
},
);
expect(controller.state.fragments[id]).toStrictEqual(
expectedFragment,
);
});
});
});
});
describe('updateEventFragment', function () {
it('updates fragment with additional provided props', async function () {
await withController(({ controller }) => {
jest.useFakeTimers().setSystemTime(1730798303333);
const MOCK_PROPS_TO_UPDATE = {
properties: {
test: 1,
},
};
controller.updateEventFragment(
SAMPLE_PERSISTED_EVENT.id,
MOCK_PROPS_TO_UPDATE,
);
const expectedPartialFragment = {
...SAMPLE_PERSISTED_EVENT,
...MOCK_PROPS_TO_UPDATE,
lastUpdated: 1730798303333,
};
expect(
controller.state.fragments[SAMPLE_PERSISTED_EVENT.id],
).toStrictEqual(expectedPartialFragment);
});
});
it('throws error when no existing fragment exists', async function () {
await withController(async ({ controller }) => {
jest.useFakeTimers().setSystemTime(1730798303333);
const MOCK_NONEXISTING_ID = 'test-nonexistingid';
await expect(() => {
controller.updateEventFragment(MOCK_NONEXISTING_ID, {
properties: { test: 1 },
});
}).toThrow(
/Event fragment with id test-nonexistingid does not exist\./u,
);
jest.useRealTimers();
});
});
describe('when id includes "transaction-submitted"', function () {
it('creates and stores new fragment props with canDeleteIfAbandoned set to true', async function () {
await withController(({ controller }) => {
jest.useFakeTimers().setSystemTime(1730798303333);
const MOCK_ID = 'transaction-submitted-1111';
const MOCK_PROPS_TO_UPDATE = {
properties: {
test: 1,
},
};
controller.updateEventFragment(MOCK_ID, MOCK_PROPS_TO_UPDATE);
const resultFragment = controller.state.fragments[MOCK_ID];
const expectedPartialFragment = {
...MOCK_PROPS_TO_UPDATE,
category: 'Transactions',
canDeleteIfAbandoned: true,
id: MOCK_ID,
lastUpdated: 1730798303333,
successEvent: 'Transaction Finalized',
};
expect(resultFragment).toStrictEqual(expectedPartialFragment);
jest.useRealTimers();
});
});
});
});
describe('generateMetaMetricsId', function () {
it('should generate an 0x prefixed hex string', async function () {
await withController(({ controller }) => {
expect(
controller.generateMetaMetricsId().startsWith('0x'),
).toStrictEqual(true);
});
});
});
describe('getMetaMetricsId', function () {
it('should generate or return the metametrics id', async function () {
await withController(
{
options: {
state: {
participateInMetaMetrics: true,
metaMetricsId: null,
},
},
},
({ controller }) => {
// Starts off being empty.
expect(controller.state.metaMetricsId).toStrictEqual(null);
// Create a new metametrics id.
const clientMetaMetricsId = controller.getMetaMetricsId();
expect(clientMetaMetricsId.startsWith('0x')).toStrictEqual(true);
// Return same metametrics id.
const sameMetaMetricsId = controller.getMetaMetricsId();
expect(clientMetaMetricsId).toStrictEqual(sameMetaMetricsId);
},
);
});
});
describe('identify', function () {
it('should call segment.identify for valid traits if user is participating in metametrics', async function () {
const spy = jest.spyOn(segmentMock, 'identify');
await withController(
{
options: {
state: {
participateInMetaMetrics: true,
metaMetricsId: TEST_META_METRICS_ID,
},
},
},
({ controller }) => {
controller.identify({
...MOCK_TRAITS,
...MOCK_INVALID_TRAITS,
});
expect(spy).toHaveBeenCalledTimes(1);
expect(spy).toHaveBeenCalledWith(
{
userId: TEST_META_METRICS_ID,
traits: MOCK_TRAITS,
messageId: Utils.generateRandomId(),
timestamp: new Date(),
},
spy.mock.calls[0][1],
);
},
);
});
it('should transform date type traits into ISO-8601 timestamp strings', async function () {
const spy = jest.spyOn(segmentMock, 'identify');
await withController(
{
options: {
state: {
participateInMetaMetrics: true,
metaMetricsId: TEST_META_METRICS_ID,
},
},
},
({ controller }) => {
controller.identify({
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
test_date: new Date().toISOString(),
} as MetaMetricsUserTraits);
expect(spy).toHaveBeenCalledTimes(1);
expect(spy).toHaveBeenCalledWith(
{
userId: TEST_META_METRICS_ID,
traits: {
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
test_date: new Date().toISOString(),
},
messageId: Utils.generateRandomId(),
timestamp: new Date(),
},
spy.mock.calls[0][1],
);
},
);
});
it('should not call segment.identify if user is not participating in metametrics', async function () {
const spy = jest.spyOn(segmentMock, 'identify');
await withController(
{
options: {
state: {
participateInMetaMetrics: false,
},
},
},
({ controller }) => {
controller.identify(MOCK_TRAITS);
expect(spy).toHaveBeenCalledTimes(0);
},
);
});
it('should not call segment.identify if there are no valid traits to identify', async function () {
const spy = jest.spyOn(segmentMock, 'identify');
await withController(
{
options: {
state: {
participateInMetaMetrics: true,
metaMetricsId: TEST_META_METRICS_ID,
},
},
},
({ controller }) => {
controller.identify(MOCK_INVALID_TRAITS);
expect(spy).toHaveBeenCalledTimes(0);
},
);
});
});
describe('setParticipateInMetaMetrics', function () {
it('should update the value of participateInMetaMetrics', async function () {
await withController(
{
options: {
state: {
participateInMetaMetrics: null,
metaMetricsId: null,
},
},
},
async ({ controller }) => {
expect(controller.state.participateInMetaMetrics).toStrictEqual(null);
await controller.setParticipateInMetaMetrics(true);
expect(controller.state.participateInMetaMetrics).toStrictEqual(true);
await controller.setParticipateInMetaMetrics(false);
expect(controller.state.participateInMetaMetrics).toStrictEqual(
false,
);
},
);
});
it('should generate and update the metaMetricsId when set to true', async function () {
await withController(
{
options: {
state: {
participateInMetaMetrics: null,
metaMetricsId: null,
},
},
},
async ({ controller }) => {
expect(controller.state.metaMetricsId).toStrictEqual(null);
await controller.setParticipateInMetaMetrics(true);
expect(typeof controller.state.metaMetricsId).toStrictEqual('string');
},
);
});
it('should not nullify the metaMetricsId when set to false', async function () {
await withController(async ({ controller }) => {
await controller.setParticipateInMetaMetrics(false);
expect(controller.state.metaMetricsId).toStrictEqual(
TEST_META_METRICS_ID,
);
});
});
it('should nullify the marketingCampaignCookieId when participateInMetaMetrics is toggled off', async function () {
await withController(
{
options: {
state: {
participateInMetaMetrics: true,
metaMetricsId: TEST_META_METRICS_ID,
dataCollectionForMarketing: true,
marketingCampaignCookieId: TEST_GA_COOKIE_ID,
},
},
},
async ({ controller }) => {
expect(controller.state.marketingCampaignCookieId).toStrictEqual(
TEST_GA_COOKIE_ID,
);
await controller.setParticipateInMetaMetrics(false);
expect(controller.state.marketingCampaignCookieId).toStrictEqual(
null,
);
},
);
});
});
describe('trackEvent', function () {
it('should not track an event if user is not participating in metametrics', async function () {
const spy = jest.spyOn(segmentMock, 'track');
await withController(
{
options: {
state: {
participateInMetaMetrics: false,
},
},
},
({ controller }) => {
controller.trackEvent({
event: 'Fake Event',
category: 'Unit Test',
properties: {
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
chain_id: '1',
},
});
expect(spy).toHaveBeenCalledTimes(0);
},
);
});
it('should track an event if user has not opted in, but isOptIn is true', async function () {
await withController(
{
options: {
state: {
participateInMetaMetrics: true,
},
},
},
({ controller }) => {
const spy = jest.spyOn(segmentMock, 'track');
controller.trackEvent(
{
event: 'Fake Event',
category: 'Unit Test',
properties: {
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
chain_id: '1',
},
},
{ isOptIn: true },
);
expect(spy).toHaveBeenCalledTimes(1);
expect(spy).toHaveBeenCalledWith(
{
event: 'Fake Event',
anonymousId: METAMETRICS_ANONYMOUS_ID,
context: DEFAULT_TEST_CONTEXT,
properties: {
...DEFAULT_EVENT_PROPERTIES,
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
chain_id: '1',
},
messageId: Utils.generateRandomId(),
timestamp: new Date(),
},
spy.mock.calls[0][1],
);
},
);
});
it('should track an event during optin and allow for metaMetricsId override', async function () {
await withController(
{
options: {
state: {
participateInMetaMetrics: true,
},
},
},
({ controller }) => {
const spy = jest.spyOn(segmentMock, 'track');
controller.trackEvent(
{
event: 'Fake Event',
category: 'Unit Test',
properties: {
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
chain_id: '1',
},
},
{ isOptIn: true, metaMetricsId: 'TESTID' },
);
expect(spy).toHaveBeenCalledTimes(1);
expect(spy).toHaveBeenCalledWith(
{
event: 'Fake Event',
userId: 'TESTID',
context: DEFAULT_TEST_CONTEXT,
properties: {
...DEFAULT_EVENT_PROPERTIES,
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
chain_id: '1',
},
messageId: Utils.generateRandomId(),
timestamp: new Date(),
},
spy.mock.calls[0][1],
);
},
);
});
it('should track a legacy event', async function () {
await withController(({ controller }) => {
const spy = jest.spyOn(segmentMock, 'track');
controller.trackEvent(
{
event: 'Fake Event',
category: 'Unit Test',
properties: {
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
chain_id: '1',
},
},
{ matomoEvent: true },
);
expect(spy).toHaveBeenCalledTimes(1);
expect(spy).toHaveBeenCalledWith(
{
event: 'Fake Event',
userId: TEST_META_METRICS_ID,
context: DEFAULT_TEST_CONTEXT,
properties: {
...DEFAULT_EVENT_PROPERTIES,
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
legacy_event: true,
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
chain_id: '1',
},
messageId: Utils.generateRandomId(),
timestamp: new Date(),
},
spy.mock.calls[0][1],
);
});
});
it('should track a non legacy event', async function () {
await withController(({ controller }) => {
const spy = jest.spyOn(segmentMock, 'track');
controller.trackEvent({
event: 'Fake Event',
category: 'Unit Test',
properties: {
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
chain_id: '1',
},
});
expect(spy).toHaveBeenCalledTimes(1);
expect(spy).toHaveBeenCalledWith(
{
event: 'Fake Event',
properties: {
...DEFAULT_EVENT_PROPERTIES,
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
chain_id: '1',
},
context: DEFAULT_TEST_CONTEXT,
userId: TEST_META_METRICS_ID,
messageId: Utils.generateRandomId(),
timestamp: new Date(),
},
spy.mock.calls[0][1],
);
});
});
it('should use custom timestamp when provided in event payload', async function () {
await withController(({ controller }) => {
const spy = jest.spyOn(segmentMock, 'track');
const customTimestamp = '2024-01-15T00:00:00.000Z';
controller.trackEvent({
event: 'Fake Event',
category: 'Unit Test',
timestamp: customTimestamp,
properties: {
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
chain_id: '1',
},
});
expect(spy).toHaveBeenCalledTimes(1);
expect(spy).toHaveBeenCalledWith(
{
event: 'Fake Event',
properties: {
...DEFAULT_EVENT_PROPERTIES,
// TODO: Fix in https://github.com/MetaMask/metamask-extension/issues/31860
// eslint-disable-next-line @typescript-eslint/naming-convention
chain_id: '1',
},
context: DEFAULT_TEST_CONTEXT,
userId: TEST_META_METRICS_ID,
messageId: Utils.generateRandomId(),
timestamp: new Date(customTimestamp),
},
spy.mock.calls[0][1],
);
});
});
it('should immediately flush queue if flushImmediately set to true', async function () {
await withController(({ controller }) => {
const spy = jest.spyOn(segmentMock, 'flush');
controller.trackEvent(
{
event: 'Fake Event',
category: 'Unit Test',
},
{ flushImmediately: true },
);
expect(spy).not.toThrow();
});
});
it('should throw if event not provided', async function () {
await withController(({ controller }) => {
expect(() => {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error because we are testing the error case
controller.trackEvent({ category: 'test' });
}).toThrow(/Must specify event\./u);
});
});
it('should throw if provided sensitiveProperties, when excludeMetaMetricsId is true', async function () {
const captureExceptionMock = jest.fn();
await withController(
{
options: {
captureException: captureExceptionMock,
},
},
async ({ controller }) => {
controller.trackEvent(
{
event: 'Fake Event',
category: 'Unit Test',
sensitiveProperties: { foo: 'bar' },
},
{ excludeMetaMetricsId: true },
);
await flushPromises();
expect(captureExceptionMock).toHaveBeenCalledWith(
new Error(
'sensitiveProperties was specified in an event payload that also set the excludeMetaMetricsId flag',
),
);
},
);
});
it('should track sensitiveProperties in a separate, anonymous event', async function () {
await withController(({ controller }) => {
const spy = jest.spyOn(segmentMock, 'track');
controller.trackEvent({
event: 'Fake Event',
category: 'Unit Test',
sensitiveProperties: { foo: 'bar' },
});
expect(spy).toHaveBeenCalledTimes(2);
expect(spy).toHaveBeenCalledWith(
{
event: 'Fake Event',
anonymousId: METAMETRICS_ANONYMOUS_ID,
context: DEFAULT_TEST_CONTEXT,
properties: {
foo: 'bar',
...DEFAULT_EVENT_PROPERTIES,
},
messageId: Utils.generateRandomId(),
timestamp: new Date(),
},
spy.mock.calls[0][1],
);
expect(spy).toHaveBeenCalledWith(
{
event: 'Fake Event',
userId: TEST_META_METRICS_ID,
context: DEFAULT_TEST_CONTEXT,
properties: DEFAULT_EVENT_PROPERTIES,
messageId: Utils.generateRandomId(),
timestamp: new Date(),
},
spy.mock.calls[1][1],
);
});
});
});
describe('Change Signature XXX anonymous event names', function () {
// @ts-expect-error This function is missing from the Mocha type definitions
it.each([
['Signature Requested', 'Signature Requested Anon'],
['Signature Rejected', 'Signature Rejected Anon'],
['Signature Approved', 'Signature Approved Anon'],
])(
'should change "%s" anonymous event names to "%s"',
async (eventType: string, anonEventType: string) => {
await withController(({ controller }) => {
const spy = jest.spyOn(segmentMock, 'track');
controller.trackEvent({
event: eventType,
category: 'Unit Test',
properties: DEFAULT_EVENT_PROPERTIES,
sensitiveProperties: { foo: 'bar' },
});
expect(spy).toHaveBeenCalledTimes(2);
expect(spy.mock.calls[0][0]).toMatchObject({
event: anonEventType,
properties: { foo: 'bar', ...DEFAULT_EVENT_PROPERTIES },
});
expect(spy.mock.calls[1][0]).toMatchObject({
event: eventType,
properties: { ...DEFAULT_EVENT_PROPERTIES },
});
});
},
);
});
describe('Change Transaction XXX anonymous event namnes', function () {
it('should change "Transaction Added" anonymous event names to "Transaction Added Anon"', async function () {
await withController(({ controller }) => {
const spy = jest.spyOn(segmentMock, 'track');
controller.trackEvent({
event: 'Transaction Added',
category: 'Unit Test',
sensitiveProperties: { foo: 'bar' },
});
expect(spy).toHaveBeenCalledTimes(2);
expect(spy).toHaveBeenCalledWith(
{
event: `Transaction Added Anon`,
anonymousId: METAMETRICS_ANONYMOUS_ID,
context: DEFAULT_TEST_CONTEXT,
properties: {
foo: 'bar',