rebar/inttest/tdeps1/tdeps1_rt.erl

60 lines
1.6 KiB
Erlang
Raw Normal View History

2010-06-08 20:51:49 +00:00
-module(tdeps1_rt).
-compile(export_all).
%% Exercise transitive dependencies
%% A -> B -> C, where A includes a .hrl from B which includes .hrl from C
files() ->
[
%% A application
{create, "ebin/a.app", app(a, [a])},
2010-06-08 20:51:49 +00:00
{copy, "a.rebar.config", "rebar.config"},
{copy, "a.erl", "src/a.erl"},
{copy, "../../rebar", "rebar"},
%% B application
{create, "repo/b/ebin/b.app", app(b, [])},
2010-06-08 20:51:49 +00:00
{copy, "b.rebar.config", "repo/b/rebar.config"},
{copy, "b.hrl", "repo/b/include/b.hrl"},
%% C application
{create, "repo/c/ebin/c.app", app(c, [])},
2010-06-08 20:51:49 +00:00
{copy, "c.hrl", "repo/c/include/c.hrl"}
].
apply_cmds([], _Params) ->
ok;
apply_cmds([Cmd | Rest], Params) ->
io:format("Running: ~s (~p)\n", [Cmd, Params]),
{ok, _} = retest_sh:run(Cmd, Params),
apply_cmds(Rest, Params).
2011-01-31 18:11:50 +00:00
run(_Dir) ->
%% Initialize the b/c apps as git repos so that dependencies pull
2010-06-08 20:51:49 +00:00
%% properly
GitCmds = ["git init",
"git add -A",
"git config user.email 'tdeps@example.com'",
"git config user.name 'tdeps'",
"git commit -a -m 'Initial Commit'"],
apply_cmds(GitCmds, [{dir, "repo/b"}]),
apply_cmds(GitCmds, [{dir, "repo/c"}]),
2010-06-08 20:51:49 +00:00
{ok, _} = retest_sh:run("./rebar get-deps compile", []),
2011-01-29 16:37:15 +00:00
true = filelib:is_regular("ebin/a.beam"),
2010-06-08 20:51:49 +00:00
ok.
%%
%% Generate the contents of a simple .app file
%%
app(Name, Modules) ->
2010-06-08 20:51:49 +00:00
App = {application, Name,
[{description, atom_to_list(Name)},
{vsn, "1"},
{modules, Modules},
2010-06-08 20:51:49 +00:00
{registered, []},
{applications, [kernel, stdlib]}]},
io_lib:format("~p.\n", [App]).