Swap-Aggregator-Subgraph/node_modules/pull-stream/test/find.js
Richa-iitr d211083153 Revert "Revert "added handler""
This reverts commit c36ee8c5ca.
2022-07-03 07:30:05 +05:30

80 lines
1.4 KiB
JavaScript

var pull = require('../')
var test = require('tape')
test('find 7', function (t) {
pull(
pull.values([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]),
pull.find(function (d) {
return d == 7
}, function (err, seven) {
t.equal(seven, 7)
t.notOk(err)
t.end()
})
)
})
var target = Math.random()
test('find ' + target, function (t) {
var f = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10].map(Math.random)
f.push(target)
pull(
pull.values(f.sort()),
pull.find(function (d) {
return d == target
}, function (err, found) {
t.equal(found, target)
t.notOk(err)
t.end()
})
)
})
test('find missing', function (t) {
var f = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
pull(
pull.values(f.sort()),
pull.find(function (d) {
return d == target
}, function (err, found) {
t.equal(found, null)
t.notOk(err)
t.end()
})
)
})
test('there can only be one', function (t) {
pull(
pull.values([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]),
pull.asyncMap(function (e, cb) {
process.nextTick(function () {
cb(null, e)
})
}),
pull.find(function (d) {
return d >= 7
}, function (err, seven) {
t.equal(seven, 7)
t.notOk(err)
t.end()
})
)
})
test('find null', function (t) {
pull(
pull.values([1, 2, 3, 4, 5, 6, 7, 8, 9, 10]),
pull.find(null, function (err, first) {
t.equal(first, 1)
t.notOk(err)
t.end()
})
)
})