~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/asn1/test/testSetDefault.erl

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2010-03-09 17:34:57 UTC
  • mfrom: (10.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100309173457-4yd6hlcb2osfhx31
Tags: 1:13.b.4-dfsg-3
Manpages in section 1 are needed even if only arch-dependent packages are
built. So, re-enabled them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%%
 
2
%% %CopyrightBegin%
 
3
%% 
 
4
%% Copyright Ericsson AB 1997-2009. All Rights Reserved.
 
5
%% 
 
6
%% The contents of this file are subject to the Erlang Public License,
 
7
%% Version 1.1, (the "License"); you may not use this file except in
 
8
%% compliance with the License. You should have received a copy of the
 
9
%% Erlang Public License along with this software. If not, it can be
 
10
%% retrieved online at http://www.erlang.org/.
 
11
%% 
 
12
%% Software distributed under the License is distributed on an "AS IS"
 
13
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
 
14
%% the License for the specific language governing rights and limitations
 
15
%% under the License.
 
16
%% 
 
17
%% %CopyrightEnd%
 
18
%%
 
19
%%
 
20
-module(testSetDefault).
 
21
 
 
22
-export([compile/3]).
 
23
-export([main/1]).
 
24
 
 
25
-include("test_server.hrl").
 
26
 
 
27
-record('SetDef1',{bool1 = asn1_DEFAULT, int1, set1 = asn1_DEFAULT}).
 
28
-record('SetDef2',{set2 = asn1_DEFAULT, bool2, int2}).
 
29
-record('SetDef3',{bool3 = asn1_DEFAULT, set3 = asn1_DEFAULT, int3 = asn1_DEFAULT}).
 
30
-record('SetIn',{boolIn, intIn}).
 
31
 
 
32
 
 
33
 
 
34
compile(Config,Rules,Options) ->
 
35
 
 
36
    ?line DataDir = ?config(data_dir,Config),
 
37
    ?line OutDir = ?config(priv_dir,Config),
 
38
    ?line true = code:add_patha(?config(priv_dir,Config)),
 
39
    ?line ok = asn1ct:compile(DataDir ++ "SetDefault",[Rules,{outdir,OutDir}]++Options).
 
40
 
 
41
 
 
42
 
 
43
main(_Rules) ->
 
44
    
 
45
    ?line {ok,Bytes11} = 
 
46
        asn1_wrapper:encode('SetDefault','SetDef1',#'SetDef1'{bool1 = true,
 
47
                                                        int1 = 15,
 
48
                                                        set1 = #'SetIn'{boolIn = true,
 
49
                                                                        intIn = 66}}), 
 
50
    ?line {ok,{'SetDef1',true,15,{'SetIn',true,66}}} = 
 
51
        asn1_wrapper:decode('SetDefault','SetDef1',lists:flatten(Bytes11)),
 
52
    
 
53
    
 
54
    ?line {ok,Bytes12} = asn1_wrapper:encode('SetDefault','SetDef1',#'SetDef1'{int1 = 15}), 
 
55
    ?line {ok,{'SetDef1',true,15,{'SetIn',asn1_NOVALUE,12}}} = 
 
56
        asn1_wrapper:decode('SetDefault','SetDef1',lists:flatten(Bytes12)),
 
57
    
 
58
    
 
59
    ?line {ok,Bytes21} = 
 
60
        asn1_wrapper:encode('SetDefault','SetDef2',#'SetDef2'{bool2 = true,
 
61
                                                        int2 = 15,
 
62
                                                        set2 = #'SetIn'{boolIn = true,
 
63
                                                                        intIn = 66}}), 
 
64
    ?line {ok,{'SetDef2',{'SetIn',true,66},true,15}} = 
 
65
        asn1_wrapper:decode('SetDefault','SetDef2',lists:flatten(Bytes21)),
 
66
    
 
67
    
 
68
    ?line {ok,Bytes22} = asn1_wrapper:encode('SetDefault','SetDef2',#'SetDef2'{bool2 = true,
 
69
                                                                         int2 = 15}), 
 
70
    ?line {ok,{'SetDef2',{'SetIn',asn1_NOVALUE,12},true,15}} = 
 
71
        asn1_wrapper:decode('SetDefault','SetDef2',lists:flatten(Bytes22)),
 
72
    
 
73
    
 
74
    
 
75
    ?line {ok,Bytes31} = 
 
76
        asn1_wrapper:encode('SetDefault','SetDef3',#'SetDef3'{bool3 = true,
 
77
                                                        int3 = 15,
 
78
                                                        set3 = #'SetIn'{boolIn = true,
 
79
                                                                        intIn = 66}}), 
 
80
    ?line {ok,{'SetDef3',true,{'SetIn',true,66},15}} = 
 
81
        asn1_wrapper:decode('SetDefault','SetDef3',lists:flatten(Bytes31)),
 
82
    
 
83
    
 
84
    ?line {ok,Bytes32} = asn1_wrapper:encode('SetDefault','SetDef3',#'SetDef3'{int3 = 15}), 
 
85
    ?line {ok,{'SetDef3',true,{'SetIn',asn1_NOVALUE,12},15}} = 
 
86
        asn1_wrapper:decode('SetDefault','SetDef3',lists:flatten(Bytes32)),
 
87
    
 
88
    
 
89
    
 
90
    
 
91
 
 
92
    
 
93
    
 
94
    ok.