mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 07:04:04 -05:00
Before this PR, source code in the `<meta name="description">` and `<meta property="og:description">` tags would be doubly escaped, leading to html escaped code showing up in link previews. Examples: Discord: <img width="465" height="167" alt="discord" src="https://github.com/user-attachments/assets/d2f867e6-f724-4177-8f1d-17986d13343f" /> Akkoma:  This fixes it by removing one layer of escaping.
142 lines
5.1 KiB
TypeScript
142 lines
5.1 KiB
TypeScript
// Copyright (c) 2021, Compiler Explorer Authors
|
|
// All rights reserved.
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions are met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
// this list of conditions and the following disclaimer.
|
|
// * Redistributions in binary form must reproduce the above copyright
|
|
// notice, this list of conditions and the following disclaimer in the
|
|
// documentation and/or other materials provided with the distribution.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
import fs from 'node:fs/promises';
|
|
|
|
import express from 'express';
|
|
import {beforeAll, describe, expect, it} from 'vitest';
|
|
|
|
import {RouteAPI} from '../lib/handlers/route-api.js';
|
|
|
|
describe('Basic unfurls', () => {
|
|
const router = null as any as express.Router;
|
|
let config;
|
|
let routeApi;
|
|
|
|
beforeAll(() => {
|
|
config = {
|
|
ceProps: () => {},
|
|
clientOptionsHandler: {
|
|
options: {
|
|
urlShortenService: 'memory',
|
|
},
|
|
},
|
|
storageHandler: {
|
|
expandId: async id => {
|
|
const json = await fs.readFile('test/state/' + id + '.json', 'utf-8');
|
|
return {
|
|
config: json,
|
|
};
|
|
},
|
|
incrementViewCount: async () => {},
|
|
},
|
|
};
|
|
});
|
|
|
|
it('Too many editors to meta', async () => {
|
|
const prom = new Promise<any>((resolve, reject) => {
|
|
config.renderGoldenLayout = (config, metadata) => {
|
|
resolve({metadata});
|
|
};
|
|
|
|
routeApi = new RouteAPI(router, config);
|
|
routeApi.apiHandler = {
|
|
languages: {
|
|
'c++': {
|
|
name: 'C++',
|
|
previewFilter: null,
|
|
},
|
|
},
|
|
compilers: [],
|
|
};
|
|
routeApi.storedStateHandler({params: {id: '../example-states/default-state'}}, null, () => {
|
|
reject('Error in test');
|
|
});
|
|
});
|
|
|
|
const res = await prom;
|
|
expect(res.metadata).toEqual({
|
|
ogDescription: '',
|
|
ogTitle: 'Compiler Explorer',
|
|
});
|
|
});
|
|
|
|
it('Just one editor', async () => {
|
|
const prom = new Promise<any>((resolve, reject) => {
|
|
config.renderGoldenLayout = (config, metadata) => {
|
|
resolve({metadata});
|
|
};
|
|
|
|
routeApi = new RouteAPI(router, config);
|
|
routeApi.apiHandler = {
|
|
languages: {
|
|
'c++': {
|
|
name: 'C++',
|
|
previewFilter: null,
|
|
},
|
|
},
|
|
compilers: [],
|
|
};
|
|
routeApi.storedStateHandler({params: {id: 'andthekitchensink'}}, null, () => {
|
|
reject('Error in test');
|
|
});
|
|
});
|
|
|
|
const res = await prom;
|
|
expect(res.metadata).toEqual({
|
|
ogDescription:
|
|
'\ntemplate<typename T>\nconcept TheSameAndAddable = requires(T a, T b) {\n {a+b} -> T;\n};\n\ntemplate<TheSameAndAddable T>\nT sum(T x, T y) {\n return x + y;\n}\n\n#include <string>\n\nint main() {\n int z = 0;\n int w;\n\n return sum(z, w);\n}\n',
|
|
ogTitle: 'Compiler Explorer - C++',
|
|
});
|
|
});
|
|
|
|
it('Tree things', async () => {
|
|
const prom = new Promise<any>((resolve, reject) => {
|
|
config.renderGoldenLayout = (config, metadata) => {
|
|
resolve({metadata});
|
|
};
|
|
|
|
routeApi = new RouteAPI(router, config);
|
|
routeApi.apiHandler = {
|
|
languages: {
|
|
'c++': {
|
|
name: 'C++',
|
|
previewFilter: null,
|
|
},
|
|
},
|
|
compilers: [],
|
|
};
|
|
routeApi.storedStateHandler({params: {id: 'tree-gl'}}, null, () => {
|
|
reject('Error in test');
|
|
});
|
|
});
|
|
|
|
const res = await prom;
|
|
expect(res.metadata).toEqual({
|
|
ogDescription: 'project(hello)\n\nadd_executable(output.s\n example.cpp\n square.cpp)\n',
|
|
ogTitle: 'Compiler Explorer - C++',
|
|
});
|
|
});
|
|
});
|