Skip to content

binlist/data #306

@Sahelshiha

Description

@Sahelshiha

'use strict';

var test = require('tape');
var AsyncCache = require('async-cache');
var bl = require('./');

var bin = '45717360';
var result = {
number: {
length: 16,
luhn: true
},
scheme: 'visa',
type: 'debit',
brand: 'Visa/Dankort',
prepaid: false,
country: {
numeric: '208',
alpha2: 'DK',
name: 'Denmark',
emoji: '🇩🇰',
currency: 'DKK',
latitude: 56,
longitude: 10
},
bank: {
name: 'Jyske Bank',
url: 'www.jyskebank.dk',
phone: '+4589893300',
city: 'Hjørring'
}
};

test(function( t ){
t.plan(4);

var b = bl();

b(bin, function( err, r ){
	t.notOk(err);
	t.deepEqual(r, result);
});

b('bad', function( err, r ){
	t.ok(err);
	t.notOk(r);
});

});

test('using promises', function( t ){
t.plan(2);

var b = bl();

b(bin).then(function( r ){
	t.deepEqual(r, result);
});

b('bad').catch(function( err ){
	t.ok(err);
});

});

test('with a key', { skip: !process.env.KEY }, function( t ){
t.plan(4);

var b = bl(process.env.KEY);

b(bin, function( err, r ){
	t.notOk(err);
	t.deepEqual(r, result);
});

b('bad', function( err, r ){
	t.ok(err);
	t.notOk(r);
});

});

test('using async cache', function( t ){
t.plan(4);

var cache = new AsyncCache({
	load: bl(),
});

cache.get(bin, function( err, r ){
	t.notOk(err);
	t.deepEqual(r, result);
});

cache.get('bad', function( err, r ){
	t.ok(err);
	t.notOk(r);
});

});

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions