Ghost/ghost/admin/tests/integration/components/settings/navigation/nav-item-test.js
Kevin Ansfield 9fd87f565d Migrated <GhValidationStatusContainer> to {{validation-status}} modifier
no issue

- moved logic from `<GhValidationStatusContainer>` to a new `validation-status` modifier
  - removes a usage of the `ValidationState` mixin
  - migrated uses of the component to a mixin
  - paves the way for full removal of the `ValidationState` mixin in later refactors (mixins are deprecated)
- migrated `<GhFormGroup>` to a glimmer component
  - swapped the extend of `GhValidationStatusContainer` to usage of the `validation-status` modifier with a template-only component
  - updated all `<GhFormGroup>` to use the standard `class=""` instead of `@classNames=""` and `@class=""`
  - allows `data-test-*` attributes to be added to uses of `<FormGroup>` to help when complex components are grouped as a form input
2022-12-09 12:38:35 +00:00

124 lines
5.0 KiB
JavaScript

import NavItem from 'ghost-admin/models/navigation-item';
import hbs from 'htmlbars-inline-precompile';
import {click, find, render, triggerEvent} from '@ember/test-helpers';
import {describe, it} from 'mocha';
import {expect} from 'chai';
import {setupRenderingTest} from 'ember-mocha';
describe('Integration: Component: settings/navigation/nav-item', function () {
setupRenderingTest();
beforeEach(function () {
this.set('baseUrl', 'http://localhost:2368');
});
it('renders', async function () {
this.set('navItem', NavItem.create({label: 'Test', url: '/url'}));
await render(hbs`<Settings::Navigation::NavItem @navItem={{this.navItem}} @baseUrl={{this.baseUrl}} />`);
let item = find('.gh-blognav-item');
expect(item.querySelector('.gh-blognav-grab'), 'grab').to.exist;
expect(item.querySelector('.gh-blognav-label'), 'label').to.exist;
expect(item.querySelector('.gh-blognav-url'), 'url').to.exist;
expect(item.querySelector('.gh-blognav-delete'), 'delete').to.exist;
// doesn't show any errors
expect(find('.gh-blognav-item--error')).to.not.exist;
expect(find('.error')).to.not.exist;
expect(find('.response')).to.not.be.displayed;
});
it('doesn\'t show drag handle for new items', async function () {
this.set('navItem', NavItem.create({label: 'Test', url: '/url', isNew: true}));
await render(hbs`<Settings::Navigation::NavItem @navItem={{this.navItem}} @baseUrl={{this.baseUrl}} />`);
let item = find('.gh-blognav-item');
expect(item.querySelector('.gh-blognav-grab')).to.not.exist;
});
it('shows add button for new items', async function () {
this.set('navItem', NavItem.create({label: 'Test', url: '/url', isNew: true}));
await render(hbs`<Settings::Navigation::NavItem @navItem={{this.navItem}} @baseUrl={{this.baseUrl}} />`);
let item = find('.gh-blognav-item');
expect(item.querySelector('.gh-blognav-add')).to.exist;
expect(item.querySelector('.gh-blognav-delete')).to.not.exist;
});
it('triggers delete action', async function () {
this.set('navItem', NavItem.create({label: 'Test', url: '/url'}));
let deleteActionCallCount = 0;
this.set('deleteItem', (navItem) => {
expect(navItem).to.equal(this.navItem);
deleteActionCallCount += 1;
});
await render(hbs`<Settings::Navigation::NavItem @navItem={{this.navItem}} @baseUrl={{this.baseUrl}} @deleteItem={{this.deleteItem}} />`);
await click('.gh-blognav-delete');
expect(deleteActionCallCount).to.equal(1);
});
it('triggers add action', async function () {
this.set('navItem', NavItem.create({label: 'Test', url: '/url', isNew: true}));
let addActionCallCount = 0;
this.set('add', () => {
addActionCallCount += 1;
});
await render(hbs`<Settings::Navigation::NavItem @navItem={{this.navItem}} @baseUrl={{this.baseUrl}} @addItem={{this.add}} />`);
await click('.gh-blognav-add');
expect(addActionCallCount).to.equal(1);
});
it('triggers update url action', async function () {
this.set('navItem', NavItem.create({label: 'Test', url: '/url'}));
let updateActionCallCount = 0;
this.set('update', (value) => {
updateActionCallCount += 1;
return value;
});
await render(hbs`<Settings::Navigation::NavItem @navItem={{this.navItem}} @baseUrl={{this.baseUrl}} @updateUrl={{this.update}} />`);
await triggerEvent('.gh-blognav-url input', 'blur');
expect(updateActionCallCount).to.equal(1);
});
it('triggers update label action', async function () {
this.set('navItem', NavItem.create({label: 'Test', url: '/url'}));
let updateActionCallCount = 0;
this.set('update', (value) => {
updateActionCallCount += 1;
return value;
});
await render(hbs`<Settings::Navigation::NavItem @navItem={{this.navItem}} @baseUrl={{this.baseUrl}} @updateLabel={{this.update}} />`);
await triggerEvent('.gh-blognav-label input', 'blur');
expect(updateActionCallCount).to.equal(2);
});
it('displays inline errors', async function () {
this.set('navItem', NavItem.create({label: '', url: ''}));
this.navItem.validate();
await render(hbs`<Settings::Navigation::NavItem @navItem={{this.navItem}} @baseUrl={{this.baseUrl}} />`);
let item = find('.gh-blognav-item');
expect(item).to.have.class('gh-blognav-item--error');
expect(item.querySelector('.gh-blognav-label')).to.have.class('error');
expect(item.querySelector('.gh-blognav-label .response')).to.have.trimmed.text('You must specify a label');
expect(item.querySelector('.gh-blognav-url')).to.have.class('error');
expect(item.querySelector('.gh-blognav-url .response')).to.have.trimmed.text('You must specify a URL or relative path');
});
});