summaryrefslogtreecommitdiff
path: root/inttest/depplugins/depplugins_rt.erl
blob: c2cb76aed10847731d67c49a8c40e1371ee2a1eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 et
%%% @doc Plugin handling test
%%%
%%% This test checks if plugins are loaded correctly.
%%%
%%% It has three applications:
%%% <ol>
%%%   <li>fish. top-level app, has one dependency: `dependsonplugin'.
%%%       It also loads a plugin from CWD which creates
%%%       base_dir_cwd_pre.compile on pre_compile.</li>
%%%   <li>dependsonplugin, has one dependency: `testplugin' and loads
%%%       the testplugin_mod plugin.</li>
%%%   <li>testplugin. This is a plugin application which creates
%%%       plugin_pre.compile on pre_compile. It also loads a plugin from CWD
%%%       which creates dep_cwd_pre.compile on pre_compile.</li>
%%% </ol>

-module(depplugins_rt).
-export([setup/1, files/0, run/1]).

-include_lib("eunit/include/eunit.hrl").

setup([Target]) ->
  retest_utils:load_module(filename:join(Target, "inttest_utils.erl")),
  ok.

files() ->
    [
     {copy, "rebar.config", "rebar.config"},
     {copy, "base_dir_cwd_plugin.erl", "base_dir_cwd_plugin.erl"},
     {create, "ebin/fish.app", app(fish, [])},

     {copy, "rebar_dependsonplugin.config",
      "deps/dependsonplugin/rebar.config"},
     {create, "deps/dependsonplugin/ebin/dependsonplugin.app",
      app(dependsonplugin, [])},

     {copy, "rebar_testplugin.config", "deps/testplugin/rebar.config"},
     {copy, "testplugin_mod.erl",
      "deps/testplugin/plugins/testplugin_mod.erl"},
     {copy, "dep_cwd_plugin.erl", "deps/testplugin/dep_cwd_plugin.erl"},
     {create, "deps/testplugin/ebin/testplugin.app", app(testplugin, [])}
    ] ++ inttest_utils:rebar_setup().

run(_Dir) ->
    ?assertMatch({ok, _}, retest_sh:run("./rebar compile", [])),

    ?assertEqual(true, filelib:is_regular("base_dir_cwd_pre.compile")),

    ?assertEqual(true, filelib:is_regular(
                         "deps/dependsonplugin/base_dir_cwd_pre.compile")),
    ?assertEqual(true, filelib:is_regular(
                         "deps/dependsonplugin/plugin_pre.compile")),

    ?assertEqual(true, filelib:is_regular(
                         "deps/testplugin/base_dir_cwd_pre.compile")),
    ?assertEqual(true, filelib:is_regular(
                         "deps/testplugin/dep_cwd_pre.compile")),
    ?assertEqual(true, filelib:is_regular(
                         "deps/testplugin/plugin_pre.compile")),
    ok.

%%
%% Generate the contents of a simple .app file
%%
app(Name, Modules) ->
    App = {application, Name,
           [{description, atom_to_list(Name)},
            {vsn, "1"},
            {modules, Modules},
            {registered, []},
            {applications, [kernel, stdlib]}]},
    io_lib:format("~p.\n", [App]).