mirror of
https://github.com/cdr/code-server.git
synced 2025-12-09 09:55:30 +01:00
These conflicts will be resolved in the following commits. We do it this way so that PR review is possible.
51 lines
2.1 KiB
TypeScript
51 lines
2.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as assert from 'assert';
|
|
import * as vscode from 'vscode';
|
|
import 'mocha';
|
|
|
|
import { InMemoryDocument } from './inMemoryDocument';
|
|
import { createNewMarkdownEngine } from './engine';
|
|
|
|
const testFileName = vscode.Uri.file('test.md');
|
|
|
|
suite('markdown.engine', () => {
|
|
suite('rendering', () => {
|
|
const input = '# hello\n\nworld!';
|
|
const output = '<h1 id="hello" data-line="0" class="code-line">hello</h1>\n'
|
|
+ '<p data-line="2" class="code-line">world!</p>\n';
|
|
|
|
test('Renders a document', async () => {
|
|
const doc = new InMemoryDocument(testFileName, input);
|
|
const engine = createNewMarkdownEngine();
|
|
assert.strictEqual((await engine.render(doc)).html, output);
|
|
});
|
|
|
|
test('Renders a string', async () => {
|
|
const engine = createNewMarkdownEngine();
|
|
assert.strictEqual((await engine.render(input)).html, output);
|
|
});
|
|
});
|
|
|
|
suite('image-caching', () => {
|
|
const input = ' [](no-img.png)   ';
|
|
|
|
test('Extracts all images', async () => {
|
|
const engine = createNewMarkdownEngine();
|
|
assert.deepStrictEqual((await engine.render(input)), {
|
|
html: '<p data-line="0" class="code-line">'
|
|
+ '<img src="img.png" alt="" class="loading" id="image-hash--754511435"> '
|
|
+ '<a href="no-img.png" data-href="no-img.png"></a> '
|
|
+ '<img src="http://example.org/img.png" alt="" class="loading" id="image-hash--1903814170"> '
|
|
+ '<img src="img.png" alt="" class="loading" id="image-hash--754511435"> '
|
|
+ '<img src="./img2.png" alt="" class="loading" id="image-hash-265238964">'
|
|
+ '</p>\n'
|
|
,
|
|
containingImages: [{ src: 'img.png' }, { src: 'http://example.org/img.png' }, { src: 'img.png' }, { src: './img2.png' }],
|
|
});
|
|
});
|
|
});
|
|
});
|