blob: 184d81aaf8beb57eff60e096df66ee346e706649 [file] [log] [blame]
% Licensed under the Apache License, Version 2.0 (the "License"); you may not
% use this file except in compliance with the License. You may obtain a copy of
% the License at
%
% http://www.apache.org/licenses/LICENSE-2.0
%
% Unless required by applicable law or agreed to in writing, software
% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
% License for the specific language governing permissions and limitations under
% the License.
-module(couch_replicator_proxy_tests).
-include_lib("couch/include/couch_eunit.hrl").
-include_lib("couch_replicator/src/couch_replicator.hrl").
-include_lib("couch_replicator/include/couch_replicator_api_wrap.hrl").
-include("couch_replicator_test.hrl").
setup() ->
ok.
teardown(_) ->
ok.
replicator_proxy_test_() ->
{
"replicator proxy tests",
{
setup,
fun() -> test_util:start_couch([couch_replicator]) end,
fun test_util:stop_couch/1,
{
foreach,
fun setup/0,
fun teardown/1,
[
?TDEF_FE(parse_rep_doc_without_proxy),
?TDEF_FE(parse_rep_doc_with_proxy),
?TDEF_FE(parse_rep_source_target_proxy),
?TDEF_FE(mutually_exclusive_proxy_and_source_proxy),
?TDEF_FE(mutually_exclusive_proxy_and_target_proxy)
]
}
}
}.
parse_rep_doc_without_proxy(_) ->
NoProxyDoc =
{[
{<<"source">>, <<"http://unproxied.com">>},
{<<"target">>, <<"http://otherunproxied.com">>}
]},
Rep = couch_replicator_docs:parse_rep_doc(NoProxyDoc),
?assertEqual((Rep#rep.source)#httpdb.proxy_url, undefined),
?assertEqual((Rep#rep.target)#httpdb.proxy_url, undefined).
parse_rep_doc_with_proxy(_) ->
ProxyURL = <<"http://myproxy.com">>,
ProxyDoc =
{[
{<<"source">>, <<"http://unproxied.com">>},
{<<"target">>, <<"http://otherunproxied.com">>},
{<<"proxy">>, ProxyURL}
]},
Rep = couch_replicator_docs:parse_rep_doc(ProxyDoc),
?assertEqual((Rep#rep.source)#httpdb.proxy_url, binary_to_list(ProxyURL)),
?assertEqual((Rep#rep.target)#httpdb.proxy_url, binary_to_list(ProxyURL)).
parse_rep_source_target_proxy(_) ->
SrcProxyURL = <<"http://mysrcproxy.com">>,
TgtProxyURL = <<"http://mytgtproxy.com:9999">>,
ProxyDoc =
{[
{<<"source">>, <<"http://unproxied.com">>},
{<<"target">>, <<"http://otherunproxied.com">>},
{<<"source_proxy">>, SrcProxyURL},
{<<"target_proxy">>, TgtProxyURL}
]},
Rep = couch_replicator_docs:parse_rep_doc(ProxyDoc),
?assertEqual(
(Rep#rep.source)#httpdb.proxy_url,
binary_to_list(SrcProxyURL)
),
?assertEqual(
(Rep#rep.target)#httpdb.proxy_url,
binary_to_list(TgtProxyURL)
).
mutually_exclusive_proxy_and_source_proxy(_) ->
ProxyDoc =
{[
{<<"source">>, <<"http://unproxied.com">>},
{<<"target">>, <<"http://otherunproxied.com">>},
{<<"proxy">>, <<"oldstyleproxy.local">>},
{<<"source_proxy">>, <<"sourceproxy.local">>}
]},
?assertThrow(
{bad_rep_doc, _},
couch_replicator_docs:parse_rep_doc(ProxyDoc)
).
mutually_exclusive_proxy_and_target_proxy(_) ->
ProxyDoc =
{[
{<<"source">>, <<"http://unproxied.com">>},
{<<"target">>, <<"http://otherunproxied.com">>},
{<<"proxy">>, <<"oldstyleproxy.local">>},
{<<"target_proxy">>, <<"targetproxy.local">>}
]},
?assertThrow(
{bad_rep_doc, _},
couch_replicator_docs:parse_rep_doc(ProxyDoc)
).