mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-10 05:56:29 +00:00
28eb16dea1
* Added exception handling when github returns 200s that have hit rate-limiting * Hardened the error check a bit
70 lines
2 KiB
JavaScript
70 lines
2 KiB
JavaScript
import test from 'ava';
|
|
import nock from 'nock';
|
|
import getUserInfo from './github';
|
|
|
|
test('should handle errors', t => {
|
|
nock('https://api.github.com')
|
|
.get('/users/nodisplayname')
|
|
.replyWithError(404);
|
|
|
|
return t.throws(getUserInfo('nodisplayname'));
|
|
});
|
|
|
|
test('should handle github errors', t => {
|
|
nock('https://api.github.com')
|
|
.get('/users/nodisplayname')
|
|
.reply(200, {
|
|
message: 'API rate limit exceeded for 0.0.0.0. (But here\'s the good news: Authenticated requests get a higher rate limit. Check out the documentation for more details.)',
|
|
documentation_url: 'https://developer.github.com/v3/#rate-limiting'
|
|
});
|
|
|
|
return t.throws(getUserInfo('nodisplayname'));
|
|
});
|
|
|
|
test('should fill in the name when null is returned', t => {
|
|
nock('https://api.github.com')
|
|
.get('/users/nodisplayname')
|
|
.reply(200, {
|
|
login: 'nodisplayname',
|
|
name: null,
|
|
avatar_url: 'https://avatars2.githubusercontent.com/u/3869412?v=3&s=400',
|
|
html_url: 'https://github.com/nodisplayname'
|
|
});
|
|
|
|
return getUserInfo('nodisplayname')
|
|
.then(info => {
|
|
t.is(info.name, 'nodisplayname');
|
|
});
|
|
});
|
|
|
|
test('should fill in the name when an empty string is returned', t => {
|
|
nock('https://api.github.com')
|
|
.get('/users/nodisplayname')
|
|
.reply(200, {
|
|
login: 'nodisplayname',
|
|
name: '',
|
|
avatar_url: 'https://avatars2.githubusercontent.com/u/3869412?v=3&s=400',
|
|
html_url: 'https://github.com/nodisplayname'
|
|
});
|
|
|
|
return getUserInfo('nodisplayname')
|
|
.then(info => {
|
|
t.is(info.name, 'nodisplayname');
|
|
});
|
|
});
|
|
|
|
test('should append http when no absolute link is provided', t => {
|
|
nock('https://api.github.com')
|
|
.get('/users/nodisplayname')
|
|
.reply(200, {
|
|
login: 'nodisplayname',
|
|
name: '',
|
|
avatar_url: 'https://avatars2.githubusercontent.com/u/3869412?v=3&s=400',
|
|
html_url: 'www.github.com/nodisplayname'
|
|
});
|
|
|
|
return getUserInfo('nodisplayname')
|
|
.then(info => {
|
|
t.is(info.profile, 'http://www.github.com/nodisplayname');
|
|
});
|
|
});
|