aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/testDoubleEllipses.erl
blob: 3caa166ae0e0e3e295f6e3b051797891da2e2f81 (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
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2007-2014. 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(testDoubleEllipses).

-export([main/1]).

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

-record('Seq',{a, c}).
-record('SeqV1',{a, b}).
-record('SeqV2',{a, b ,c}).
-record('SeqAlt',{a,d,b,e,c,f,g}).
-record('SeqAltV2',{a,d,b,e,h,i,c,f,g}).

-record('Set',{a, c}).
-record('SetV1',{a, b}).
-record('SetV2',{a, b ,c}).
-record('SetAlt',{a,d,b,e,c,f,g}).
-record('SetAltV2',{a,d,b,e,h,i,c,f,g}).

main(_Rules) ->
    roundtrip('Seq', #'Seq'{a=10,c=true}),
    roundtrip('SeqV1', #'SeqV1'{a=10,b=false}),
    roundtrip('SeqV2', #'SeqV2'{a=10,b=false,c=true}),
    roundtrip('SeqAlt',
	      #'SeqAlt'{a=10,d=12,b = <<2#1010:4>>,
			e=true,c=false,f=14,g=16}),
    roundtrip('SeqAltV2',
	      #'SeqAltV2'{a=10,d=12,
			  b = <<2#1010:4>>,
			  e=true,h="PS",i=13,c=false,f=14,g=16}),
    
    roundtrip('Set', #'Set'{a=10,c=true}),
    roundtrip('SetV1', #'SetV1'{a=10,b=false}),
    roundtrip('SetV2', #'SetV2'{a=10,b=false,c=true}),
    roundtrip('SetAlt',
	      #'SetAlt'{a=10,d=12,
			b = <<2#1010:4>>,
			e=true,c=false,f=14,g=16}),
    roundtrip('SetAltV2',
	      #'SetAltV2'{a=10,d=12,
			  b = <<2#1010:4>>,
			  e=true,h="PS",i=13,c=false,f=14,g=16}),
    ok.

roundtrip(T, V) ->
    asn1_test_lib:roundtrip('DoubleEllipses', T, V).