forked from ericsonga/APCSAReview
-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathCodeTestHelper.java
1807 lines (1462 loc) · 60.2 KB
/
CodeTestHelper.java
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import java.io.*;
import java.lang.reflect.*;
import java.util.Arrays;
import java.util.Formatter;
import java.util.Objects;
import java.util.regex.Pattern;
import java.util.regex.Matcher;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import static org.junit.Assert.assertTrue;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.lang.reflect.Method;
import java.net.URI;
import java.util.Iterator;
import java.util.NoSuchElementException;
import javax.tools.SimpleJavaFileObject;
import javax.tools.JavaCompiler;
import javax.tools.JavaFileObject;
import javax.tools.SimpleJavaFileObject;
import javax.tools.ToolProvider;
/**
* The test class CodeTestHelper provides methods for testing different types of
* ActiveCode Assignments. This class provides helper methods to make writing
* test classes easier. Methods should be tested even if they do not exist.
*
* @author Kate McDonnell
* @version 3.0.2
* @since 2023-07-12
*
* @update 3.1.0 - Peter added a new set of `expect` methods.
* @update 3.0.3 - Peter added a codeDigestChanged method.
* @update 3.0.2 - Kate fixed the bug that main method only running once created
* @update 3.0.1 - Kate added code so main method only runs once
* @update 2.0.2 - Peter Seibel updated to allow for "throws exception" in main
* @update 2.0.1 - added getMethodOutputChangedCode - can change the program to
* change values in static code, fixed for loop regex for .length
* @update 2.0.0 - standard version since 2020
*/
public class CodeTestHelper {
public static boolean replit = false;
private static String results = "";
private static String mainOutput = "";
private String errorMessage = "";
private Class<?> c;
private String className;
private final double DEFAULT_ERROR = 0.005;
/*
* Constructors
* -----------------------------------------------------------------
*/
public CodeTestHelper() {
String name = findMainMethod();
setupClass(name);
}
public CodeTestHelper(String name) {
setupClass(name);
}
public CodeTestHelper(String name, String input) {
inContent = new ByteArrayInputStream(input.getBytes(StandardCharsets.UTF_8));
System.setIn(inContent);
setupClass(name);
System.setIn(System.in);
}
private void setupClass(String name) {
try {
this.className = name;
this.c = Class.forName(this.className);
if (mainOutput.equals("")) {
mainOutput = getMethodOutput("main");
}
} catch (Exception e1) {
try {
name = findMainMethod();
if (!name.equals("main not found")) {
this.className = name;
this.c = Class.forName(this.className);
if (mainOutput.equals("")) {
mainOutput = getMethodOutput("main");
}
} else {
System.out.println("No suitable main method found");
}
} catch (Exception e2) {
System.out.println("No suitable main method found");
}
}
}
public void changeClass(String name) {
try {
this.className = name;
this.c = Class.forName(this.className);
// mainOutput = getMethodOutput("main");
} catch (Exception e1) {
System.out.println("Class not found");
}
}
/* Output and Formatting Methods ----------------------------------------- */
/**
* This method will reset the final results variable so that multiple test runs
* will not continue to add together.
*/
public static void resetFinalResults() {
results = "";
}
/**
* This method will return the final results of all tests so that they can be
* printed to the screen. It then resets the final results so that the list does
* not continually grow between different tests.
*
* @return String list of final results in proper format
*/
public static String getFinalResults() {
String finalResults = "";// "Starting Output\n";
finalResults += mainOutput; // getMethodOutput(className, "main");
// finalResults += "\nEnding Output";
// finalResults += "\n--------------------------------------------------------";
finalResults += "\nStarting Tests\n";
finalResults += results.trim();
finalResults += "\nEnding Tests";
resetFinalResults();
return finalResults;
}
/**
* This method generates the proper results for the test and then performs the
* test by comparing the expected and actual strings. Non-string variables
* should be made Strings before calling this method, using "" + num.
*
* @param expected This is the String with the output we expect to get from the
* test
* @param actual This is the String with the actual output from the test
* @param msg This is the message that goes along with the test
* @return boolean true if the test passed, false if it did not
*/
public boolean getResults(String expected, String actual, String msg) {
return getResults(false, false, expected, actual, msg);
}
public boolean getResultsRegex(String expected, String actual, String msg) {
return getResults(true, false, expected, actual, msg);
}
public boolean getResultsRegEx(String expected, String actual, String msg) {
return getResults(true, false, expected, actual, msg);
}
public boolean getResultsContains(String expected, String actual, String msg) {
return getResults(false, true, expected, actual, msg);
}
public boolean getResults(boolean useRegex, boolean contain, String expected, String actual, String msg) {
while (actual.contains("<img") || actual.contains("<img")) {
int start = actual.contains("<img") ? actual.indexOf("<img") : actual.indexOf("<img");
int end = actual.contains(">") ? actual.indexOf(">", start) : actual.indexOf(">", start);
actual = actual.substring(0, start) + actual.substring(end + 1);
actual = actual.trim();
// System.out.println(actual);
}
expected = expected.trim();
actual = actual.trim();
boolean passed = false;
if (!passed && !contain) {
String clnExp = cleanString(expected);
String clnAct = cleanString(actual);
passed = clnExp.equals(clnAct);
}
if (!passed && !expected.equals(""))
contain = true;
if (!passed && (useRegex || isRegex(expected)))
passed = isMatch(actual, expected);
if (!passed && contain && (useRegex || isRegex(expected)))
passed = containsMatch(actual, expected);
if (!passed && contain) {
String clnExp = cleanString(expected);
String clnAct = cleanString(actual);
passed = clnAct.contains(clnExp);
}
String output = formatOutput(expected, actual, msg, passed);
results += output + "\n";
// System.out.println(output);
return passed;
}
/**
* This method assumes that you know whether the test passes or fails, allowing
* you to have expected and actual be different. This is helpful for testing a
* condtion where expected and actual might not be the same.
*
* @param expected This is the String with the output we expect to get from the
* test
* @param actual This is the String with the actual output from the test
* @param msg This is the message that goes along with the test
* @return boolean true if the test passed, false if it did not
*/
public boolean getResults(String expected, String actual, String msg, boolean pass) {
String output = formatOutput(expected, actual, msg, pass);
results += output + "\n";
return pass;
}
/**
* This method generates the proper results for the test and then performs the
* test by comparing the expected and actual double values, within a margin of
* error of 0.005, so |expected - actual| < 0.005
*
* @param expected This is the double with the output we expect to get from the
* test
* @param actual This is the double with the actual output from the test
* @param msg This is the message that goes along with the test
* @return boolean true if the test passed, false if it did not, using 0.005 as
* the default error (delta)
*/
public boolean getResults(double expected, double actual, String msg) {
return getResults(expected, actual, 0.005, msg);
}
/**
* This method generates the proper results for the test and then performs the
* test by comparing the expected and actual double values, within a given
* margin of error.
*
* @param expected This is the double with the output we expect to get from the
* test
* @param actual This is the double with the actual output from the test
* @param error This is the double error value (delta), so |expected -
* actual| < error
* @param msg This is the message that goes along with the test
* @return boolean true if the test passed, false if it did not, using given
* delta (error)
*/
public boolean getResults(double expected, double actual, double error, String msg) {
boolean passed = Math.abs(actual - expected) < error;
String output = formatOutput(String.format("%.5f", expected), String.format("%.5f", actual), msg, passed);
results += output + "\n";
// System.out.println(output);
return passed;
}
// New style assertions. Because JUnit doesn't report any information when
// tests pass we need to always append to results and then call JUnit's
// assertTrue method because the Runestone test runner *does* use the count
// of passes and attempts that is recorded by JUnit based on calls to
// assertions methods. Thus if you call any other JUnit assertions it will
// mess up the count that Runestone prints under the table of results.
public void expect(String expected, String got, String label) {
recordResult(expected, got, label, Objects.equals(expected, got));
}
public void expectExact(double expected, double got, String label) {
recordResult(String.valueOf(expected), String.valueOf(got), label, expected == got);
}
public void expect(double expected, double got, String label) {
recordResult(String.valueOf(expected), String.valueOf(got), label, Math.abs(expected - got) < 0.005);
}
public void expect(int expected, int got, String label) {
recordResult(String.valueOf(expected), String.valueOf(got), label, expected == got);
}
public void expect(boolean expected, boolean got, String label) {
recordResult(String.valueOf(expected), String.valueOf(got), label, expected == got);
}
private void recordResult(String expected, String got, String label, boolean passed) {
results += formatOutput(expected, got, label, passed) + "\n";
assertTrue(passed);
}
private String formatOutput(String expected, String actual, String msg, boolean passed) {
String output = "";
expected = expected.trim();
actual = actual.trim();
msg = msg.trim();
if (replit) {
// expected = expected.replaceAll("\\n", " ").replaceAll("\\r", " ");
// actual = actual.replaceAll("\\n", " ").replaceAll("\\r", " ");
output = "Expected: " + expected + "\nActual: " + actual + "\nMessage: " + msg + "\nPassed: " + passed
+ "\n";
} else {
expected = expected.replaceAll("\\n", "<br>").replaceAll("\\r", "<br>");
actual = actual.replaceAll("\\n", "<br>").replaceAll("\\r", "<br>");
msg = msg.replaceAll("\\n", "<br>").replaceAll("\\r", "<br>");
output = "Expected: " + expected + "\tActual: " + actual + "\tMessage: " + msg + "\tPassed: " + passed;
}
return output;
// return "Expected: " + expected + " Actual: " + actual + " Message: " + msg +
// " Passed: " + passed;
}
/*
* Get Method output code
* --------------------------------------------------------
*/
/**
* This method attempts to run a given method in a given class and returns the
* output if it succeeds - only works for methods with String[] args parameter
* at the moment ????
*
* @param String name of the class where the method is written
* @param String name of the method
* @return String output of method - whatever has been printed to the console or
* returned
*/
public String getMethodOutput(String methodName)// throws IOException
{
if (methodName.equals("main")) {
return getMethodOutput(methodName, new Object[][] { new String[0] });
}
return getMethodOutput(methodName, null);
}
/**
* This method attempts to run a given method in a given class with the
* specified arguments and returns the output if it succeeds - only works for
* methods with String[] args parameter at the moment ???? - is designed to
* return the output when any method has been called
*
* @param String name of the class where the method is written
* @param String name of the method
* @return String output of method - whatever has been printed to the console or
* returned
*/
public String getMethodOutput(String methodName, Object[] args) {
// System.out.println("Testing Method " + methodName + "... ");
errorMessage = "";
this.className = className;
try {
methods = c.getDeclaredMethods();
for (Method m : methods) {
if (m.getName().equals(methodName)) {
if (checkStaticMethod(m) && checkReturnType(m, "void")) {
return getStaticMethodOutput(m, args);
} else if (checkStaticMethod(m)) {
return getStaticMethodReturn(m, args);
} else {
return getInstanceMethodOutput(methodName, args);
}
}
}
if (errorMessage.equals(""))
errorMessage = "Method " + methodName + " does not exist (2)";
} catch (Exception e) {
if (errorMessage.equals(""))
errorMessage = "Class doesn't exist (2)";
}
return errorMessage;
}
/*
* Class Testing Methods
* ---------------------------------------------------------
*/
private Object o;
Method[] methods;
private Object[] defaultTestValues;
private String getInstanceMethodOutput(String methodName)// throws IOException
{
return getInstanceMethodOutput(methodName, null);
}
private String getInstanceMethodOutput(String methodName, Object[] args)// throws IOException
{
// System.out.println("Testing Method " + methodName + "... ");
errorMessage = "";
try {
methods = c.getDeclaredMethods();
for (Method m : methods) {
if (m.getName().equals(methodName)) {
if (!checkStaticMethod(m) && checkReturnType(m, "void")) {
return getInstanceMethodOutput(m, args);
} else if (!checkStaticMethod(m)) {
Object o = getTestInstance();
if (o == null) {
return "Object could not be created (4)";
}
Object result = m.invoke(o, args);
return cleanResult(result);
} else {
errorMessage = "Method not static or not void (4)";
}
}
}
if (errorMessage.equals(""))
errorMessage = "Method does not exist (4)";
} catch (Exception e) {
if (errorMessage.equals(""))
errorMessage = "Class doesn't exist (4)";
}
return errorMessage;
}
protected String cleanResult(Object result) {
// System.out.println(result.getClass().getComponentType().isArray());
if (result.getClass().isArray()) {
if (result.getClass().getComponentType().isArray()) {
String output = "[";
Object[][] array = (Object[][]) result;
for (int i = 0; i < array.length; i++) {
output += cleanResult(array[i]);
if (i != array.length - 1)
output += "\n";
}
return output + "]";
} else if (result.getClass().getComponentType().equals(int.class)) {
int[] array = (int[]) result;
return Arrays.toString(array);
} else if (result.getClass().getComponentType().equals(double.class)) {
double[] array = (double[]) result;
return Arrays.toString(array);
} else if (result.getClass().getComponentType().equals(boolean.class)) {
boolean[] array = (boolean[]) result;
return Arrays.toString(array);
} else if (result.getClass().getComponentType().equals(String.class)) {
String[] array = (String[]) result;
return Arrays.toString(array);
} else {
Object[] array = (Object[]) result;
return Arrays.toString(array);
}
}
return "" + result;
}
/*
* private String getString(String type, Method m, Object o, Object[] args) { if
* (type.equals("int[]")) { int[] results = {};//(int[])m.invoke(o, args);
* return Arrays.toString(results); }
*
* return ""+m.invoke(o, args); }
*/
private String getInstanceMethodOutput(Method m, Object[] args)// throws IOException
{
try {
if (c == null)
c = m.getDeclaringClass();
Object o = getTestInstance();
if (o == null) {
return "Object was not created (5)"; // errro
}
setupStreams();
if (args != null)
if (checkParameters(m, args) || m.getName().equals("main"))
m.invoke(o, args);
else
errorMessage = "Arguments incorrect (5)";
else
m.invoke(o, (Object[]) null);
String output = outContent.toString();
cleanUpStreams();
return output.trim();
} catch (Exception e) {
if (errorMessage.equals(""))
errorMessage = stackToString(e);
// errorMessage = "Method could not be invoked (5)";
}
if (errorMessage.equals(""))
errorMessage = "Method does not exist (5)";
cleanUpStreams();
return errorMessage;
}
/**
* This method prints the list of getter and setter methods in the class.
* Awesome Tutorial for Getters and Setters -
* http://tutorials.jenkov.com/java-reflection/getters-setters.html
*
* @param String name of the class where the methods are written
* @return Nothing
*/
public void printGettersSetters(Class aClass) {
Method[] methods = aClass.getMethods();
for (Method method : methods) {
if (isGetter(method))
System.out.println("getter: " + method);
if (isSetter(method))
System.out.println("setter: " + method);
}
}
private boolean isGetter(Method method) {
if (!method.getName().startsWith("get"))
return false;
if (method.getParameterTypes().length != 0)
return false;
if (void.class.equals(method.getReturnType()))
return false;
return true;
}
private boolean isSetter(Method method) {
if (!method.getName().startsWith("set"))
return false;
if (method.getParameterTypes().length != 1)
return false;
return true;
}
/**
* This method checks that the desired instance variables exist, based on name
* and type. Awesome Tutorial -
* http://tutorials.jenkov.com/java-reflection/private-fields-and-methods.html
*
* @param String array of <<type name>> pairs, such as {"int num", "double avg"}
* @return "pass" if they match, and an error message with information if they
* do not
*/
public String testInstanceVariables(String[] fieldNames) {
errorMessage = "";
try {
Field privateStringField;
String[] info;
String type, name;
for (String field : fieldNames) {
info = field.split(" ");
type = info[0];
name = info[1];
privateStringField = c.getDeclaredField(name);
if (privateStringField == null) {
errorMessage += "No field " + field + "\n";
continue;
}
String fieldInfo = privateStringField.toString();
// System.out.println("privateStringField = " + privateStringField.toString());
if (!fieldInfo.contains(name))
errorMessage += "Not named " + name + "\n";
else if (!fieldInfo.contains(name))
errorMessage += "Not type " + type + "\n";
}
if (errorMessage.equals(""))
return "pass";
} catch (Exception e) {
errorMessage = "fail";
}
return errorMessage.trim();
}
/**
* This method counts how many private and public instance variables are
* included in the class. Awesome Tutorial -
* http://tutorials.jenkov.com/java-reflection/private-fields-and-methods.html
*
* @param String name of the class
* @return String the number of private and/or public instance variables
*/
public String testPrivateInstanceVariables() {
errorMessage = "";
try {
int numPrivate = 0, numPublic = 0;
Field[] privateStringFields = c.getDeclaredFields();
String fieldInfo = "";
for (Field field : privateStringFields) {
fieldInfo = field.toString();
if (fieldInfo.contains("private"))
numPrivate++;
else
numPublic++;
}
if (numPublic == 0)
return "" + numPrivate + " Private";
else
return "" + numPrivate + " Private, " + numPublic + " Public";
} catch (Exception e) {
errorMessage = "fail";
}
return errorMessage.trim();
}
/**
* This method checks that instance variables of the desired type exist, without
* worrying about names. Awesome Tutorial -
* http://tutorials.jenkov.com/java-reflection/private-fields-and-methods.html
*
* @param String array of <<type>> values, such as {"int", "double"} in the
* desired order
* @return "pass" if they match, and an error message with information if they
* do not
*/
public String testInstanceVariableTypes(String[] types) {
errorMessage = "";
try {
int count = 0;
Field[] fields = c.getDeclaredFields();
String found = "";
for (Field field : fields) {
String fieldType = field.getGenericType().toString().replace("class java.", "");
// System.out.println("Field Type: " + fieldType);
int j = fieldType.indexOf(".");
if (j >= 0)
found += fieldType.substring(j + 1) + " ";
else
found += fieldType + " ";
for (int i = 0; i < types.length; i++) {
if (types[i] != null && field.toGenericString().contains(types[i])) {
count++;
types[i] = null;
break;
}
}
}
return found;
} catch (Exception e) {
errorMessage = "fail";
}
return errorMessage.trim();
}
/*
* Constructor Testing
* Code-------------------------------------------------------
*/
/**
* This method checks that the desired instance variables exist, based on name
* and type. Awesome Tutorial -
* http://tutorials.jenkov.com/java-reflection/private-fields-and-methods.html
*
* @param String array of <<type name>> pairs, such as {"int num", "double avg"}
* @return "pass" if they match, and an error message with information if they
* do not
*/
public String checkDefaultConstructor() {
return checkConstructor(0);
}
// adapted from
// https://docs.oracle.com/javase/tutorial/reflect/member/ctorInstance.html
public String checkConstructor(Object[] args) {
errorMessage = "";
try {
Constructor[] ctors = c.getDeclaredConstructors();
Constructor ctor = null;
for (int i = 0; i < ctors.length; i++) {
ctor = ctors[i];
if (args == null && ctor.getGenericParameterTypes().length == 0)
break;
if (args != null && ctor.getGenericParameterTypes().length == args.length)
break;
}
try {
ctor.setAccessible(true);
Object obj = null;
if (args == null)
obj = ctor.newInstance();
else
obj = ctor.newInstance(args);
return "pass";
} catch (InstantiationException x) {
errorMessage = "Could not instantiate class";
}
} catch (Exception e) {
errorMessage = "fail"; // "Default Constructor does not exist";
}
return errorMessage;
}
public String checkConstructor(int numArgs) {
errorMessage = "";
try {
Constructor[] ctors = c.getDeclaredConstructors();
Constructor ctor = null;
for (int i = 0; i < ctors.length; i++) {
ctor = ctors[i];
if (ctor.getGenericParameterTypes().length == numArgs)
return "pass";
}
return "fail";
} catch (Exception e) {
errorMessage = "fail"; // "Default Constructor does not exist";
}
return errorMessage;
}
public String checkConstructor(String argList) {
errorMessage = "";
int numArgs = countOccurences(argList, ",") + 1;
argList = argList.replaceAll(" ", "");
try {
Constructor[] ctors = c.getDeclaredConstructors();
Constructor ctor = null;
for (int i = 0; i < ctors.length; i++) {
ctor = ctors[i];
String header = ctor.toString();
// System.out.println(ctor.toGenericString());
if (ctor.getGenericParameterTypes().length == numArgs && header.contains(argList)) {
return "pass";
}
return "pass";
}
return "fail";
} catch (Exception e) {
errorMessage = "fail"; // "Default Constructor does not exist";
}
return errorMessage;
}
// https://stackoverflow.com/questions/14524751/cast-object-to-generic-type-for-returning
private <T> T convertInstanceOfObject(Object o, Class<T> clazz) {
try {
return clazz.cast(o);
} catch (ClassCastException e) {
errorMessage = "Object could not be cast as type " + clazz.getSimpleName();
return null;
}
}
public void setDefaultValues(Object[] o) {
defaultTestValues = o;
}
private Object getTestInstance() {
try {
Constructor[] ctors = c.getDeclaredConstructors();
Constructor ctor = null;
Constructor shortest = ctors[0];
for (int i = 0; i < ctors.length; i++) {
ctor = ctors[i];
// System.out.println(""+ ctor.getGenericParameterTypes().length);
if (ctor.getGenericParameterTypes().length == 0) {
// System.out.println("Using default constructor");
return ctor.newInstance();
}
if (checkConstructorDefaults(ctor)) {
return ctor.newInstance(defaultTestValues);
}
if (ctor.getGenericParameterTypes().length < shortest.getGenericParameterTypes().length)
shortest = ctor;
}
Object[] constValues = getConstructorParameters(shortest);
return shortest.newInstance(constValues);
} catch (Exception e) {
errorMessage = "Couldn't call constructor";
}
return null;
}
private boolean checkConstructorDefaults(Constructor ctor) {
Type[] argTypes = ctor.getGenericParameterTypes();
if (argTypes.length != defaultTestValues.length)
return false;
Type[] defTypes = getTypes(defaultTestValues);
for (int i = 0; i < argTypes.length; i++) {
// System.out.println(argTypes[i] + "\t" + defTypes[i]);
if (defTypes[i] != argTypes[i])
return false;
}
return true;
}
private Type[] getTypes(Object[] args) {
Type[] argTypes = new Type[args.length];
for (int i = 0; i < args.length; i++) {
// System.out.println(args[i]);
if (args[i] instanceof Integer) {
argTypes[i] = Integer.TYPE;
} else if (args[i] instanceof Double) {
argTypes[i] = Double.TYPE;
} else if (args[i] instanceof Boolean) {
argTypes[i] = Boolean.TYPE;
} else if (args[i] instanceof String) {
argTypes[i] = String.class;
} else if (args[i].getClass().isArray()) {
if (args[i].getClass().getComponentType().equals(int.class)) {
argTypes[i] = int[].class;
} else if (args[i].getClass().getComponentType().equals(double.class)) {
argTypes[i] = double[].class;
} else if (args[i].getClass().getComponentType().equals(boolean.class)) {
argTypes[i] = boolean[].class;
} else if (args[i].getClass().getComponentType().equals(String.class)) {
argTypes[i] = String[].class;
} else {
argTypes[i] = Object[].class;
}
} else {
argTypes[i] = Object.class;
}
}
return argTypes;
}
private Object[] getConstructorParameters(Constructor ctor) {
errorMessage = "";
Type[] argTypes = ctor.getGenericParameterTypes();
Object[] args = new Object[argTypes.length];
for (int i = 0; i < argTypes.length; i++) {
// System.out.println(args[i]);
if (argTypes[i] == Integer.TYPE) {
args[i] = getDefaultIntValue();
} else if (argTypes[i] == Double.TYPE) {
args[i] = getDefaultDoubleValue();
} else if (argTypes[i] == Boolean.TYPE) {
args[i] = getDefaultBooleanValue();
} else if (argTypes[i] == String.class) {
args[i] = getDefaultStringValue();
/*
* } else if (args[i].getClass().isArray() ){ if
* (args[i].getClass().getComponentType().equals(int.class)) { argTypes[i] =
* int[].class; } else if
* (args[i].getClass().getComponentType().equals(double.class)) { argTypes[i] =
* double[].class; } else if
* (args[i].getClass().getComponentType().equals(boolean.class)) { argTypes[i] =
* boolean[].class; } else if
* (args[i].getClass().getComponentType().equals(String.class)) { argTypes[i] =
* String[].class; } else { argTypes[i] = Object[].class; }
*/
} else {
args[i] = new Object();
}
}
return args;
}
private Integer getDefaultIntValue() {
if (defaultTestValues != null) {
for (int i = 0; i < defaultTestValues.length; i++) {
if (defaultTestValues[i] instanceof Integer)
return (Integer) defaultTestValues[i];
}
}
return 10;
}
private Double getDefaultDoubleValue() {
if (defaultTestValues != null) {
for (int i = 0; i < defaultTestValues.length; i++) {
if (defaultTestValues[i] instanceof Double)
return (Double) defaultTestValues[i];
}
}
return 10.0;
}
private Boolean getDefaultBooleanValue() {
if (defaultTestValues != null) {
for (int i = 0; i < defaultTestValues.length; i++) {
if (defaultTestValues[i] instanceof Boolean)
return (Boolean) defaultTestValues[i];
}
}
return false;
}
private String getDefaultStringValue() {
if (defaultTestValues != null) {
for (int i = 0; i < defaultTestValues.length; i++) {
if (defaultTestValues[i] instanceof String)
return (String) defaultTestValues[i];
}
}
return "Test String";
}
/*
* Static Method Tests
* -----------------------------------------------------------
*/
private boolean displayOutput = true;
private boolean displayErrorChecking = true;
protected String getStaticMethodOutput(Method m, Object[] arguments)// throws IOException