diff options
author | Hans Nilsson <[email protected]> | 2014-12-17 11:05:43 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2014-12-17 11:05:43 +0100 |
commit | 7972eb5ee2f336f16b58cb22be5edf85c5e311e2 (patch) | |
tree | 4fb70e5039ba26ef946f7248dd18e168c4ecab73 /lib/eldap/test/eldap_basic_SUITE.erl | |
parent | 4357a70e152c65b00a010540230d5abf3688035e (diff) | |
download | otp-7972eb5ee2f336f16b58cb22be5edf85c5e311e2.tar.gz otp-7972eb5ee2f336f16b58cb22be5edf85c5e311e2.tar.bz2 otp-7972eb5ee2f336f16b58cb22be5edf85c5e311e2.zip |
eldap: Add encode/decode tests.
Diffstat (limited to 'lib/eldap/test/eldap_basic_SUITE.erl')
-rw-r--r-- | lib/eldap/test/eldap_basic_SUITE.erl | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/lib/eldap/test/eldap_basic_SUITE.erl b/lib/eldap/test/eldap_basic_SUITE.erl index 6ec2fb3e47..3b6ec3e1c0 100644 --- a/lib/eldap/test/eldap_basic_SUITE.erl +++ b/lib/eldap/test/eldap_basic_SUITE.erl @@ -24,12 +24,15 @@ %%-include_lib("common_test/include/ct.hrl"). -include_lib("test_server/include/test_server.hrl"). -include_lib("eldap/include/eldap.hrl"). +-include_lib("eldap/ebin/ELDAPv3.hrl"). + -define(TIMEOUT, 120000). % 2 min all() -> [app, appup, + {group, encode_decode}, {group, v4_connections}, {group, v6_connections}, {group, plain_api}, @@ -38,7 +41,10 @@ all() -> ]. groups() -> - [{plain_api, [], [{group,api}]}, + [{encode_decode, [], [encode, + decode + ]}, + {plain_api, [], [{group,api}]}, {ssl_api, [], [{group,api}, start_tls_on_ssl_should_fail]}, {start_tls_api, [], [{group,api}, start_tls_twice_should_fail]}, @@ -676,6 +682,31 @@ start_tls_on_ssl_should_fail(Config) -> _Ok = eldap:close(H), ok. +%%%---------------------------------------------------------------- +encode(_Config) -> + {ok,Bin} = 'ELDAPv3':encode('AddRequest', #'AddRequest'{entry="hejHopp" ,attributes=[]} ), + Expected = <<104,11,4,7,104,101,106,72,111,112,112,48,0>>, + case Bin of + Expected -> ok; + _ -> ct:log("Encoded erroneously to:~n~p~nExpected:~n~p",[Bin,Expected]), + {fail, "Bad encode"} + end. + +%%%---------------------------------------------------------------- +decode(_Config) -> + {ok,Res} = 'ELDAPv3':decode('AddRequest', <<104,11,4,7,104,101,106,72,111,112,112,48,0>>), + ct:log("Res = ~p", [Res]), + Expected = #'AddRequest'{entry = "hejHopp",attributes = []}, + case Res of + Expected -> ok; + #'AddRequest'{entry= <<"hejHopp">>, attributes=[]} -> + {fail, "decoded to (correct) binary!!"}; + _ -> + {fail, "Bad decode"} + end. + + + %%%**************************************************************** %%% Private |