blob: 67d53e58a4257e939895cd084fe186c54d668dd2 [file] [log] [blame] [raw]
bastien penavayre34922872019-12-24 13:33:11 +01001// Copyright (c) 2019, Bastien Penavayre
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are met:
6//
7// * Redistributions of source code must retain the above copyright notice,
8// this list of conditions and the following disclaimer.
9// * Redistributions in binary form must reproduce the above copyright
10// notice, this list of conditions and the following disclaimer in the
11// documentation and/or other materials provided with the distribution.
12//
13// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
14// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
17// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Austin Mortonde85aec2020-09-27 00:20:19 -040021// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
bastien penavayre34922872019-12-24 13:33:11 +010022// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
23// POSSIBILITY OF SUCH DAMAGE.
24
Partouf3a26b782021-03-04 21:28:04 +010025import path from 'path';
26
Austin Morton044dcfb2020-09-26 16:59:26 -040027import { NimCompiler } from '../lib/compilers/nim';
bastien penavayre34922872019-12-24 13:33:11 +010028
Austin Morton044dcfb2020-09-26 16:59:26 -040029import { makeCompilationEnvironment, should } from './utils';
bastien penavayre34922872019-12-24 13:33:11 +010030
31const languages = {
Rubén Rincón Blancoccff4b92020-08-04 22:39:02 +020032 nim: {id: 'nim'},
bastien penavayre34922872019-12-24 13:33:11 +010033};
34
bastien penavayre34922872019-12-24 13:33:11 +010035describe('Nim', () => {
Austin Morton1b7fe242020-02-18 00:03:15 -050036 let ce;
bastien penavayre34922872019-12-24 13:33:11 +010037 const info = {
38 exe: null,
39 remote: true,
Rubén Rincón Blancoccff4b92020-08-04 22:39:02 +020040 lang: languages.nim.id,
bastien penavayre34922872019-12-24 13:33:11 +010041 };
42
Austin Morton1b7fe242020-02-18 00:03:15 -050043 before(() => {
Austin Mortoncadbdf52020-03-07 01:50:49 -050044 ce = makeCompilationEnvironment({languages});
Austin Morton1b7fe242020-02-18 00:03:15 -050045 });
46
bastien penavayre34922872019-12-24 13:33:11 +010047 it('Nim should not allow --run/-r parameter', () => {
48 const compiler = new NimCompiler(info, ce);
Rubén Rincón Blancoccff4b92020-08-04 22:39:02 +020049 compiler.filterUserOptions(['c', '--run', '--something']).should.deep.equal(['c', '--something']);
50 compiler.filterUserOptions(['cpp', '-r', '--something']).should.deep.equal(['cpp', '--something']);
bastien penavayre60271902019-12-26 11:30:28 +010051 });
52
53 it('Nim compile to Cpp if not asked otherwise', () => {
54 const compiler = new NimCompiler(info, ce);
Rubén Rincón Blancoccff4b92020-08-04 22:39:02 +020055 compiler.filterUserOptions([]).should.deep.equal(['compile']);
56 compiler.filterUserOptions(['badoption']).should.deep.equal(['compile', 'badoption']);
57 compiler.filterUserOptions(['js']).should.deep.equal(['js']);
bastien penavayre34922872019-12-24 13:33:11 +010058 });
bastien penavayre3c309a22019-12-26 17:52:13 +010059
Rubén Rincón Blancoccff4b92020-08-04 22:39:02 +020060 it('test getCacheFile from possible user-options', () => {
bastien penavayre3c309a22019-12-26 17:52:13 +010061 const compiler = new NimCompiler(info, ce),
Rubén Rincón Blancoccff4b92020-08-04 22:39:02 +020062 input = 'test.min',
Partouf3a26b782021-03-04 21:28:04 +010063 folder = path.join('/', 'tmp/'),
bastien penavayre3c309a22019-12-26 17:52:13 +010064 expected = {
Rubén Rincón Blancoccff4b92020-08-04 22:39:02 +020065 cpp: folder + '@m' + input + '.cpp.o',
66 c: folder + '@m' + input + '.c.o',
67 objc: folder + '@m' + input + '.m.o',
bastien penavayre3c309a22019-12-26 17:52:13 +010068 };
69
Rubén Rincón Blancoccff4b92020-08-04 22:39:02 +020070 for (const lang of ['cpp', 'c', 'objc']) {
bastien penavayre3c309a22019-12-26 17:52:13 +010071 compiler.getCacheFile([lang], input, folder).should.equal(expected[lang]);
72 }
Austin Morton044dcfb2020-09-26 16:59:26 -040073
74 should.equal(compiler.getCacheFile([], input, folder), null);
75 should.equal(compiler.getCacheFile(['js'], input, folder), null);
bastien penavayre3c309a22019-12-26 17:52:13 +010076 });
bastien penavayre34922872019-12-24 13:33:11 +010077});