mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
fcb9b87884
refs https://github.com/TryGhost/Ghost/issues/10318 - API has been updated to still work with `active_timezone` for backwards compatibility but it makes sense for the client to match the underlying settings keys
66 lines
2.5 KiB
JavaScript
66 lines
2.5 KiB
JavaScript
import hbs from 'htmlbars-inline-precompile';
|
|
import sinon from 'sinon';
|
|
import {blur, fillIn, find, findAll, render} from '@ember/test-helpers';
|
|
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {setupRenderingTest} from 'ember-mocha';
|
|
|
|
describe('Integration: Component: gh-timezone-select', function () {
|
|
setupRenderingTest();
|
|
|
|
beforeEach(function () {
|
|
this.set('availableTimezones', [
|
|
{name: 'Pacific/Pago_Pago', label: '(GMT -11:00) Midway Island, Samoa'},
|
|
{name: 'Etc/UTC', label: '(GMT) UTC'},
|
|
{name: 'Pacific/Kwajalein', label: '(GMT +12:00) International Date Line West'}
|
|
]);
|
|
this.set('timezone', 'Etc/UTC');
|
|
});
|
|
|
|
it('renders', async function () {
|
|
await render(hbs`{{gh-timezone-select
|
|
availableTimezones=availableTimezones
|
|
timezone=timezone}}`);
|
|
|
|
expect(this.element, 'top-level elements').to.exist;
|
|
expect(findAll('option'), 'number of options').to.have.length(3);
|
|
expect(find('select').value, 'selected option value').to.equal('Etc/UTC');
|
|
});
|
|
|
|
it('handles an unknown timezone', async function () {
|
|
this.set('timezone', 'Europe/London');
|
|
|
|
await render(hbs`{{gh-timezone-select
|
|
availableTimezones=availableTimezones
|
|
timezone=timezone}}`);
|
|
|
|
// we have an additional blank option at the top
|
|
expect(findAll('option'), 'number of options').to.have.length(4);
|
|
// blank option is selected
|
|
expect(find('select').value, 'selected option value').to.equal('');
|
|
// we indicate the manual override
|
|
expect(find('p').textContent).to.match(/Your timezone has been automatically set to Europe\/London/);
|
|
});
|
|
|
|
it('triggers update action on change', async function () {
|
|
let update = sinon.spy();
|
|
this.set('update', update);
|
|
|
|
await render(hbs`{{gh-timezone-select
|
|
availableTimezones=availableTimezones
|
|
timezone=timezone
|
|
update=(action update)}}`);
|
|
|
|
await fillIn('select', 'Pacific/Pago_Pago');
|
|
await blur('select');
|
|
|
|
expect(update.calledOnce, 'update was called once').to.be.true;
|
|
expect(update.firstCall.args[0].name, 'update was passed new timezone')
|
|
.to.equal('Pacific/Pago_Pago');
|
|
});
|
|
|
|
// TODO: mock clock service, fake the time, test we have the correct
|
|
// local time and it changes alongside selection changes
|
|
it('renders local time');
|
|
});
|