forked from stipsan/ioredis-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement ltrim command (stipsan#709)
- Loading branch information
Showing
4 changed files
with
98 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
export function ltrim(key, s, e) { | ||
if (this.data.has(key) && !(this.data.get(key) instanceof Array)) { | ||
throw new Error(`Key ${key} does not contain a list`); | ||
} | ||
let start = parseInt(s, 10); | ||
let end = parseInt(e, 10); | ||
|
||
const list = this.data.get(key) || []; | ||
|
||
if (start < 0) { | ||
start = list.length + start; | ||
} | ||
if (end < 0) { | ||
end = list.length + end; | ||
} | ||
|
||
this.data.set(key, list.slice(start, end + 1)); | ||
return 'OK'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
import expect from 'expect'; | ||
|
||
import MockRedis from '../../src'; | ||
|
||
describe('ltrim', () => { | ||
it('should return first 3 items', () => { | ||
const redis = new MockRedis({ | ||
data: { | ||
foo: ['1', '2', '3', '4', '5'], | ||
}, | ||
}); | ||
|
||
return Promise.all([ | ||
redis.ltrim('foo', 0, 2).then(res => expect(res).toEqual('OK')), | ||
redis | ||
.lrange('foo', 0, -1) | ||
.then(res => expect(res).toEqual(['1', '2', '3'])), | ||
]); | ||
}); | ||
|
||
it('should return last 3 items', () => { | ||
const redis = new MockRedis({ | ||
data: { | ||
foo: ['1', '2', '3', '4', '5'], | ||
}, | ||
}); | ||
|
||
return Promise.all([ | ||
redis.ltrim('foo', -3, -1).then(res => expect(res).toEqual('OK')), | ||
redis | ||
.lrange('foo', 0, -1) | ||
.then(res => expect(res).toEqual(['3', '4', '5'])), | ||
]); | ||
}); | ||
|
||
it('should return last all items on larger numbers', () => { | ||
const redis = new MockRedis({ | ||
data: { | ||
foo: ['1', '2', '3', '4', '5'], | ||
}, | ||
}); | ||
|
||
return Promise.all([ | ||
redis.ltrim('foo', 0, 100).then(res => expect(res).toEqual('OK')), | ||
redis | ||
.lrange('foo', 0, -1) | ||
.then(res => expect(res).toEqual(['1', '2', '3', '4', '5'])), | ||
]); | ||
}); | ||
|
||
it('should return empty array if out-of-range', () => { | ||
const redis = new MockRedis({ | ||
data: { | ||
foo: ['1', '2', '3', '4', '5'], | ||
}, | ||
}); | ||
|
||
return Promise.all([ | ||
redis.ltrim('foo', 10, 100).then(res => expect(res).toEqual('OK')), | ||
redis.lrange('foo', 0, -1).then(res => expect(res).toEqual([])), | ||
]); | ||
}); | ||
|
||
it('should throw an exception if the key contains something other than a list', () => { | ||
const redis = new MockRedis({ | ||
data: { | ||
foo: 'not a list', | ||
}, | ||
}); | ||
|
||
return redis | ||
.ltrim('foo', 0, 2) | ||
.catch(err => | ||
expect(err.message).toBe('Key foo does not contain a list') | ||
); | ||
}); | ||
}); |