aboutsummaryrefslogblamecommitdiffstats
path: root/lib/asn1/test/testSetOptional.erl
blob: eb095fd480f6a78b8122de2055e9a151465ee18c (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                   
  
                                                        
  




                                                                      
  



                                                                         
  





                         
                  
                         











                                                                                       
               
















                                                                          
    




                                                                  
    














                                                                  
    



                                                                  



       
                                   

                                                                              


                                                            

                 

                         
                                                        
%%
%% %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(testSetOptional).

-include("External.hrl").
-export([main/1]).
-export([ticket_7533/1]).

-record('SetOpt1',{bool1 = asn1_NOVALUE, int1, set1 = asn1_NOVALUE}).
-record('SetOpt1Imp',{bool1 = asn1_NOVALUE, int1, set1 = asn1_NOVALUE}).
-record('SetOpt1Exp',{bool1 = asn1_NOVALUE, int1, set1 = asn1_NOVALUE}).
-record('SetOpt2',{set2 = asn1_NOVALUE, bool2, int2}).
-record('SetOpt2Imp',{set2 = asn1_NOVALUE, bool2, int2}).
-record('SetOpt2Exp',{set2 = asn1_NOVALUE, bool2, int2}).
-record('SetOpt3',{bool3 = asn1_NOVALUE, set3 = asn1_NOVALUE, int3 = asn1_NOVALUE}).
-record('SetOpt3Imp',{bool3 = asn1_NOVALUE, set3 = asn1_NOVALUE, int3 = asn1_NOVALUE}).
-record('SetOpt3Exp',{bool3 = asn1_NOVALUE, set3 = asn1_NOVALUE, int3 = asn1_NOVALUE}).
-record('SetIn',{boolIn, intIn}).

main(_Rules) ->
    roundtrip('SetOpt1',
	      #'SetOpt1'{bool1=true,int1=15,
			 set1=#'SetIn'{boolIn=true,intIn=66}}),
    roundtrip('SetOpt1', #'SetOpt1'{int1=15}),

    roundtrip('SetOpt2', #'SetOpt2'{bool2=true,int2=15,
				    set2=#'SetIn'{boolIn=true,intIn=66}}),
    roundtrip('SetOpt2', #'SetOpt2'{int2=15,bool2=true}),

    roundtrip('SetOpt3', #'SetOpt3'{bool3=true,int3=15,
				    set3=#'SetIn'{boolIn=true,intIn=66}}),
    roundtrip('SetOpt3', #'SetOpt3'{int3=15}),

    roundtrip('SetOpt1Imp',
	      #'SetOpt1Imp'{bool1=true,int1 = 15,
			    set1=#'SetIn'{boolIn = true,intIn = 66}}),
    roundtrip('SetOpt1Imp', #'SetOpt1Imp'{int1=15}),
    

    roundtrip('SetOpt2Imp',
	      #'SetOpt2Imp'{bool2=true,int2=15,
			    set2=#'SetIn'{boolIn=true,intIn=66}}),
    roundtrip('SetOpt2Imp',#'SetOpt2Imp'{int2=15,bool2=true}),
    

    roundtrip('SetOpt3Imp',
	      #'SetOpt3Imp'{bool3=true,int3=15,
			    set3=#'SetIn'{boolIn=true,intIn=66}}),
    roundtrip('SetOpt3Imp', #'SetOpt3Imp'{int3=15}),

    roundtrip('SetOpt1Exp',
	      #'SetOpt1Exp'{bool1=true,int1=15,
			    set1=#'SetIn'{boolIn=true,intIn=66}}),
    roundtrip('SetOpt1Exp', #'SetOpt1Exp'{int1=15}),

    roundtrip('SetOpt2Exp',
	      #'SetOpt2Exp'{bool2=true,int2=15,
			    set2=#'SetIn'{boolIn=true,intIn=66}}),
    roundtrip('SetOpt2Exp', #'SetOpt2Exp'{int2=15,bool2=true}),
    
    roundtrip('SetOpt3Exp',
	      #'SetOpt3Exp'{bool3=true,int3=15,
			    set3=#'SetIn'{boolIn=true,intIn=66}}),
    roundtrip('SetOpt3Exp', #'SetOpt3Exp'{int3=15}),
    
    ok.


ticket_7533(Ber) when Ber == ber ->
    Val = #'SetOpt1'{bool1=true,int1=12,set1=#'SetIn'{boolIn=false,intIn=13}},
    roundtrip('SetOpt1', Val),
    CorruptVal = <<49,14,1,1,255,2,1,12,0:8/unit:8>>,
    {error,_} = 'SetOptional':decode('SetOpt1', CorruptVal),
    ok;
ticket_7533(_) ->
    ok.

roundtrip(Type, Value) ->
    asn1_test_lib:roundtrip('SetOptional', Type, Value).