forked from t7tran/carbone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_html_render.js
More file actions
49 lines (40 loc) · 1.46 KB
/
test_html_render.js
File metadata and controls
49 lines (40 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const carbone = require("./lib/index");
const fs = require("fs");
// Create a test HTML template with an image URL
const htmlTemplate = `<html>
<body>
<h1>Test Document</h1>
<img src="https://raw.githubusercontent.com/jumptrnr/carbone/master/doc/carbone_icon_small.png" alt="Carbone Logo">
<p>This is a test document with an image from {d.name}.</p>
</body>
</html>`;
// Save the template
fs.writeFileSync("test_template.html", htmlTemplate);
// Data for the template
const data = {
name: "Carbone Template Engine",
};
console.log("Testing HTML to HTML rendering with image processing...");
// Render the template
carbone.render("./test_template.html", data, function (err, result) {
if (err) {
console.error("Error rendering template:", err);
return;
}
// Save the result
fs.writeFileSync("test_result.html", result);
console.log("✅ HTML template rendered successfully!");
console.log("Check test_result.html to see the result with embedded image");
// Check if the image was processed
const resultString = result.toString();
if (resultString.includes("data:image/")) {
console.log("✅ SUCCESS: Image was converted to base64 data URI!");
} else if (resultString.includes("https://")) {
console.log("❌ FAILED: Image URL was not processed");
} else {
console.log("⚠️ UNCLEAR: Could not determine image processing status");
}
// Clean up
fs.unlinkSync("test_template.html");
console.log("Cleanup completed");
});