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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
|
/*
* Copyright (C) 2002-2014 Free Software Foundation, Inc.
*
* This file is part of LIBTASN1.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/*****************************************************/
/* File: Test_parser.c */
/* Description: Test sequences for these functions: */
/* asn1_parser_asn1, */
/*****************************************************/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "libtasn1.h"
typedef struct
{
int lineNumber;
const char *line;
int errorNumber;
const char *errorDescription;
} test_type;
const char *fileCorrectName;
char fileErroredName[] = "Test_parser_ERROR.asn";
#define _FILE_ "Test_parser_ERROR.asn"
test_type test_array[] = {
/* Test DEFINITIONS syntax */
{5,
"TEST_PARSER2 { } DEFINITIONS IMPLICIT TAGS ::= BEGIN int1 ::= INTEGER END",
ASN1_SYNTAX_ERROR,
_FILE_
":6: Error: syntax error, unexpected IDENTIFIER, expecting $end near 'TEST_PARSER'"},
{6, "TEST_PARSER { }", ASN1_SUCCESS, ""},
/* Test ASN1_MAX_NAME_SIZE (128) */
{12,
"a123456789012345678901234567890123456789012345678901234567890123 ::= INTEGER",
ASN1_SUCCESS, ""},
{12,
"a1234567890123456789012345678901234567890123456789012345678901234 ::= INTEGER",
ASN1_NAME_TOO_LONG,
_FILE_ ":12: name too long (more than 64 characters)"},
/* Test 'check identifier' function */
{12, "ident1 ::= ident2 ident2 ::= INTEGER",
ASN1_SUCCESS, ""},
{12, "ident1 ::= ident2",
ASN1_IDENTIFIER_NOT_FOUND, _FILE_ ":: identifier 'ident2' not found"},
{12, "obj1 OBJECT IDENTIFIER ::= {pkix 0 5 4} "
"pkix OBJECT IDENTIFIER ::= {1 2}",
ASN1_SUCCESS, ""},
{12, "obj1 OBJECT IDENTIFIER ::= {pkix 0 5 4}",
ASN1_IDENTIFIER_NOT_FOUND, _FILE_ ":: identifier 'pkix' not found"},
/* Test INTEGER */
{14, "int1 INTEGER (-5..5),", ASN1_SUCCESS, ""},
{14, "int1 INTEGER OPTIONAL,", ASN1_SUCCESS, ""},
{14, "int1 INTEGER DEFAULT 1,", ASN1_SUCCESS, ""},
{14, "int1 INTEGER DEFAULT -1,", ASN1_SUCCESS, ""},
{14, "int1 INTEGER DEFAULT v1,", ASN1_SUCCESS, ""},
{14, "int1 [1] INTEGER,", ASN1_SUCCESS, ""},
{14, "int1 [1] EXPLICIT INTEGER,", ASN1_SUCCESS, ""},
{14, "int1 [1] IMPLICIT INTEGER,", ASN1_SUCCESS, ""},
{12, "Integer ::= [1] EXPLICIT INTEGER {v1(-1), v2(1)}", ASN1_SUCCESS, ""},
{12, "Integer ::= INTEGER {v1(0), v2}", ASN1_SYNTAX_ERROR,
_FILE_ ":12: Error: syntax error, unexpected '}', expecting '(' near '}'"},
{12, "Integer ::= INTEGER {v1(0), 1}",
ASN1_SYNTAX_ERROR,
_FILE_
":12: Error: syntax error, unexpected NUM, expecting IDENTIFIER or '(' near '1'"},
{12, "const1 INTEGER ::= -1", ASN1_SUCCESS, ""},
{12, "const1 INTEGER ::= 1", ASN1_SUCCESS, ""},
{12, "const1 INTEGER ::= v1",
ASN1_SYNTAX_ERROR,
_FILE_
":12: Error: syntax error, unexpected IDENTIFIER, expecting NUM or '+' or '-' near 'v1'"},
{16, " generic generalstring",
ASN1_IDENTIFIER_NOT_FOUND,
_FILE_ ":: identifier 'generalstring' not found"},
/* Test: OID */
{20, " oid1 OBJECT IDENTIFIER DEFAULT Oid-type",
ASN1_IDENTIFIER_NOT_FOUND, _FILE_ ":: identifier 'Oid-type' not found"},
{20, " oid1 OBJECT IDENTIFIER DEFAULT 1",
ASN1_IDENTIFIER_NOT_FOUND, _FILE_ ":: identifier '1' not found"},
{20, " oid1 OBJECT IDENTIFIER DEFAULT",
ASN1_SYNTAX_ERROR,
_FILE_ ":21: Error: syntax error, unexpected '}' near '}'"},
{20, " oid1 OBJECT IDENTIFIER DEFAULT Oid-type1",
ASN1_SUCCESS, ""},
/* end */
{0}
};
static int
readLine (FILE * file, char *line)
{
int c;
while (((c = fgetc (file)) != EOF) && (c != '\n'))
{
*line = c;
line++;
}
*line = 0;
return c;
}
static void
createFile (int lineNumber, const char *line)
{
FILE *fileIn, *fileOut;
char lineRead[1024];
int fileInLineNumber = 0;
fileIn = fopen (fileCorrectName, "r");
fileOut = fopen (fileErroredName, "w");
while (readLine (fileIn, lineRead) != EOF)
{
fileInLineNumber++;
if (fileInLineNumber == lineNumber)
fprintf (fileOut, "%s\n", line);
else
fprintf (fileOut, "%s\n", lineRead);
}
fclose (fileOut);
fclose (fileIn);
}
int
main (int argc, char *argv[])
{
int result;
asn1_node definitions = NULL;
char errorDescription[ASN1_MAX_ERROR_DESCRIPTION_SIZE];
test_type *test;
int errorCounter = 0, testCounter = 0;
int verbose = 0;
if (argc > 1)
verbose = 1;
fileCorrectName = getenv ("ASN1PARSER");
if (!fileCorrectName)
fileCorrectName = "Test_parser.asn";
if (verbose != 0)
{
printf ("\n\n/****************************************/\n");
printf ("/* Test sequence : Test_parser */\n");
printf ("/****************************************/\n\n");
printf ("ASN1PARSER: %s\n", fileCorrectName);
}
result = asn1_parser2tree (fileCorrectName, &definitions, errorDescription);
if (result != ASN1_SUCCESS)
{
printf ("File '%s' not correct\n", fileCorrectName);
asn1_perror (result);
printf ("ErrorDescription = %s\n\n", errorDescription);
exit (1);
}
/* Only for Test */
/* asn1_visit_tree(stdout,definitions,"TEST_PARSER",ASN1_PRINT_ALL); */
/* Clear the definitions structures */
asn1_delete_structure (&definitions);
test = test_array;
while (test->lineNumber != 0)
{
testCounter++;
createFile (test->lineNumber, test->line);
result =
asn1_parser2tree (fileErroredName, &definitions, errorDescription);
asn1_delete_structure (&definitions);
if ((result != test->errorNumber) ||
(strcmp (errorDescription, test->errorDescription)))
{
errorCounter++;
printf ("ERROR N. %d:\n", errorCounter);
printf (" Line %d - %s\n", test->lineNumber, test->line);
printf (" Error expected: %s - %s\n",
asn1_strerror (test->errorNumber), test->errorDescription);
printf (" Error detected: %s - %s\n\n", asn1_strerror (result),
errorDescription);
exit (1);
}
test++;
}
if (verbose != 0)
{
printf ("Total tests : %d\n", testCounter);
printf ("Total errors: %d\n", errorCounter);
}
if (errorCounter > 0)
return 1;
exit (0);
}
|