Ghost/test/unit/server/lib/image/gravatar.test.js
Hannah Wolfe 9e96b04542
Moved server unit tests into the server folder
- this is a small part of a bit of cleanup of our test files
- the goal is to make the existing tests clearer with a view to making it easier to write more tests
- this makes the test structure follow the codebase structure more closely
- eventually we will colocate the tests as we break the codebase down further
2021-10-06 12:01:09 +01:00

45 lines
1.4 KiB
JavaScript

const should = require('should');
const Gravatar = require('../../../../../core/server/lib/image/gravatar');
describe('lib/image: gravatar', function () {
it('can successfully lookup a gravatar url', function (done) {
const gravatar = new Gravatar({config: {
isPrivacyDisabled: () => false
}, request: () => {}});
gravatar.lookup({email: 'exists@example.com'}).then(function (result) {
should.exist(result);
should.exist(result.image);
result.image.should.eql('//www.gravatar.com/avatar/ef6dcde5c99bb8f685dd451ccc3e050a?s=250&d=mm&r=x');
done();
}).catch(done);
});
it('can handle a non existant gravatar', function (done) {
const gravatar = new Gravatar({config: {
isPrivacyDisabled: () => false
}, request: () => {
return Promise.reject({statusCode: 404});
}});
gravatar.lookup({email: 'invalid@example.com'}).then(function (result) {
should.exist(result);
should.not.exist(result.image);
done();
}).catch(done);
});
it('will timeout', function () {
const delay = 42;
const gravatar = new Gravatar({config: {
isPrivacyDisabled: () => false
}, request: (url, options) => {
options.timeout.should.eql(delay);
}});
gravatar.lookup({email: 'exists@example.com'}, delay);
});
});