mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
node-cache: added tests
This commit is contained in:
@@ -0,0 +1,98 @@
|
||||
/// <reference path="./node-cache.d.ts" />
|
||||
|
||||
import NodeCache = require('node-cache');
|
||||
|
||||
import Options = NodeCacheTypes.Options;
|
||||
import Stats = NodeCacheTypes.Stats;
|
||||
import Callback = NodeCacheTypes.Callback;
|
||||
|
||||
interface TypeSample {
|
||||
a: number;
|
||||
b: string;
|
||||
c: boolean;
|
||||
}
|
||||
|
||||
{
|
||||
let options: Options;
|
||||
let cache: NodeCacheTypes.NodeCache;
|
||||
cache = new NodeCache();
|
||||
cache = new NodeCache(options);
|
||||
}
|
||||
|
||||
{
|
||||
let cache: NodeCache;
|
||||
let key: string;
|
||||
let cb: Callback<TypeSample>;
|
||||
let result: TypeSample;
|
||||
result = cache.get<TypeSample>(key);
|
||||
result = cache.get<TypeSample>(key, cb);
|
||||
}
|
||||
|
||||
{
|
||||
let cache: NodeCache;
|
||||
let keys: string[];
|
||||
let cb: Callback<{[key: string]: TypeSample}>;
|
||||
let result: {[key: string]: TypeSample};
|
||||
result = cache.mget<TypeSample>(keys);
|
||||
result = cache.mget<TypeSample>(keys, cb);
|
||||
}
|
||||
|
||||
{
|
||||
let cache: NodeCache;
|
||||
let key: string;
|
||||
let value: TypeSample;
|
||||
let ttl: number|string;
|
||||
let cb: Callback<boolean>;
|
||||
let result: boolean;
|
||||
result = cache.set<TypeSample>(key, value);
|
||||
result = cache.set<TypeSample>(key, value, ttl);
|
||||
result = cache.set<TypeSample>(key, value, ttl, cb);
|
||||
result = cache.set<TypeSample>(key, value, cb);
|
||||
}
|
||||
|
||||
{
|
||||
let cache: NodeCache;
|
||||
let keys: string|string[];
|
||||
let cb: Callback<number>;
|
||||
let result: number;
|
||||
result = cache.del(keys);
|
||||
result = cache.del(keys, cb);
|
||||
}
|
||||
|
||||
{
|
||||
let cache: NodeCache;
|
||||
let key: string;
|
||||
let ttl: number;
|
||||
let cb: Callback<boolean>;
|
||||
let result: boolean;
|
||||
result = cache.ttl(key);
|
||||
result = cache.ttl(key, ttl);
|
||||
result = cache.ttl(key, ttl, cb);
|
||||
result = cache.ttl(key, cb);
|
||||
}
|
||||
|
||||
{
|
||||
let cache: NodeCache;
|
||||
let cb: Callback<string[]>;
|
||||
let result: string[];
|
||||
result = cache.keys();
|
||||
result = cache.keys(cb);
|
||||
}
|
||||
|
||||
{
|
||||
let cache: NodeCache;
|
||||
let result: Stats;
|
||||
result = cache.getStats();
|
||||
}
|
||||
|
||||
{
|
||||
let cache: NodeCache;
|
||||
let result: void;
|
||||
result = cache.flushAll();
|
||||
}
|
||||
|
||||
{
|
||||
let cache: NodeCache;
|
||||
let result: void;
|
||||
result = cache.close();
|
||||
}
|
||||
Reference in New Issue
Block a user