@@ -382,6 +382,10 @@ module('Integration | Identifiers - configuration', function (hooks) {
382
382
if ( bucket !== 'record' ) {
383
383
throw new Error ( 'Test cannot generate an lid for a non-record' ) ;
384
384
}
385
+ if ( typeof resource === 'object' && resource !== null && 'lid' in resource && typeof resource . lid === 'string' ) {
386
+ generateLidCalls ++ ;
387
+ return resource . lid ;
388
+ }
385
389
if ( typeof resource !== 'object' || resource === null || ! ( 'type' in resource ) ) {
386
390
throw new Error ( 'Test cannot generate an lid for a non-object' ) ;
387
391
}
@@ -393,12 +397,12 @@ module('Integration | Identifiers - configuration', function (hooks) {
393
397
return `${ resource . type } :${ resource . id } ` ;
394
398
} ) ;
395
399
let forgetMethodCalls = 0 ;
396
- // eslint-disable-next-line prefer-const
400
+
397
401
let expectedIdentifier ;
398
402
399
403
let testMethod = ( identifier ) => {
400
404
forgetMethodCalls ++ ;
401
- assert . strictEqual ( expectedIdentifier , identifier , `We forgot the expected identifier ${ expectedIdentifier } ` ) ;
405
+ assert . strictEqual ( identifier , expectedIdentifier , `We forgot the expected identifier ${ expectedIdentifier } ` ) ;
402
406
} ;
403
407
404
408
setIdentifierForgetMethod ( ( identifier ) => {
@@ -434,7 +438,11 @@ module('Integration | Identifiers - configuration', function (hooks) {
434
438
const finalUserByIdIdentifier = recordIdentifierFor ( userById ) ;
435
439
436
440
assert . strictEqual ( generateLidCalls , 2 , 'We generated no new lids when we looked up the originals' ) ;
437
- assert . strictEqual ( store . identifierCache . _cache . resources . size , 1 , 'We now have only 1 identifier in the cache' ) ;
441
+ assert . strictEqual (
442
+ store . identifierCache . _cache . resources . size ,
443
+ 2 ,
444
+ 'We keep a back reference identifier in the cache'
445
+ ) ;
438
446
assert . strictEqual ( forgetMethodCalls , 1 , 'We abandoned an identifier' ) ;
439
447
440
448
assert . notStrictEqual (
@@ -453,6 +461,36 @@ module('Integration | Identifiers - configuration', function (hooks) {
453
461
'We are using the identifier by id for the result of findRecord with username'
454
462
) ;
455
463
464
+ const recordA = store . peekRecord ( { lid : finalUserByUsernameIdentifier . lid } ) ;
465
+ const recordB = store . peekRecord ( { lid : finalUserByIdIdentifier . lid } ) ;
466
+ const recordC = store . peekRecord ( { lid : originalUserByUsernameIdentifier . lid } ) ;
467
+ const recordD = store . peekRecord ( 'user' , '@runspired' ) ;
468
+ const recordE = store . peekRecord ( 'user' , '1' ) ;
469
+
470
+ assert . strictEqual ( recordA , recordB , 'We have a single record for both identifiers' ) ;
471
+ assert . strictEqual ( recordA , recordC , 'We have a single record for both identifiers' ) ;
472
+ assert . strictEqual ( recordA , recordD , 'We have a single record for both identifiers' ) ;
473
+ assert . strictEqual ( recordA , recordE , 'We have a single record for both identifiers' ) ;
474
+
475
+ const regeneratedIdentifier = store . identifierCache . getOrCreateRecordIdentifier ( {
476
+ lid : finalUserByUsernameIdentifier . lid ,
477
+ } ) ;
478
+ const regeneratedIdentifier2 = store . identifierCache . getOrCreateRecordIdentifier ( {
479
+ id : '@runspired' ,
480
+ type : 'user' ,
481
+ } ) ;
482
+ assert . strictEqual ( regeneratedIdentifier , finalUserByUsernameIdentifier , 'We regenerate the same identifier' ) ;
483
+ assert . strictEqual ( regeneratedIdentifier2 , finalUserByUsernameIdentifier , 'We regenerate the same identifier' ) ;
484
+
485
+ expectedIdentifier = finalUserByIdIdentifier ;
486
+ store . unloadRecord ( recordA ) ;
487
+ await settled ( ) ;
488
+ assert . strictEqual (
489
+ store . identifierCache . _cache . resources . size ,
490
+ 0 ,
491
+ 'We have no identifiers or backreferences in the cache'
492
+ ) ;
493
+
456
494
// end test before store teardown
457
495
testMethod = ( ) => { } ;
458
496
} ) ;
0 commit comments