aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/testSetTypeRefSet.erl
blob: 8786e0fb4d650d54572ed8d34eb2630085cc2f15 (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
80
81
82
83
84
85
86
87
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 1997-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(testSetTypeRefSet).

-export([main/1]).

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

-record('Set1',{bool1, int1, set1}).
-record('Set2',{set2, bool2, int2}).
-record('Set3',{bool3, set3, int3}).
-record('Set4',{set41, set42, set43}).
-record('SetIn',{boolIn, intIn}).
-record('SetS1',{boolS1, intS1, setS1}).
-record('SetS1_setS1',{boolIn, intIn}).
-record('SetS2',{setS2, boolS2, intS2}).
-record('SetS2_setS2',{boolIn, intIn}).
-record('SetS3',{boolS3, setS3, intS3}).
-record('SetS3_setS3',{boolIn, intIn}).
-record('SetSTag',{setS1, setS2, setS3}).
-record('SetSTag_setS1',{b1, i1}).
-record('SetSTag_setS2',{b2, i2}).
-record('SetSTag_setS3',{b3, i3}).
-record('SetTRset',{setSet, setSetI, setSetE, 'setSet-I', 'setSetI-I', 'setSetE-I', 'setSet-E', 'setSetI-E', 'setSetE-E'}).
-record('SetSet',{setInt, setOs}).
-record('SetSetImp',{setInt, setOs}).
-record('SetSetExp',{setInt, setOs}).



main(_Rules) ->
    roundtrip('Set1',
	      #'Set1'{bool1=true,int1=15,set1=#'SetIn'{boolIn=true,intIn=66}}),
    roundtrip('Set2',
	      #'Set2'{set2=#'SetIn'{boolIn=true,intIn=66},bool2=true,int2=15}),
    roundtrip('Set3',
	      #'Set3'{bool3=true,set3=#'SetIn'{boolIn=true,intIn=66},int3=15}),
    roundtrip('Set4',
	      #'Set4'{set41=#'SetIn'{boolIn=true,intIn=66},
		      set42=#'SetIn'{boolIn=true,intIn=66},
		      set43=#'SetIn'{boolIn=true,intIn=66}}),
    roundtrip('SetS1',
	      #'SetS1'{boolS1=true,intS1=15,
		       setS1=#'SetS1_setS1'{boolIn=true,intIn=66}}),
    roundtrip('SetS2',
	      #'SetS2'{setS2=#'SetS2_setS2'{boolIn=true,intIn=66},
		       boolS2=true,intS2=15}),
    roundtrip('SetS3',
	      #'SetS3'{boolS3=true,
		       setS3=#'SetS3_setS3'{boolIn=true,intIn=66},
		       intS3=15}),
    roundtrip('SetSTag',
	      #'SetSTag'{setS1=#'SetSTag_setS1'{b1=true,i1=11},
			 setS2=#'SetSTag_setS2'{b2=true,i2=22},
			 setS3=#'SetSTag_setS3'{b3=true,i3=33}}),
    roundtrip('SetTRset',
	      #'SetTRset'{setSet=#'SetSet'{setInt=2,setOs="A1"},
			  setSetI=#'SetSet'{setInt=2,setOs="A2"},
			  setSetE=#'SetSet'{setInt=2,setOs="A3"},
			  'setSet-I'=#'SetSetImp'{setInt=2,setOs="A4"},
			  'setSetI-I'=#'SetSetImp'{setInt=2,setOs="A5"},
			  'setSetE-I'=#'SetSetImp'{setInt=2,setOs="A6"},
			  'setSet-E'=#'SetSetExp'{setInt=2,setOs="A7"},
			  'setSetI-E'=#'SetSetExp'{setInt=2,setOs="A8"},
			  'setSetE-E'=#'SetSetExp'{setInt=2,setOs="A9"}}),
    
    ok.

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