Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test for view.prototype.render #6306

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 115 additions & 0 deletions test/view.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
'use strict';

const path = require('node:path');
const assert = require('node:assert');
const view = require('../lib/view.js');
const fs = require('node:fs')

describe('view.prototype.render', function() {
const fixturesDir = path.join(__dirname, 'fixtures');

it('should ensure callback is always async', function(done) {
const mockEngine = function(filePath, options, callback) {
callback(null, 'rendered content');
};

const viewInstance = new view('test', {
root: fixturesDir,
engines: { '.tmpl': mockEngine },
defaultEngine: '.tmpl'
});

let isAsync = false;

viewInstance.render({}, function(err, html) {
isAsync = true;
assert.strictEqual(err, null);
assert.strictEqual(html, 'rendered content');
done();
});

assert.strictEqual(isAsync, false, 'Callback was executed synchronously!');
});

it('should handle errors correctly', function(done) {
const mockEngine = function(filePath, options, callback) {
callback(new Error('render error'));
};

const viewInstance = new view('test', {
root: fixturesDir,
engines: { '.tmpl': mockEngine },
defaultEngine: '.tmpl'
});

let isAsync = false;

viewInstance.render({}, function(err, html) {
isAsync = true;
assert(err instanceof Error);
assert.strictEqual(err.message, 'render error');
assert.strictEqual(html, undefined);
done();
});

assert.strictEqual(isAsync, false, 'Error callback was executed synchronously!');
});

it('should handle synchronous engine callbacks correctly', function(done) {
const mockEngine = function(filePath, options, callback) {
return callback(null, 'sync rendered content');
};

const viewInstance = new view('test', {
root: fixturesDir,
engines: { '.tmpl': mockEngine },
defaultEngine: '.tmpl'
});

let isAsync = false;

viewInstance.render({}, function(err, html) {
isAsync = true;
assert.strictEqual(err, null);
assert.strictEqual(html, 'sync rendered content');
done();
});

assert.strictEqual(isAsync, false, 'Callback from synchronous engine was not properly delayed!');
});

it('should pass correct arguments to the engine', function (done) {
const tempDir = fs.mkdtempSync(path.join(__dirname, 'test-'));
const expectedPath = path.join(tempDir, 'test.tmpl');

fs.writeFileSync(expectedPath, 'template content');

const mockEngine = (filePath, options, callback) => {
try {
assert.strictEqual(filePath, expectedPath, 'File path should match');
assert.deepStrictEqual(options, { key: 'value' }, 'Options should match');
callback(null, 'rendered content');
} catch (err) {
callback(err);
}
};

const viewInstance = new view('test', {
root: tempDir,
engines: { '.tmpl': mockEngine },
defaultEngine: '.tmpl'
});

viewInstance.render({ key: 'value' }, (err, html) => {
fs.rmSync(tempDir, { recursive: true, force: true });

if (err) return done(err);
try {
assert.strictEqual(html, 'rendered content', 'Rendered content should match');
done();
} catch (assertErr) {
done(assertErr);
}
});
});
});