bastien penavayre | 3492287 | 2019-12-24 13:33:11 +0100 | [diff] [blame] | 1 | // 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 Morton | de85aec | 2020-09-27 00:20:19 -0400 | [diff] [blame] | 21 | // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
bastien penavayre | 3492287 | 2019-12-24 13:33:11 +0100 | [diff] [blame] | 22 | // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 23 | // POSSIBILITY OF SUCH DAMAGE. |
| 24 | |
Partouf | 3a26b78 | 2021-03-04 21:28:04 +0100 | [diff] [blame] | 25 | import path from 'path'; |
| 26 | |
Austin Morton | 044dcfb | 2020-09-26 16:59:26 -0400 | [diff] [blame] | 27 | import { NimCompiler } from '../lib/compilers/nim'; |
bastien penavayre | 3492287 | 2019-12-24 13:33:11 +0100 | [diff] [blame] | 28 | |
Austin Morton | 044dcfb | 2020-09-26 16:59:26 -0400 | [diff] [blame] | 29 | import { makeCompilationEnvironment, should } from './utils'; |
bastien penavayre | 3492287 | 2019-12-24 13:33:11 +0100 | [diff] [blame] | 30 | |
| 31 | const languages = { |
Rubén Rincón Blanco | ccff4b9 | 2020-08-04 22:39:02 +0200 | [diff] [blame] | 32 | nim: {id: 'nim'}, |
bastien penavayre | 3492287 | 2019-12-24 13:33:11 +0100 | [diff] [blame] | 33 | }; |
| 34 | |
bastien penavayre | 3492287 | 2019-12-24 13:33:11 +0100 | [diff] [blame] | 35 | describe('Nim', () => { |
Austin Morton | 1b7fe24 | 2020-02-18 00:03:15 -0500 | [diff] [blame] | 36 | let ce; |
bastien penavayre | 3492287 | 2019-12-24 13:33:11 +0100 | [diff] [blame] | 37 | const info = { |
| 38 | exe: null, |
| 39 | remote: true, |
Rubén Rincón Blanco | ccff4b9 | 2020-08-04 22:39:02 +0200 | [diff] [blame] | 40 | lang: languages.nim.id, |
bastien penavayre | 3492287 | 2019-12-24 13:33:11 +0100 | [diff] [blame] | 41 | }; |
| 42 | |
Austin Morton | 1b7fe24 | 2020-02-18 00:03:15 -0500 | [diff] [blame] | 43 | before(() => { |
Austin Morton | cadbdf5 | 2020-03-07 01:50:49 -0500 | [diff] [blame] | 44 | ce = makeCompilationEnvironment({languages}); |
Austin Morton | 1b7fe24 | 2020-02-18 00:03:15 -0500 | [diff] [blame] | 45 | }); |
| 46 | |
bastien penavayre | 3492287 | 2019-12-24 13:33:11 +0100 | [diff] [blame] | 47 | it('Nim should not allow --run/-r parameter', () => { |
| 48 | const compiler = new NimCompiler(info, ce); |
Rubén Rincón Blanco | ccff4b9 | 2020-08-04 22:39:02 +0200 | [diff] [blame] | 49 | compiler.filterUserOptions(['c', '--run', '--something']).should.deep.equal(['c', '--something']); |
| 50 | compiler.filterUserOptions(['cpp', '-r', '--something']).should.deep.equal(['cpp', '--something']); |
bastien penavayre | 6027190 | 2019-12-26 11:30:28 +0100 | [diff] [blame] | 51 | }); |
| 52 | |
| 53 | it('Nim compile to Cpp if not asked otherwise', () => { |
| 54 | const compiler = new NimCompiler(info, ce); |
Rubén Rincón Blanco | ccff4b9 | 2020-08-04 22:39:02 +0200 | [diff] [blame] | 55 | compiler.filterUserOptions([]).should.deep.equal(['compile']); |
| 56 | compiler.filterUserOptions(['badoption']).should.deep.equal(['compile', 'badoption']); |
| 57 | compiler.filterUserOptions(['js']).should.deep.equal(['js']); |
bastien penavayre | 3492287 | 2019-12-24 13:33:11 +0100 | [diff] [blame] | 58 | }); |
bastien penavayre | 3c309a2 | 2019-12-26 17:52:13 +0100 | [diff] [blame] | 59 | |
Rubén Rincón Blanco | ccff4b9 | 2020-08-04 22:39:02 +0200 | [diff] [blame] | 60 | it('test getCacheFile from possible user-options', () => { |
bastien penavayre | 3c309a2 | 2019-12-26 17:52:13 +0100 | [diff] [blame] | 61 | const compiler = new NimCompiler(info, ce), |
Rubén Rincón Blanco | ccff4b9 | 2020-08-04 22:39:02 +0200 | [diff] [blame] | 62 | input = 'test.min', |
Partouf | 3a26b78 | 2021-03-04 21:28:04 +0100 | [diff] [blame] | 63 | folder = path.join('/', 'tmp/'), |
bastien penavayre | 3c309a2 | 2019-12-26 17:52:13 +0100 | [diff] [blame] | 64 | expected = { |
Rubén Rincón Blanco | ccff4b9 | 2020-08-04 22:39:02 +0200 | [diff] [blame] | 65 | cpp: folder + '@m' + input + '.cpp.o', |
| 66 | c: folder + '@m' + input + '.c.o', |
| 67 | objc: folder + '@m' + input + '.m.o', |
bastien penavayre | 3c309a2 | 2019-12-26 17:52:13 +0100 | [diff] [blame] | 68 | }; |
| 69 | |
Rubén Rincón Blanco | ccff4b9 | 2020-08-04 22:39:02 +0200 | [diff] [blame] | 70 | for (const lang of ['cpp', 'c', 'objc']) { |
bastien penavayre | 3c309a2 | 2019-12-26 17:52:13 +0100 | [diff] [blame] | 71 | compiler.getCacheFile([lang], input, folder).should.equal(expected[lang]); |
| 72 | } |
Austin Morton | 044dcfb | 2020-09-26 16:59:26 -0400 | [diff] [blame] | 73 | |
| 74 | should.equal(compiler.getCacheFile([], input, folder), null); |
| 75 | should.equal(compiler.getCacheFile(['js'], input, folder), null); |
bastien penavayre | 3c309a2 | 2019-12-26 17:52:13 +0100 | [diff] [blame] | 76 | }); |
bastien penavayre | 3492287 | 2019-12-24 13:33:11 +0100 | [diff] [blame] | 77 | }); |