prray
Version:
'Promisified' Array, comes with async method supports(such as mapAsync). And it is compatible with normal array.
53 lines (38 loc) • 1.75 kB
text/typescript
import test from 'ava'
import { prray } from '../src/prray'
import { toPrrayPromise } from './test-utils'
const func1 = (pre, c) => pre + c
const func2 = (pre, c) => {
pre.push(c + 1)
return pre
}
test('prray reduce 1', async t => {
const p = prray([1, 2, 3])
// FIXME: 无法确定 reduce 的结果是不是数组,应该让 PrrayPromise 处理和兼容非数组的情况?
// t.true(p.reduce(func1) instanceof PrrayPromise)
// t.true(p.reduce(funcAsync1) instanceof PrrayPromise)
t.deepEqual(p.reduce(func1), [1, 2, 3].reduce(func1))
t.deepEqual(p.reduce(func1, 10), [1, 2, 3].reduce(func1, 10))
})
test('prray reduce 2', async t => {
const p = prray([1, 2, 3])
// t.true(p.reduce(func2, []) instanceof PrrayPromise)
// t.true(p.reduce(funcAsync2, []) instanceof PrrayPromise)
t.deepEqual(p.reduce(func2, []), [1, 2, 3].reduce(func2, []))
t.deepEqual(p.reduce(func2, []), [1, 2, 3].reduce(func2, []))
})
test('prraypromise reduce 1', async t => {
const pp = toPrrayPromise([1, 2, 3])
// FIXME: 无法确定 reduce 的结果是不是数组,应该让 PrrayPromise 处理和兼容非数组的情况?
// t.true(pp.reduce(func1) instanceof PrrayPromise)
// t.true(pp.reduce(funcAsync1) instanceof PrrayPromise)
t.deepEqual(await pp.reduce(func1), [1, 2, 3].reduce(func1))
t.deepEqual(await pp.reduce(func1, 10), [1, 2, 3].reduce(func1, 10))
})
test('prraypromise reduce 2', async t => {
const pp = toPrrayPromise([1, 2, 3])
// t.true(pp.reduce(func2, []) instanceof PrrayPromise)
// t.true(pp.reduce(funcAsync2, []) instanceof PrrayPromise)
t.deepEqual(await pp.reduce(func2, []), [1, 2, 3].reduce(func2, []))
t.deepEqual(await pp.reduce(func2, []), [1, 2, 3].reduce(func2, []))
})