mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
753681e9e9
no issue - standardize on "{TestType}: {ModuleType}: {module-name}" for test description strings - standardize on `{module-name}-test.js` for test file names - fix deprecation notices for ember component unit tests without explicit `unit: test` or `needs: []`
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
/* jshint expr:true */
|
|
/* global md5 */
|
|
import { expect } from 'chai';
|
|
import {
|
|
describeComponent,
|
|
it
|
|
} from 'ember-mocha';
|
|
|
|
describeComponent(
|
|
'gh-profile-image',
|
|
'Unit: Component: gh-profile-image',
|
|
{
|
|
unit: true,
|
|
needs: ['service:ghost-paths']
|
|
},
|
|
function () {
|
|
it('renders', function () {
|
|
// creates the component instance
|
|
var component = this.subject();
|
|
expect(component._state).to.equal('preRender');
|
|
|
|
// renders the component on the page
|
|
this.render();
|
|
expect(component._state).to.equal('inDOM');
|
|
});
|
|
it('renders the gravatar image background if email is supplied', function () {
|
|
var component = this.subject(),
|
|
testEmail = 'test@example.com',
|
|
style, size;
|
|
|
|
component.set('email', testEmail);
|
|
this.render();
|
|
|
|
size = component.get('size');
|
|
|
|
style = 'url(http://www.gravatar.com/avatar/' + md5(testEmail) + '?s=' + size + '&d=blank)';
|
|
|
|
expect(component.$('#account-image').css('background-image')).to.equal(style);
|
|
});
|
|
it('doesn\'t render the gravatar image background if email isn\'t supplied', function () {
|
|
var component = this.subject();
|
|
|
|
this.render();
|
|
|
|
expect(component.$('#account-image').length).to.equal(0);
|
|
});
|
|
}
|
|
);
|