Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix($cacheFactory) return undefined when removing non-existent cache ent... #1562

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/ng/cacheFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ function $CacheFactoryProvider() {
remove: function(key) {
var lruEntry = lruHash[key];

if (!lruEntry) return;

if (lruEntry == freshEnd) freshEnd = lruEntry.p;
if (lruEntry == staleEnd) staleEnd = lruEntry.n;
link(lruEntry.n,lruEntry.p);
Expand Down
4 changes: 4 additions & 0 deletions test/ng/cacheFactorySpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ describe('$cacheFactory', function() {
expect(cache.get('k2')).toBeUndefined();
}));

it('should return undefined when entry does not exist', inject(function($cacheFactory) {
expect(cache.remove('non-existent')).toBeUndefined();
}));


it('should stringify keys', inject(function($cacheFactory) {
cache.put('123', 'foo');
Expand Down