diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-03-18 19:11:49 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-03-21 15:11:57 -0500 |
commit | 5e58823fd67703d7bfeb0b6f4848d9af2c292b9a (patch) | |
tree | 35917b6bf6d6a7736e6e1e83b1dbe9029d165b40 /test | |
parent | e4bf78a96aa95b612ba0ae29d631018d8a6639d5 (diff) |
treat _checkouts as deps that are always compiled
Diffstat (limited to 'test')
-rw-r--r-- | test/mock_git_resource.erl | 4 | ||||
-rw-r--r-- | test/mock_pkg_resource.erl | 6 | ||||
-rw-r--r-- | test/rebar_compile_SUITE.erl | 127 | ||||
-rw-r--r-- | test/rebar_test_utils.erl | 3 |
4 files changed, 131 insertions, 9 deletions
diff --git a/test/mock_git_resource.erl b/test/mock_git_resource.erl index 6940f54..9c799fd 100644 --- a/test/mock_git_resource.erl +++ b/test/mock_git_resource.erl @@ -55,7 +55,7 @@ mock_lock(_) -> %% should be updated on a per-name basis: `{update, ["App1", "App3"]}'. mock_update(Opts) -> ToUpdate = proplists:get_value(upgrade, Opts, []), - ct:pal("TOUp: ~p", [ToUpdate]), +% ct:pal("TOUp: ~p", [ToUpdate]), meck:expect( ?MOD, needs_update, fun(_Dir, {git, Url, _Ref}) -> @@ -110,7 +110,7 @@ mock_download(Opts) -> AppDeps = proplists:get_value({App,Vsn}, Deps, []), rebar_test_utils:create_app( Dir, App, Vsn, - [element(1,D) || D <- AppDeps] + [kernel, stdlib] ++ [element(1,D) || D <- AppDeps] ), rebar_test_utils:create_config(Dir, [{deps, AppDeps}]), {ok, 'WHATEVER'} diff --git a/test/mock_pkg_resource.erl b/test/mock_pkg_resource.erl index a22d1b0..afb6fb4 100644 --- a/test/mock_pkg_resource.erl +++ b/test/mock_pkg_resource.erl @@ -78,9 +78,9 @@ mock_download(Opts) -> App = binary_to_list(AppBin), filelib:ensure_dir(Dir), AppDeps = proplists:get_value({App,Vsn}, Deps, []), - {ok, AppInfo} = rebar_test_utils:create_empty_app( - Dir, App, Vsn, - [element(1,D) || D <- AppDeps] + {ok, AppInfo} = rebar_test_utils:create_app( + Dir, App, binary_to_list(Vsn), + [kernel, stdlib] ++ [element(1,D) || D <- AppDeps] ), rebar_test_utils:create_config(Dir, [{deps, AppDeps}]), Tarball = filename:join([Dir, App++"-"++binary_to_list(Vsn)++".tar"]), diff --git a/test/rebar_compile_SUITE.erl b/test/rebar_compile_SUITE.erl index 2c5a11f..8564754 100644 --- a/test/rebar_compile_SUITE.erl +++ b/test/rebar_compile_SUITE.erl @@ -4,6 +4,7 @@ init_per_suite/1, end_per_suite/1, init_per_testcase/2, + end_per_testcase/2, all/0, build_basic_app/1, build_release_apps/1, @@ -12,7 +13,9 @@ build_all_srcdirs/1, recompile_when_opts_change/1, dont_recompile_when_opts_dont_change/1, - dont_recompile_yrl_or_xrl/1]). + dont_recompile_yrl_or_xrl/1, + deps_in_path/1, + checkout_priority/1]). -include_lib("common_test/include/ct.hrl"). -include_lib("eunit/include/eunit.hrl"). @@ -30,12 +33,15 @@ end_per_suite(_Config) -> init_per_testcase(_, Config) -> rebar_test_utils:init_rebar_state(Config). +end_per_testcase(_, _Config) -> + catch meck:unload(). + all() -> [build_basic_app, build_release_apps, build_checkout_apps, build_checkout_deps, build_all_srcdirs, recompile_when_opts_change, dont_recompile_when_opts_dont_change, - dont_recompile_yrl_or_xrl]. + dont_recompile_yrl_or_xrl, deps_in_path, checkout_priority]. build_basic_app(Config) -> AppDir = ?config(apps, Config), @@ -88,8 +94,11 @@ build_checkout_deps(Config) -> rebar_test_utils:create_app(filename:join([CheckoutsDir,Name2]), Name2, Vsn2, [kernel, stdlib]), rebar_test_utils:create_app(filename:join([DepsDir,Name2]), Name2, Vsn1, [kernel, stdlib]), + Deps = [{list_to_atom(Name2), Vsn2, {git, "", ""}}], + {ok, RebarConfig} = file:consult(rebar_test_utils:create_config(AppDir, [{deps, Deps}])), + rebar_test_utils:run_and_check( - Config, [], ["compile"], + Config, RebarConfig, ["compile"], {ok, [{app, Name1}, {checkout, Name2}]} ), ok = application:load(list_to_atom(Name2)), @@ -211,3 +220,115 @@ dont_recompile_yrl_or_xrl(Config) -> ?assert(ModTime == NewModTime). +deps_in_path(Config) -> + AppDir = ?config(apps, Config), + StartPaths = code:get_path(), + + Name = rebar_test_utils:create_random_name("app1_"), + Vsn = rebar_test_utils:create_random_vsn(), + rebar_test_utils:create_app(AppDir, Name, Vsn, [kernel, stdlib]), + + DepName = rebar_test_utils:create_random_name("dep1_"), + PkgName = rebar_test_utils:create_random_name("pkg1_"), + mock_git_resource:mock([]), + mock_pkg_resource:mock([ + {pkgdeps, [{{iolist_to_binary(PkgName), iolist_to_binary(Vsn)}, []}]} + ]), + + RConfFile = rebar_test_utils:create_config(AppDir, [{deps, [ + {list_to_atom(DepName), {git, "http://site.com/user/"++DepName++".git", {tag, Vsn}}}, + {list_to_atom(PkgName), Vsn} + ]}]), + {ok, RConf} = file:consult(RConfFile), + %% Make sure apps we look for are not visible + %% Hope not to find src name + ?assertEqual([], [Path || Path <- code:get_path(), + {match, _} <- [re:run(Path, DepName)]]), + %% Hope not to find pkg name in there + ?assertEqual([], [Path || Path <- code:get_path(), + {match, _} <- [re:run(Path, PkgName)]]), + %% Build things + rebar_test_utils:run_and_check( + Config, RConf, ["compile"], + {ok, [{app, Name}, {dep, DepName}, {dep, PkgName}]} + ), + %% Find src name in there + ?assertNotEqual([], [Path || Path <- code:get_path(), + {match, _} <- [re:run(Path, DepName)]]), + %% find pkg name in there + ?assertNotEqual([], [Path || Path <- code:get_path(), + {match, _} <- [re:run(Path, PkgName)]]), + code:set_path(StartPaths), + %% Make sure apps we look for are not visible again + %% Hope not to find src name + ?assertEqual([], [Path || Path <- code:get_path(), + {match, _} <- [re:run(Path, DepName)]]), + %% Hope not to find pkg name in there + ?assertEqual([], [Path || Path <- code:get_path(), + {match, _} <- [re:run(Path, PkgName)]]), + %% Rebuild + rebar_test_utils:run_and_check( + Config, RConf, ["compile"], + {ok, [{app, Name}, {dep, DepName}, {dep, PkgName}]} + ), + %% Find src name in there + ?assertNotEqual([], [Path || Path <- code:get_path(), + {match, _} <- [re:run(Path, DepName)]]), + %% find pkg name in there + ?assertNotEqual([], [Path || Path <- code:get_path(), + {match, _} <- [re:run(Path, PkgName)]]). + +checkout_priority(Config) -> + AppDir = ?config(apps, Config), + CheckoutsDir = ?config(checkouts, Config), + StartPaths = code:get_path(), + + Name = rebar_test_utils:create_random_name("app1_"), + Vsn = rebar_test_utils:create_random_vsn(), + rebar_test_utils:create_app(AppDir, Name, Vsn, [kernel, stdlib]), + + DepName = rebar_test_utils:create_random_name("dep1_"), + PkgName = rebar_test_utils:create_random_name("pkg1_"), + mock_git_resource:mock([]), + mock_pkg_resource:mock([ + {pkgdeps, [{{iolist_to_binary(PkgName), iolist_to_binary(Vsn)}, []}]} + ]), + + RConfFile = rebar_test_utils:create_config(AppDir, [{deps, [ + {list_to_atom(DepName), {git, "http://site.com/user/"++DepName++".git", {tag, Vsn}}}, + {list_to_atom(PkgName), Vsn} + ]}]), + {ok, RConf} = file:consult(RConfFile), + + %% Build with deps. + rebar_test_utils:run_and_check( + Config, RConf, ["compile"], + {ok, [{app, Name}, {dep, DepName}, {dep, PkgName}]} + ), + + %% Build two checkout apps similar to dependencies to be fetched, + %% but on a different version + Vsn2 = rebar_test_utils:create_random_vsn(), + rebar_test_utils:create_app(filename:join([CheckoutsDir,DepName]), DepName, Vsn2, [kernel, stdlib]), + rebar_test_utils:create_app(filename:join([CheckoutsDir,PkgName]), PkgName, Vsn2, [kernel, stdlib]), + + %% Rebuild and make sure the checkout apps are in path + code:set_path(StartPaths), + rebar_test_utils:run_and_check( + Config, RConf, ["compile"], + {ok, [{app, Name}, {checkout, DepName}, {checkout, PkgName}]} + ), + + [DepPath] = [Path || Path <- code:get_path(), + {match, _} <- [re:run(Path, DepName)]], + [PkgPath] = [Path || Path <- code:get_path(), + {match, _} <- [re:run(Path, PkgName)]], + + {ok, [DepApp]} = file:consult(filename:join([DepPath, DepName ++ ".app"])), + {ok, [PkgApp]} = file:consult(filename:join([PkgPath, PkgName ++ ".app"])), + + {application, _, DepProps} = DepApp, + {application, _, PkgProps} = PkgApp, + + ?assertEqual(Vsn2, proplists:get_value(vsn, DepProps)), + ?assertEqual(Vsn2, proplists:get_value(vsn, PkgProps)). diff --git a/test/rebar_test_utils.erl b/test/rebar_test_utils.erl index 7c52a18..0497dd0 100644 --- a/test/rebar_test_utils.erl +++ b/test/rebar_test_utils.erl @@ -25,7 +25,8 @@ init_rebar_state(Config, Name) -> ok = ec_file:mkdir_p(CheckoutsDir), Verbosity = rebar3:log_level(), rebar_log:init(command_line, Verbosity), - State = rebar_state:new([{base_dir, filename:join([AppsDir, "_build"])}]), + State = rebar_state:new([{base_dir, filename:join([AppsDir, "_build"])} + ,{root_dir, AppsDir}]), [{apps, AppsDir}, {checkouts, CheckoutsDir}, {state, State} | Config]. %% @doc Takes common test config, a rebar config ([] if empty), a command to |