Files
compiler-explorer/test/tool-tests.ts
Matt Godbolt fd3dd917f5 Vitest (#6219)
Port to vitest. Port everything to typescript. Remove chai, mocha and
chai-as-promised. Adds some docs.
2024-03-08 22:25:09 -06:00

243 lines
8.8 KiB
TypeScript

// Copyright (c) 2019, 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 {describe, expect, it} from 'vitest';
import {
getToolchainFlagFromOptions,
getToolchainPathWithOptionsArr,
hasToolchainArg,
removeToolchainArg,
replaceToolchainArg,
} from '../lib/toolchain-utils.js';
import {CompilerDropinTool} from '../lib/tooling/compiler-dropin-tool.js';
import {path} from './utils.js';
describe('CompilerDropInTool', () => {
it('Should support llvm based compilers', () => {
const tool = new CompilerDropinTool({}, {});
const compilationInfo = {
compiler: {
exe: '/opt/compiler-explorer/clang-8.0.0/bin/clang++',
options: '--gcc-toolchain=/opt/compiler-explorer/gcc-7.2.0',
},
options: [],
};
const includeflags = [];
const args = [];
const sourcefile = 'example.cpp';
const orderedArgs = tool.getOrderedArguments(compilationInfo, includeflags, [], args, sourcefile);
expect(orderedArgs).toEqual([
'--gcc-toolchain=/opt/compiler-explorer/gcc-7.2.0',
'--gcc-toolchain=/opt/compiler-explorer/gcc-7.2.0',
]);
});
it('Should support gcc based compilers', () => {
const tool = new CompilerDropinTool({}, {});
const compilationInfo = {
compiler: {
exe: '/opt/compiler-explorer/gcc-8.0/bin/g++',
options: '',
},
options: [],
};
const includeflags = [];
const args = [];
const sourcefile = 'example.cpp';
const orderedArgs = tool.getOrderedArguments(compilationInfo, includeflags, [], args, sourcefile);
expect(orderedArgs).toEqual([
'--gcc-toolchain=' + path.resolve('/opt/compiler-explorer/gcc-8.0'),
'--gcc-toolchain=' + path.resolve('/opt/compiler-explorer/gcc-8.0'),
]);
});
it('Should not support riscv gcc compilers', () => {
const tool = new CompilerDropinTool({}, {});
const compilationInfo = {
compiler: {
exe: '/opt/compiler-explorer/riscv64/gcc-8.2.0/riscv64-unknown-linux-gnu/bin/riscv64-unknown-linux-gnu-g++',
options: '',
},
options: [],
};
const includeflags = [];
const args = [];
const sourcefile = 'example.cpp';
const orderedArgs = tool.getOrderedArguments(compilationInfo, includeflags, [], args, sourcefile);
expect(orderedArgs).toEqual(false);
});
it('Should support ICC compilers', () => {
const tool = new CompilerDropinTool({}, {});
const compilationInfo = {
compiler: {
exe: '/opt/compiler-explorer/intel-2019.1/bin/icc',
options: '--gxx-name=/opt/compiler-explorer/gcc-8.2.0/bin/g++',
},
options: [],
};
const includeflags = [];
const args = [];
const sourcefile = 'example.cpp';
const orderedArgs = tool.getOrderedArguments(compilationInfo, includeflags, [], args, sourcefile);
expect(orderedArgs).toEqual([
'--gcc-toolchain=' + path.resolve('/opt/compiler-explorer/gcc-8.2.0'),
'--gcc-toolchain=' + path.resolve('/opt/compiler-explorer/gcc-8.2.0'),
]);
});
it('Should not support WINE MSVC compilers', () => {
const tool = new CompilerDropinTool({}, {});
const compilationInfo = {
compiler: {
exe: '/opt/compiler-explorer/windows/19.14.26423/bin/cl.exe',
options:
'/I/opt/compiler-explorer/windows/10.0.10240.0/ucrt/ ' +
'/I/opt/compiler-explorer/windows/19.14.26423/include/',
internalIncludePaths: ['/opt/compiler-explorer/windows/19.14.26423/include'],
},
options: [],
};
const includeflags = [];
const args = ['/MD', '/STD:c++latest', '/Ox'];
const sourcefile = 'example.cpp';
const orderedArgs = tool.getOrderedArguments(compilationInfo, includeflags, [], args, sourcefile);
expect(orderedArgs).toEqual(false);
});
it('Should not support using libc++', () => {
const tool = new CompilerDropinTool({}, {});
const compilationInfo = {
compiler: {
exe: '/opt/compiler-explorer/clang-concepts-trunk/bin/clang++',
options: '-stdlib=libc++',
internalIncludePaths: ['/opt/compiler-explorer/clang-concepts-trunk/something/etc/include'],
},
options: [],
};
const includeflags = [];
const args = [];
const sourcefile = 'example.cpp';
const orderedArgs = tool.getOrderedArguments(compilationInfo, includeflags, [], args, sourcefile);
expect(orderedArgs).toEqual(false);
});
it('Should support library options', () => {
const tool = new CompilerDropinTool({}, {});
const compilationInfo = {
compiler: {
exe: '/opt/compiler-explorer/clang-concepts-trunk/bin/clang++',
options: '--gcc-toolchain=/opt/compiler-explorer/gcc-8.2.0',
internalIncludePaths: ['/opt/compiler-explorer/clang-concepts-trunk/something/etc/include'],
},
options: [],
};
const includeflags = [];
const args = [];
const sourcefile = 'example.cpp';
const libOptions = ['-DMYLIBDEF', '-pthread'];
const orderedArgs = tool.getOrderedArguments(compilationInfo, includeflags, libOptions, args, sourcefile);
expect(orderedArgs).toEqual([
'--gcc-toolchain=/opt/compiler-explorer/gcc-8.2.0',
'--gcc-toolchain=/opt/compiler-explorer/gcc-8.2.0',
'-DMYLIBDEF',
'-pthread',
]);
});
it('More toolchain magic', () => {
const options = [
'-gdwarf-4',
'-g',
'-o',
'output.s',
'-mllvm',
'--x86-asm-syntax=intel',
'-S',
'--gcc-toolchain=/opt/compiler-explorer/gcc-12.2.0',
'-fcolor-diagnostics',
'-fno-crash-diagnostics',
'/app/example.cpp',
];
expect(hasToolchainArg(options)).toBe(true);
expect(getToolchainFlagFromOptions(options)).toEqual('--gcc-toolchain=');
const newOptions = removeToolchainArg(options);
expect(hasToolchainArg(newOptions)).toBe(false);
});
it('Should be able to swap toolchain', () => {
const exe = '/opt/compiler-explorer/clang-16.0.0/bin/clang++';
const options = [
'-gdwarf-4',
'-g',
'-o',
'output.s',
'-mllvm',
'--x86-asm-syntax=intel',
'-S',
'--gcc-toolchain=/opt/compiler-explorer/gcc-12.2.0',
'-fcolor-diagnostics',
'-fno-crash-diagnostics',
'/app/example.cpp',
];
const toolchain = getToolchainPathWithOptionsArr(exe, options);
expect(toolchain).toEqual('/opt/compiler-explorer/gcc-12.2.0');
const replacedOptions = replaceToolchainArg(options, '/opt/compiler-explorer/gcc-11.1.0');
expect(replacedOptions).toEqual([
'-gdwarf-4',
'-g',
'-o',
'output.s',
'-mllvm',
'--x86-asm-syntax=intel',
'-S',
'--gcc-toolchain=/opt/compiler-explorer/gcc-11.1.0',
'-fcolor-diagnostics',
'-fno-crash-diagnostics',
'/app/example.cpp',
]);
});
});