all-contributors-cli/lib/generate/format-contributor.test.js

52 lines
1.9 KiB
JavaScript
Raw Normal View History

2016-03-01 22:30:14 +00:00
import test from 'ava';
import _ from 'lodash/fp';
2016-05-05 14:27:26 +00:00
import formatContributor from './format-contributor';
2016-03-01 22:30:14 +00:00
import contributors from './fixtures/contributors.json';
function fixtures() {
const options = {
projectOwner: 'jfmengels',
projectName: 'all-contributors-cli',
imageSize: 150
2016-03-01 22:30:14 +00:00
};
return {options};
}
test('should format a simple contributor', t => {
2016-03-06 23:20:24 +00:00
const contributor = _.assign(contributors.kentcdodds, {contributions: ['review']});
2016-03-01 22:30:14 +00:00
const {options} = fixtures();
const expected = '[<img src="https://avatars1.githubusercontent.com/u/1500684" width="150px;"/><br /><sub>Kent C. Dodds</sub>](http://kentcdodds.com)<br />👀';
2016-03-01 22:30:14 +00:00
t.is(formatContributor(options, contributor), expected);
});
test('should format contributor with complex contribution types', t => {
const contributor = contributors.kentcdodds;
const {options} = fixtures();
const expected = '[<img src="https://avatars1.githubusercontent.com/u/1500684" width="150px;"/><br /><sub>Kent C. Dodds</sub>](http://kentcdodds.com)<br />[📖](https://github.com/jfmengels/all-contributors-cli/commits?author=kentcdodds) 👀 💬';
2016-03-01 22:30:14 +00:00
t.is(formatContributor(options, contributor), expected);
});
test('should format contributor using custom template', t => {
const contributor = contributors.kentcdodds;
const {options} = fixtures();
2016-03-06 23:20:24 +00:00
options.contributorTemplate = '<%= contributor.name %> is awesome!';
2016-03-01 22:30:14 +00:00
const expected = 'Kent C. Dodds is awesome!';
t.is(formatContributor(options, contributor), expected);
});
test('should default image size to 100', t => {
const contributor = _.assign(contributors.kentcdodds, {contributions: ['review']});
const {options} = fixtures();
delete options.imageSize;
const expected = '[<img src="https://avatars1.githubusercontent.com/u/1500684" width="100px;"/><br /><sub>Kent C. Dodds</sub>](http://kentcdodds.com)<br />👀';
t.is(formatContributor(options, contributor), expected);
2016-03-01 22:30:14 +00:00
});