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
|
%%
%% %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(testSeqTypeRefSeq).
-export([main/1]).
-include_lib("test_server/include/test_server.hrl").
-record('Seq1',{bool1, int1, seq1}).
-record('Seq2',{seq2, bool2, int2}).
-record('Seq3',{bool3, seq3, int3}).
-record('Seq4',{seq41, seq42, seq43}).
-record('SeqIn',{boolIn, intIn}).
-record('SeqS1',{boolS1, intS1, seqS1}).
-record('SeqS1_seqS1',{boolIn, intIn}).
-record('SeqS2',{seqS2, boolS2, intS2}).
-record('SeqS2_seqS2',{boolIn, intIn}).
-record('SeqS3',{boolS3, seqS3, intS3}).
-record('SeqS3_seqS3',{boolIn, intIn}).
-record('SeqSTag',{seqS1, seqS2, seqS3}).
-record('SeqSTag_seqS1',{b1, i1}).
-record('SeqSTag_seqS2',{b2, i2}).
-record('SeqSTag_seqS3',{b3, i3}).
-record('SeqTRseq',{seqSeq, seqSeqI, seqSeqE, 'seqSeq-I', 'seqSeqI-I', 'seqSeqE-I', 'seqSeq-E', 'seqSeqI-E', 'seqSeqE-E'}).
-record('SeqSeq',{seqInt, seqOs}).
-record('SeqSeqImp',{seqInt, seqOs}).
-record('SeqSeqExp',{seqInt, seqOs}).
main(_Rules) ->
roundtrip('Seq1',
#'Seq1'{bool1=true,int1=15,
seq1=#'SeqIn'{boolIn=true,intIn=66}}),
roundtrip('Seq2',
#'Seq2'{seq2=#'SeqIn'{boolIn=true,intIn=66},
bool2=true,int2=15}),
roundtrip('Seq3',
#'Seq3'{bool3=true,seq3=#'SeqIn'{boolIn=true,intIn=66},int3=15}),
roundtrip('Seq4',
#'Seq4'{seq41=#'SeqIn'{boolIn=true,intIn=66},
seq42=#'SeqIn'{boolIn=true,intIn=66},
seq43=#'SeqIn'{boolIn=true,intIn=66}}),
roundtrip('SeqS1',
#'SeqS1'{boolS1=true,intS1=15,
seqS1=#'SeqS1_seqS1'{boolIn=true,intIn=66}}),
roundtrip('SeqS2',
#'SeqS2'{seqS2=#'SeqS2_seqS2'{boolIn=true,intIn=66},
boolS2=true,intS2=15}),
roundtrip('SeqS3',
#'SeqS3'{boolS3=true,seqS3=#'SeqS3_seqS3'{boolIn=true,intIn=66},
intS3=15}),
roundtrip('SeqSTag',
#'SeqSTag'{seqS1=#'SeqSTag_seqS1'{b1=true,i1=11},
seqS2=#'SeqSTag_seqS2'{b2=true,i2=22},
seqS3=#'SeqSTag_seqS3'{b3=true,i3=33}}),
roundtrip('SeqTRseq',
#'SeqTRseq'{seqSeq=#'SeqSeq'{seqInt=2,seqOs="A1"},
seqSeqI=#'SeqSeq'{seqInt=2,seqOs="A2"},
seqSeqE=#'SeqSeq'{seqInt=2,seqOs="A3"},
'seqSeq-I'=#'SeqSeqImp'{seqInt=2,seqOs="A4"},
'seqSeqI-I'=#'SeqSeqImp'{seqInt=2,seqOs="A5"},
'seqSeqE-I'=#'SeqSeqImp'{seqInt=2,seqOs="A6"},
'seqSeq-E'=#'SeqSeqExp'{seqInt=2,seqOs="A7"},
'seqSeqI-E'=#'SeqSeqExp'{seqInt=2,seqOs="A8"},
'seqSeqE-E'=#'SeqSeqExp'{seqInt=2,seqOs="A9"}}),
ok.
roundtrip(T, V) ->
asn1_test_lib:roundtrip('SeqTypeRefSeq', T, V).
|