55 lines
2.0 KiB
JavaScript
55 lines
2.0 KiB
JavaScript
|
var testPackage = require('../../helpers/test-package');
|
||
|
var Dgeni = require('dgeni');
|
||
|
|
||
|
describe('convertToJson processor', () => {
|
||
|
var dgeni, injector, processor, log;
|
||
|
|
||
|
beforeEach(function() {
|
||
|
dgeni = new Dgeni([testPackage('angular.io-package')]);
|
||
|
injector = dgeni.configureInjector();
|
||
|
processor = injector.get('convertToJsonProcessor');
|
||
|
log = injector.get('log');
|
||
|
processor.docTypes = ['test-doc'];
|
||
|
});
|
||
|
|
||
|
it('should be part of the dgeni package', () => {
|
||
|
expect(processor).toBeDefined();
|
||
|
});
|
||
|
|
||
|
it('should convert the renderedContent to JSON', () => {
|
||
|
const docs = [{
|
||
|
docType: 'test-doc',
|
||
|
title: 'The Title',
|
||
|
name: 'The Name',
|
||
|
renderedContent: 'Some Content'
|
||
|
}];
|
||
|
processor.$process(docs);
|
||
|
expect(JSON.parse(docs[0].renderedContent).title).toEqual('The Title');
|
||
|
expect(JSON.parse(docs[0].renderedContent).contents).toEqual('Some Content');
|
||
|
});
|
||
|
|
||
|
it('should get the title from name if no title is specified', () => {
|
||
|
const docs = [{ docType: 'test-doc', name: 'The Name' }];
|
||
|
processor.$process(docs);
|
||
|
expect(JSON.parse(docs[0].renderedContent).title).toEqual('The Name');
|
||
|
});
|
||
|
|
||
|
it('should get the title from the first `h1` if no title nor name is specified', () => {
|
||
|
const docs = [{ docType: 'test-doc', renderedContent: '<div><h1 class="title">Some title</h1><article><h1>Article 1</h1></article></div>' }];
|
||
|
processor.$process(docs);
|
||
|
expect(JSON.parse(docs[0].renderedContent).contents).toEqual('<div><h1 class="title">Some title</h1><article><h1>Article 1</h1></article></div>');
|
||
|
expect(JSON.parse(docs[0].renderedContent).title).toEqual('Some title');
|
||
|
});
|
||
|
|
||
|
it('should set missing titles to empty', () => {
|
||
|
const docs = [{ docType: 'test-doc' }];
|
||
|
processor.$process(docs);
|
||
|
expect(JSON.parse(docs[0].renderedContent).title).toBe('');
|
||
|
});
|
||
|
|
||
|
it('should log a warning', () => {
|
||
|
const docs = [{ docType: 'test-doc' }];
|
||
|
processor.$process(docs);
|
||
|
expect(log.warn).toHaveBeenCalled();
|
||
|
});
|
||
|
});
|