aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/testDeepTConstr.erl
blob: e826cafa0ced4c668c196e131639e2e396ed1c12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2001-2012. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
%% compliance with the License. You should have received a copy of the
%% Erlang Public License along with this software. If not, it can be
%% retrieved online at http://www.erlang.org/.
%%
%% Software distributed under the License is distributed on an "AS IS"
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
%% the License for the specific language governing rights and limitations
%% under the License.
%%
%% %CopyrightEnd%
%%
%%


-module(testDeepTConstr).

-export([main/1]).

-include_lib("test_server/include/test_server.hrl").

main(_Erule) ->
    Val1 = {substrings,
	    {'FilterItem_substrings',
	     {2,6},
	     [{initial,"SE"},
	      {any,"DK"},
	      {final,"N"}]}},

    Val2 = {substrings,
	    {'FilterItem_substrings',
	     {2,6},
	     [{initial,"SE"},
	      {any,"DK"},
	      {final,"NO"}]}},

    {ok,Bytes1} = 'TConstrChoice':encode('FilterItem', Val1),
    {error,Reason} = asn1_wrapper:decode('TConstrChoice','FilterItem',Bytes1),
    io:format("Reason: ~p~n~n",[Reason]),
    {ok,Bytes2} = 'TConstrChoice':encode('FilterItem', Val2),
    {ok,Res} = 'TConstrChoice':decode('FilterItem', Bytes2),

    %% test of OTP-4248.
    {ok,Bytes3} = 'TConstrChoice':encode('Seq', {'Seq',3,Bytes2}),
    {ok,{'Seq',3,Bytes4}} = 'TConstrChoice':decode('Seq', Bytes3),
    {ok,Res} = 'TConstrChoice':decode('FilterItem', Bytes4),
    
    %% test of TConstr

    Seq1Val = {'Seq1',{'Seq1_a',12,{2,4}},
	       {'Seq1_b',13,{'Type-object1',14,true}}},
    roundtrip('TConstr', 'Seq1', Seq1Val),
    

    Seq2Val = {'Seq2',123,{'Seq2_content',{2,6,7},
			   {first,{'Type-object3_first',false,47}},
			   false}},
    roundtrip('TConstr', 'Seq2', Seq2Val),

    roundtrip('TConstr', 'Info', {'Info',{'Info_xyz',{1,2}},1234}),

    roundtrip('TConstr', 'Deeper',
	      {'Deeper',
	       {'Deeper_a',12,
		{'Deeper_a_s',{2,4},42}},
	       {'Deeper_b',13,{'Type-object1',14,true}}}),
    ok.


roundtrip(M, T, V) ->
    {ok,E} = M:encode(T, V),
    {ok,V} = M:decode(T, E),
    ok.