2017-07-31 08:14:19 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const preprocessor = require('.');
|
|
|
|
const SourceFactory = require('../SourceFactory');
|
|
|
|
const factory = new SourceFactory();
|
|
|
|
|
2017-12-08 00:37:22 +00:00
|
|
|
const {TestRunner, Reporter, Matchers} = require('../../testrunner/');
|
|
|
|
const runner = new TestRunner();
|
|
|
|
new Reporter(runner);
|
|
|
|
|
|
|
|
const {describe, xdescribe, fdescribe} = runner;
|
|
|
|
const {it, fit, xit} = runner;
|
|
|
|
const {beforeAll, beforeEach, afterAll, afterEach} = runner;
|
|
|
|
const {expect} = new Matchers();
|
|
|
|
|
2017-07-31 08:14:19 +00:00
|
|
|
describe('preprocessor', function() {
|
2017-07-31 10:23:29 +00:00
|
|
|
it('should throw for unknown command', function() {
|
2018-04-26 00:11:45 +00:00
|
|
|
const source = factory.createForTest('doc.md', `
|
|
|
|
<!-- gen:unknown-command -->something<!-- gen:stop -->
|
|
|
|
`);
|
|
|
|
const messages = preprocessor([source], '1.1.1');
|
2017-07-31 10:23:29 +00:00
|
|
|
expect(source.hasUpdatedText()).toBe(false);
|
|
|
|
expect(messages.length).toBe(1);
|
|
|
|
expect(messages[0].type).toBe('error');
|
|
|
|
expect(messages[0].text).toContain('Unknown command');
|
|
|
|
});
|
2017-07-31 08:14:19 +00:00
|
|
|
describe('gen:version', function() {
|
|
|
|
it('should work', function() {
|
2018-04-26 00:11:45 +00:00
|
|
|
const source = factory.createForTest('doc.md', `
|
|
|
|
Puppeteer <!-- gen:version -->XXX<!-- gen:stop -->
|
|
|
|
`);
|
|
|
|
const messages = preprocessor([source], '1.2.0');
|
2017-07-31 08:14:19 +00:00
|
|
|
expect(messages.length).toBe(1);
|
|
|
|
expect(messages[0].type).toBe('warning');
|
|
|
|
expect(messages[0].text).toContain('doc.md');
|
2018-04-26 00:11:45 +00:00
|
|
|
expect(source.text()).toBe(`
|
|
|
|
Puppeteer <!-- gen:version -->v1.2.0<!-- gen:stop -->
|
|
|
|
`);
|
|
|
|
});
|
|
|
|
it('should work for *-post versions', function() {
|
|
|
|
const source = factory.createForTest('doc.md', `
|
|
|
|
Puppeteer <!-- gen:version -->XXX<!-- gen:stop -->
|
|
|
|
`);
|
|
|
|
const messages = preprocessor([source], '1.2.0-post');
|
|
|
|
expect(messages.length).toBe(1);
|
|
|
|
expect(messages[0].type).toBe('warning');
|
|
|
|
expect(messages[0].text).toContain('doc.md');
|
|
|
|
expect(source.text()).toBe(`
|
|
|
|
Puppeteer <!-- gen:version -->Tip-Of-Tree<!-- gen:stop -->
|
|
|
|
`);
|
2017-07-31 08:14:19 +00:00
|
|
|
});
|
|
|
|
it('should tolerate different writing', function() {
|
2018-04-26 00:11:45 +00:00
|
|
|
const source = factory.createForTest('doc.md', `Puppeteer v<!-- gEn:version -->WHAT
|
2017-07-31 08:14:19 +00:00
|
|
|
<!-- GEN:stop -->`);
|
2018-04-26 00:11:45 +00:00
|
|
|
preprocessor([source], '1.1.1');
|
|
|
|
expect(source.text()).toBe(`Puppeteer v<!-- gEn:version -->v1.1.1<!-- GEN:stop -->`);
|
2017-07-31 08:14:19 +00:00
|
|
|
});
|
|
|
|
it('should not tolerate missing gen:stop', function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const source = factory.createForTest('doc.md', `<!--GEN:version-->`);
|
2018-04-26 00:11:45 +00:00
|
|
|
const messages = preprocessor([source], '1.2.0');
|
2017-07-31 08:14:19 +00:00
|
|
|
expect(source.hasUpdatedText()).toBe(false);
|
|
|
|
expect(messages.length).toBe(1);
|
|
|
|
expect(messages[0].type).toBe('error');
|
|
|
|
expect(messages[0].text).toContain(`Failed to find 'gen:stop'`);
|
|
|
|
});
|
|
|
|
});
|
2018-04-26 00:11:45 +00:00
|
|
|
describe('gen:empty-if-release', function() {
|
|
|
|
it('should clear text when release version', function() {
|
|
|
|
const source = factory.createForTest('doc.md', `
|
|
|
|
<!-- gen:empty-if-release -->XXX<!-- gen:stop -->
|
|
|
|
`);
|
|
|
|
const messages = preprocessor([source], '1.1.1');
|
|
|
|
expect(messages.length).toBe(1);
|
|
|
|
expect(messages[0].type).toBe('warning');
|
|
|
|
expect(messages[0].text).toContain('doc.md');
|
|
|
|
expect(source.text()).toBe(`
|
|
|
|
<!-- gen:empty-if-release --><!-- gen:stop -->
|
|
|
|
`);
|
|
|
|
});
|
|
|
|
it('should keep text when non-release version', function() {
|
|
|
|
const source = factory.createForTest('doc.md', `
|
|
|
|
<!-- gen:empty-if-release -->XXX<!-- gen:stop -->
|
|
|
|
`);
|
|
|
|
const messages = preprocessor([source], '1.1.1-post');
|
|
|
|
expect(messages.length).toBe(0);
|
|
|
|
expect(source.text()).toBe(`
|
|
|
|
<!-- gen:empty-if-release -->XXX<!-- gen:stop -->
|
|
|
|
`);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('should work with multiple commands', function() {
|
|
|
|
const source = factory.createForTest('doc.md', `
|
|
|
|
<!-- gen:version -->XXX<!-- gen:stop -->
|
|
|
|
<!-- gen:empty-if-release -->YYY<!-- gen:stop -->
|
|
|
|
<!-- gen:version -->ZZZ<!-- gen:stop -->
|
|
|
|
`);
|
|
|
|
const messages = preprocessor([source], '1.1.1');
|
|
|
|
expect(messages.length).toBe(1);
|
|
|
|
expect(messages[0].type).toBe('warning');
|
|
|
|
expect(messages[0].text).toContain('doc.md');
|
|
|
|
expect(source.text()).toBe(`
|
|
|
|
<!-- gen:version -->v1.1.1<!-- gen:stop -->
|
|
|
|
<!-- gen:empty-if-release --><!-- gen:stop -->
|
|
|
|
<!-- gen:version -->v1.1.1<!-- gen:stop -->
|
|
|
|
`);
|
|
|
|
});
|
2017-07-31 08:14:19 +00:00
|
|
|
});
|
|
|
|
|
2017-12-08 00:37:22 +00:00
|
|
|
runner.run();
|
|
|
|
|