2015-10-26 14:48:38 +03:00
|
|
|
/* jshint expr:true */
|
|
|
|
/* global md5 */
|
|
|
|
import { expect } from 'chai';
|
|
|
|
import {
|
|
|
|
describeComponent,
|
|
|
|
it
|
|
|
|
} from 'ember-mocha';
|
|
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
|
|
import Ember from 'ember';
|
|
|
|
|
2015-10-28 14:36:45 +03:00
|
|
|
const {run} = Ember;
|
|
|
|
|
|
|
|
let pathsStub = Ember.Service.extend({
|
|
|
|
url: {
|
|
|
|
api() {
|
|
|
|
return '';
|
|
|
|
},
|
|
|
|
asset(src) {
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2015-10-26 14:48:38 +03:00
|
|
|
|
|
|
|
describeComponent(
|
|
|
|
'gh-profile-image',
|
|
|
|
'Integration: Component: gh-profile-image',
|
|
|
|
{
|
|
|
|
integration: true
|
|
|
|
},
|
|
|
|
function () {
|
|
|
|
beforeEach(function () {
|
|
|
|
this.register('service:ghost-paths', pathsStub);
|
|
|
|
this.inject.service('ghost-paths', {as: 'ghost-paths'});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders', function () {
|
|
|
|
this.set('email', '');
|
|
|
|
|
|
|
|
this.render(hbs`
|
|
|
|
{{gh-profile-image email=email}}
|
|
|
|
`);
|
|
|
|
|
|
|
|
expect(this.$()).to.have.length(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('immediately renders the gravatar if valid email supplied', function () {
|
2015-10-28 14:36:45 +03:00
|
|
|
let email = 'test@example.com';
|
|
|
|
let expectedUrl = `http://www.gravatar.com/avatar/${md5(email)}?s=100&d=blank`;
|
2015-10-26 14:48:38 +03:00
|
|
|
|
|
|
|
this.set('email', email);
|
|
|
|
|
|
|
|
this.render(hbs`
|
|
|
|
{{gh-profile-image email=email size=100 debounce=300}}
|
|
|
|
`);
|
|
|
|
|
|
|
|
expect(this.$('.gravatar-img').attr('style'), 'gravatar image style')
|
|
|
|
.to.equal(`background-image: url(${expectedUrl})`);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('throttles gravatar loading as email is changed', function (done) {
|
2015-10-28 14:36:45 +03:00
|
|
|
let email = 'test@example.com';
|
|
|
|
let expectedUrl = `http://www.gravatar.com/avatar/${md5(email)}?s=100&d=blank`;
|
2015-10-26 14:48:38 +03:00
|
|
|
|
|
|
|
this.set('email', 'test');
|
|
|
|
|
|
|
|
this.render(hbs`
|
|
|
|
{{gh-profile-image email=email size=100 debounce=300}}
|
|
|
|
`);
|
|
|
|
|
|
|
|
expect(this.$('.gravatar-img').length, '.gravatar-img not shown for invalid email')
|
|
|
|
.to.equal(0);
|
|
|
|
|
|
|
|
run(() => {
|
|
|
|
this.set('email', email);
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(this.$('.gravatar-img').length, '.gravatar-img not immediately changed on email change')
|
|
|
|
.to.equal(0);
|
|
|
|
|
|
|
|
Ember.run.later(this, function () {
|
|
|
|
expect(this.$('.gravatar-img').length, '.gravatar-img still not shown before throttle timeout')
|
|
|
|
.to.equal(0);
|
|
|
|
}, 250);
|
|
|
|
|
|
|
|
Ember.run.later(this, function () {
|
|
|
|
expect(this.$('.gravatar-img').attr('style'), '.gravatar-img style after timeout')
|
|
|
|
.to.equal(`background-image: url(${expectedUrl})`);
|
|
|
|
done();
|
|
|
|
}, 400);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|