File: ArgumentParserTest.cpp

package info (click to toggle)
clutils 20031216-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,348 kB
  • ctags: 540
  • sloc: sh: 7,191; cpp: 4,128; makefile: 192
file content (245 lines) | stat: -rw-r--r-- 5,189 bytes parent folder | download
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
237
238
239
240
241
242
243
244
245
// Copyright (c) 2000-2003 Clifton Labs, Inc.  
// All rights reserved.

// Clifton Labs MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF 
// THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
// TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
// PARTICULAR PURPOSE, OR NON-INFRINGEMENT.  Clifton Labs SHALL NOT BE LIABLE
// FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING,
// RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
// DERIVATIVES.

// By using or copying this Software, Licensee agrees to abide by the
// intellectual property laws, and all other applicable laws of the
// U.S., and the terms of this license.

// Authors: Dale E. Martin   dmartin@cliftonlabs.com

#include <clutils/ArgumentParser.h>
#include <clutils/Debug.h>
#include <clutils/StringUtilities.h>
#include "ArgumentParserTest.h"

ArgumentParserTest *
ArgumentParserTest::instance(){
  static ArgumentParserTest *myArgumentParserTest = new ArgumentParserTest();
  
  return myArgumentParserTest;
}

ArgumentParser *
ArgumentParserTest::getDefaultArgumentParser(){
  static ArgumentParser::ArgRecord argList[] = {
    { "-boolArg", "help for boolean argument", &boolArg, ArgumentParser::BOOLEAN, true }, 
    { "-intArg", "help for integer argument", &intArg, ArgumentParser::INTEGER, true }, 
    { "-stringArg", "help for string argument", &stringArg, ArgumentParser::STRING, false },
    { "", "", 0 }
  };

  static ArgumentParser *defaultParser = new ArgumentParser( argList );
  return defaultParser;
}

int 
ArgumentParserTest::testConstruction(){
  int retval = 0;
  
  ArgumentParser *toTest = getDefaultArgumentParser();
  if( toTest == 0 ){
    retval = 1;
    goto end;
  }

 end:
  return retval;
}

int 
ArgumentParserTest::testNoneMatch(){
  int retval = 0;

  char *argv[4] = {
    "the",
    "quick",
    "brown",
    "fox"
  };

  ArgumentParser *toTest = getDefaultArgumentParser();
  vector<string> argVec = ArgumentParser::vectorifyArguments( 4, argv, false );
  if( argVec[0] != "the" ||
      argVec[1] != "quick" ||
      argVec[2] != "brown" ||
      argVec[3] != "fox" ){
    retval = 1;
    goto end;
  }
  toTest->checkArgs( argVec );
  
  if( boolArg != false || intArg != 0 || stringArg != ""  ){
    retval = 1;
    goto end;
  }
  
  if( argVec.size() != 4 ){
    retval = 1;
    goto end;
  }

 end:
  return retval;
}

int 
ArgumentParserTest::testBoolMatch(){
  int retval = 0;

  char *argv[1] = {
    "-boolArg",
  };

  ArgumentParser *toTest = getDefaultArgumentParser();
  vector<string> argVec = ArgumentParser::vectorifyArguments( 1, argv, false );
  if( argVec[0] != "-boolArg" ){
    retval = 1;
    goto end;
  }
  toTest->checkArgs( argVec );
  if( boolArg != true ){
    retval = 1;
    goto end;
  }
  if( argVec.size() > 0 ){
    retval = 1;
    goto end;
  }

 end:
  return retval;
}

int 
ArgumentParserTest::testIntMatch(){
  int retval = 0;

  char *argv[2] = {
    "-intArg",
    "77",
  };

  ArgumentParser *toTest = getDefaultArgumentParser();
  vector<string> argVec = ArgumentParser::vectorifyArguments( 2, argv, false );
  if( argVec[0] != "-intArg" || argVec[1] != "77" ){
    retval = 1;
    goto end;
  }
  toTest->checkArgs( argVec );
  if( intArg != 77 ){
    retval = 1;
    goto end;
  }
  if( argVec.size() > 0 ){
    retval = 1;
    goto end;
  }

 end:
  return retval;
}

int 
ArgumentParserTest::testStringMatch(){
  int retval = 0;

  char *argv[2] = {
    "-stringArg",
    "someString",
  };

  ArgumentParser *toTest = getDefaultArgumentParser();
  vector<string> argVec = ArgumentParser::vectorifyArguments( 2, argv, false );
  if( argVec[0] != "-stringArg" || argVec[1] != "someString" ){
    retval = 1;
    goto end;
  }
  toTest->checkArgs( argVec );
  if( stringArg != "someString" ){
    retval = 1;
    goto end;
  }
  if( argVec.size() > 0 ){
    retval = 1;
    goto end;
  }

 end:
  return retval;
}

int 
ArgumentParserTest::testMultiple(){
int retval = 0;
  char *argv[5] = {
    "-stringArg",
    "someString2",
    "-intArg",
    "12",
    "shouldnotmatch",
  };

  ArgumentParser *toTest = getDefaultArgumentParser();
  vector<string> argVec = ArgumentParser::vectorifyArguments( 5, argv, false );
  if( argVec[0] != "-stringArg" || argVec[1] != "someString2" ||
      argVec[2] != "-intArg" || argVec[3] != "12" || 
      argVec[4] != "shouldnotmatch"  ){
    retval = 1;
    goto end;
  }
  toTest->checkArgs( argVec );
  if( argVec.size() != 1 || argVec[0] != "shouldnotmatch" ){
    retval = 1;
    goto end;
  }
  if( stringArg != "someString2" || intArg != 12 ){
    retval = 1;
    goto end;
  }

 end:
  return retval;
}

int 
ArgumentParserTest::regressionTest(){
  int retval = 0;

  clutils::enableDebug();

  retval = testConstruction();
  if( retval != 0 ){
    goto end;
  }
  retval = testNoneMatch();
  if( retval != 0 ){
    goto end;
  }
  retval = testBoolMatch();
  if( retval != 0 ){
    goto end;
  }
  retval = testIntMatch();
  if( retval != 0 ){
    goto end;
  }
  retval = testStringMatch();
  if( retval != 0 ){
    goto end;
  }
  retval = testMultiple();
  if( retval != 0 ){
    goto end;
  }

 end:
  return retval;
}