fix(tests): fix check apps api test cases

This commit is contained in:
Turtle 2021-07-26 19:38:09 +08:00 committed by turtleDeng
parent b2b9847c0e
commit fa37151b69
1 changed files with 9 additions and 2 deletions

View File

@ -54,11 +54,10 @@ start_listener({Proto, Port, Options}) ->
type => apiKey, type => apiKey,
name => "authorization", name => "authorization",
in => header}}}}, in => header}}}},
Modules = minirest_api:find_api_modules(apps()) -- [emqx_mgmt_api_apps],
Minirest = #{ Minirest = #{
protocol => Proto, protocol => Proto,
base_path => ?BASE_PATH, base_path => ?BASE_PATH,
modules => Modules, modules => api_modules(),
authorization => Authorization, authorization => Authorization,
security => [#{application => []}], security => [#{application => []}],
swagger_global_spec => GlobalSpec}, swagger_global_spec => GlobalSpec},
@ -117,3 +116,11 @@ apps() ->
_ -> false _ -> false
end end
end, Apps). end, Apps).
-ifdef(TEST).
api_modules() ->
minirest_api:find_api_modules(apps()).
-else.
api_modules() ->
minirest_api:find_api_modules(apps()) -- [emqx_mgmt_api_apps].
-endif.