瀏覽代碼

don't lose overrides in an app when installing plugins it uses'

pull/1045/head
Tristan Sloughter 9 年之前
父節點
當前提交
c4aaff7a06
共有 2 個文件被更改,包括 57 次插入6 次删除
  1. +14
    -4
      src/rebar_plugins.erl
  2. +43
    -2
      test/rebar_plugins_SUITE.erl

+ 14
- 4
src/rebar_plugins.erl 查看文件

@ -42,10 +42,20 @@ project_apps_install(State) ->
-spec install(rebar_state:t(), rebar_app_info:t()) -> rebar_state:t().
install(State, AppInfo) ->
Profiles = rebar_state:current_profiles(State),
lists:foldl(fun(Profile, StateAcc) ->
Plugins = rebar_app_info:get(AppInfo, {plugins, Profile}, []),
handle_plugins(Profile, Plugins, StateAcc)
end, State, Profiles).
%% don't lose the overrides of the dep we are processing plugins for
Overrides = rebar_app_info:get(AppInfo, overrides, []),
StateOverrides = rebar_state:get(State, overrides, []),
AllOverrides = Overrides ++ StateOverrides,
State1 = rebar_state:set(State, overrides, AllOverrides),
State2 = lists:foldl(fun(Profile, StateAcc) ->
Plugins = rebar_app_info:get(AppInfo, {plugins, Profile}, []),
handle_plugins(Profile, Plugins, StateAcc)
end, State1, Profiles),
%% Reset the overrides after processing the dep
rebar_state:set(State2, overrides, StateOverrides).
handle_plugins(Profile, Plugins, State) ->
handle_plugins(Profile, Plugins, State, false).

+ 43
- 2
test/rebar_plugins_SUITE.erl 查看文件

@ -11,7 +11,8 @@
complex_plugins/1,
list/1,
upgrade/1,
sub_app_plugins/1]).
sub_app_plugins/1,
sub_app_plugin_overrides/1]).
-include_lib("common_test/include/ct.hrl").
-include_lib("eunit/include/eunit.hrl").
@ -33,7 +34,7 @@ end_per_testcase(_, _Config) ->
catch meck:unload().
all() ->
[compile_plugins, compile_global_plugins, complex_plugins, list, upgrade, sub_app_plugins].
[compile_plugins, compile_global_plugins, complex_plugins, list, upgrade, sub_app_plugins, sub_app_plugin_overrides].
%% Tests that compiling a project installs and compiles the plugins of deps
compile_plugins(Config) ->
@ -240,3 +241,43 @@ sub_app_plugins(Config) ->
Config, RConf, ["compile"],
{ok, [{app, Name}, {dep, DepName}, {plugin, PluginName}]}
).
%% Tests that overrides in a dep that includes a plugin are applied to plugin fetching
sub_app_plugin_overrides(Config) ->
AppDir = ?config(apps, Config),
Name = rebar_test_utils:create_random_name("sub_app1_"),
Vsn = rebar_test_utils:create_random_vsn(),
Dep2Name = rebar_test_utils:create_random_name("dep2_"),
DepName = rebar_test_utils:create_random_name("dep1_"),
PluginName = rebar_test_utils:create_random_name("plugin1_"),
Vsn2 = rebar_test_utils:create_random_vsn(),
Deps = rebar_test_utils:expand_deps(git, [{PluginName, Vsn, [{DepName, Vsn, []}]},
{DepName, Vsn, []}]),
{SrcDeps, _} = rebar_test_utils:flat_deps(Deps),
mock_git_resource:mock([{deps, SrcDeps}]),
mock_pkg_resource:mock([{pkgdeps, [{{list_to_binary(Dep2Name), list_to_binary(Vsn)}, []}]},
{config, [{plugins, [{list_to_atom(PluginName),
{git, "http://site.com/user/"++PluginName++".git",
{tag, Vsn}}}]},
%% Dep2 overrides the plugin's deps to have vsn2 of dep1
{overrides, [{override, list_to_atom(PluginName),
[{deps, [{list_to_atom(DepName),
{git, "http://site.com/user/"++DepName++".git",
{tag, Vsn2}}}]}]}]}]}]),
SubAppsDir = filename:join([AppDir, "apps", Name]),
rebar_test_utils:create_app(SubAppsDir, Name, Vsn, [kernel, stdlib]),
RConfFile = rebar_test_utils:create_config(AppDir, [{deps, [{list_to_binary(Dep2Name), list_to_binary(Vsn)}]}]),
{ok, RConf} = file:consult(RConfFile),
%% Build with deps.
rebar_test_utils:run_and_check(
Config, RConf, ["compile"],
{ok, [{app, Name}, {dep, Dep2Name, Vsn}, {plugin, DepName, Vsn2}, {plugin, PluginName}]}
).

Loading…
取消
儲存