Skip to content

Commit

Permalink
test(melange): incorrect path when public lib depends on private lib (#…
Browse files Browse the repository at this point in the history
…7652)

Signed-off-by: Antonio Nuno Monteiro <[email protected]>
  • Loading branch information
anmonteiro authored May 4, 2023
1 parent 7e16d5b commit 239e6ac
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions test/blackbox-tests/test-cases/melange/private-lib-dep.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
Melange public library depends on private library

$ cat > dune-project <<EOF
> (lang dune 3.8)
> (package (name foo))
> (using melange 0.1)
> EOF
$ mkdir -p priv
$ cat > priv/dune <<EOF
> (library
> (name priv)
> (package foo)
> (modes melange))
> EOF
$ cat > priv/priv.ml <<EOF
> let x = "private"
> EOF
$ mkdir -p lib
$ cat > lib/dune <<EOF
> (library
> (public_name foo)
> (modes melange)
> (libraries priv))
> EOF
$ cat > lib/foo.ml <<EOF
> let x = "public lib uses " ^ Priv.x
> EOF
$ cat > dune <<EOF
> (melange.emit
> (target output)
> (libraries foo)
> (emit_stdlib false))
> EOF
$ cat > entry.ml <<EOF
> let () = Js.log Foo.x
> EOF
$ dune build @melange
$ node _build/default/output/entry.js 2>&1 | grep 'Cannot find module'
Error: Cannot find module 'priv/priv.js'
$ cat _build/default/output/node_modules/foo/foo.js
// Generated by Melange
'use strict';
var Priv = require("priv/priv.js");
var x = "public lib uses " + Priv.x;
exports.x = x;
/* No side effect */

0 comments on commit 239e6ac

Please sign in to comment.