From 18bd1239bee04427340a44f57f993ea92c264e41 Mon Sep 17 00:00:00 2001 From: Kenneth Lundin Date: Fri, 19 Feb 2010 14:01:57 +0000 Subject: OTP-8463 Support for EXTENSIBILITY IMPLIED and SET/SEQ OF NamedType is added. --- lib/asn1/test/asn1_SUITE_data/Constraints.py | 84 ++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 lib/asn1/test/asn1_SUITE_data/Constraints.py (limited to 'lib/asn1/test/asn1_SUITE_data/Constraints.py') diff --git a/lib/asn1/test/asn1_SUITE_data/Constraints.py b/lib/asn1/test/asn1_SUITE_data/Constraints.py new file mode 100644 index 0000000000..b18c29bd89 --- /dev/null +++ b/lib/asn1/test/asn1_SUITE_data/Constraints.py @@ -0,0 +1,84 @@ +Constraints DEFINITIONS ::= +BEGIN + +-- Single Value +SingleValue ::= INTEGER (1) +SingleValue2 ::= INTEGER (1..20) +Range2to19 ::= INTEGER (1<..<20) +Range10to20 ::= INTEGER (10..20) +ContainedSubtype ::= INTEGER (INCLUDES Range10to20) +FixedSize ::= OCTET STRING (SIZE(10)) +FixedSize2 ::= OCTET STRING (SIZE(10|20)) +VariableSize ::= OCTET STRING (SIZE(1..10)) +PemittedAlphabet ::= PrintableString (FROM ("a"|"yx")) +AliasAddress ::=CHOICE +{ + e164 IA5String (SIZE (1..128) ^ FROM ("0123456789#*,")), + h323-ID BMPString (SIZE (1..256)), + ... +} +Obj ::= OBJECT IDENTIFIER + + +-- OTP-4559: a referenced type that has a permitted alphabet constraint +-- Example from H323-MESSAGES ver (11/2000) +TBCD-STRING ::= IA5String (FROM ("0123456789#*abc")) + +ANSI-41-UIM ::= SEQUENCE { + imsi [0] TBCD-STRING(SIZE (3..16)) OPTIONAL, + esn [1] TBCD-STRING(SIZE (16)) OPTIONAL +} + +-- OTP-4869: a BIT STRING constrained by SIZE(C) was encoded wrong +-- when C was larger than 16. There was also an error when encodeing +-- in compact_bit_string mode. + +IP ::= SEQUENCE { + perm SEQUENCE OF INTEGER (0..15), + key BIT STRING (SIZE (128)), + bool BOOLEAN OPTIONAL +} + +-- add for OTP-3558 and OTP-4917 +Day ::= ENUMERATED{monday(0),tuesday(1),wednesday(2),thursday(3),friday(4),saturday(5),sunday(6)} + +Wednesday ::= Day(wednesday) + + +Thing ::= INTEGER {fred (0),fred2 (1),fred3 (2)} + + +AnotherThing ::= Thing (fred | fred2) + +I ::= INTEGER (0|15..269) -- OTP-5457 + +-- OTP-5511 + +maxNrOfCellPortionsPerCell-1 INTEGER ::= 35 +CellPortionID ::= INTEGER (0..maxNrOfCellPortionsPerCell-1,...) + +-- OTP-6763 +T ::= IA5String (SIZE (1|2, ..., SIZE (1|2|3))) -- Dubuisson 268 +T2 ::= IA5String (SIZE (1|2, ..., 3)) -- equal with T + +-- OTP-8046 +DateAndTime ::= VisibleString (PATTERN "\d#2/\d#2/\d#4-\d#2:\d#2") +-- DD/MM/YYYY-HH:MM + + +-- OTP-6828 +HandoverCommand-r8-IEs ::= SEQUENCE { + handoverCommandMessage OCTET STRING (CONTAINING MyType), + ... +} + +MoreCompact ::= OCTET STRING (CONTAINING MyType ENCODED BY {joint-iso-itu-t asn1 packed-encoding(3) basic(0) unaligned(1)}) + +MyType ::= SEQUENCE {a INTEGER, b INTEGER} + +Document ::= OCTET STRING (ENCODED BY pdf) + +pdf OBJECT IDENTIFIER ::= {1,2,3,4,5} + + +END -- cgit v1.2.3