14
14
15
15
import org .junit .Assert ;
16
16
import org .junit .Test ;
17
- import org .xmlpull .v1 .XmlPullParserException ;
18
17
19
18
import soot .jimple .infoflow .results .InfoflowResults ;
20
19
21
20
public abstract class AndroidSpecificTest extends JUnitTests {
22
21
23
22
@ Test // (timeout=300000)
24
- public void runTestApplicationModeling1 () throws IOException , XmlPullParserException {
23
+ public void runTestApplicationModeling1 () throws IOException {
25
24
InfoflowResults res = analyzeAPKFile ("AndroidSpecific/ApplicationModeling1.apk" );
26
25
Assert .assertNotNull (res );
27
26
Assert .assertEquals (1 , res .size ());
28
27
}
29
28
30
29
@ Test (timeout = 300000 )
31
- public void runTestDirectLeak1 () throws IOException , XmlPullParserException {
30
+ public void runTestDirectLeak1 () throws IOException {
32
31
InfoflowResults res = analyzeAPKFile ("AndroidSpecific/DirectLeak1.apk" );
33
32
Assert .assertNotNull (res );
34
33
Assert .assertEquals (1 , res .size ());
35
34
}
36
35
37
36
@ Test (timeout = 300000 )
38
- public void runTestInactiveActivity () throws IOException , XmlPullParserException {
37
+ public void runTestInactiveActivity () throws IOException {
39
38
InfoflowResults res = analyzeAPKFile ("AndroidSpecific/InactiveActivity.apk" );
40
39
if (res != null )
41
40
Assert .assertEquals (0 , res .size ());
42
41
}
43
42
44
43
@ Test (timeout = 300000 )
45
- public void runTestLibrary2 () throws IOException , XmlPullParserException {
44
+ public void runTestLibrary2 () throws IOException {
46
45
InfoflowResults res = analyzeAPKFile ("AndroidSpecific/Library2.apk" );
47
46
Assert .assertNotNull (res );
48
47
Assert .assertEquals (1 , res .size ());
49
48
}
50
49
51
50
@ Test (timeout = 300000 )
52
- public void runTestLogNoLeak () throws IOException , XmlPullParserException {
51
+ public void runTestLogNoLeak () throws IOException {
53
52
InfoflowResults res = analyzeAPKFile ("AndroidSpecific/LogNoLeak.apk" );
54
53
if (res != null )
55
54
Assert .assertEquals (0 , res .size ());
56
55
}
57
56
58
57
@ Test (timeout = 300000 )
59
- public void runTestObfuscation1 () throws IOException , XmlPullParserException {
58
+ public void runTestObfuscation1 () throws IOException {
60
59
InfoflowResults res = analyzeAPKFile ("AndroidSpecific/Obfuscation1.apk" );
61
60
Assert .assertNotNull (res );
62
61
Assert .assertEquals (1 , res .size ());
63
62
}
64
63
65
64
@ Test (timeout = 300000 )
66
- public void runTestParcel1 () throws IOException , XmlPullParserException {
65
+ public void runTestParcel1 () throws IOException {
67
66
InfoflowResults res = analyzeAPKFile ("AndroidSpecific/Parcel1.apk" );
68
67
Assert .assertNotNull (res );
69
68
Assert .assertEquals (1 , res .size ());
70
69
}
71
70
72
71
@ Test (timeout = 300000 )
73
- public void runTestPrivateDataLeak1 () throws IOException , XmlPullParserException {
72
+ public void runTestPrivateDataLeak1 () throws IOException {
74
73
InfoflowResults res = analyzeAPKFile ("AndroidSpecific/PrivateDataLeak1.apk" );
75
74
Assert .assertNotNull (res );
76
75
Assert .assertEquals (1 , res .size ());
77
76
}
78
77
79
78
@ Test (timeout = 300000 )
80
- public void runTestPrivateDataLeak2 () throws IOException , XmlPullParserException {
79
+ public void runTestPrivateDataLeak2 () throws IOException {
81
80
InfoflowResults res = analyzeAPKFile ("AndroidSpecific/PrivateDataLeak2.apk" );
82
81
Assert .assertNotNull (res );
83
82
Assert .assertEquals (1 , res .size ());
84
83
}
85
84
86
85
@ Test (timeout = 300000 )
87
- // not supported, would require taint tracking via files
88
- public void runTestPrivateDataLeak3 () throws IOException , XmlPullParserException {
86
+ // not supported, would require taint tracking via files
87
+ public void runTestPrivateDataLeak3 () throws IOException {
89
88
int expected = 2 ;
90
89
if (mode == TestResultMode .FLOWDROID_BACKWARDS || mode == TestResultMode .FLOWDROID_FORWARDS )
91
90
expected = 1 ;
@@ -96,21 +95,21 @@ public void runTestPrivateDataLeak3() throws IOException, XmlPullParserException
96
95
}
97
96
98
97
@ Test (timeout = 300000 )
99
- public void runPublicAPIField1 () throws IOException , XmlPullParserException {
98
+ public void runPublicAPIField1 () throws IOException {
100
99
InfoflowResults res = analyzeAPKFile ("AndroidSpecific/PublicAPIField1.apk" );
101
100
Assert .assertNotNull (res );
102
101
Assert .assertEquals (1 , res .size ());
103
102
}
104
103
105
104
@ Test (timeout = 300000 )
106
- public void runPublicAPIField2 () throws IOException , XmlPullParserException {
105
+ public void runPublicAPIField2 () throws IOException {
107
106
InfoflowResults res = analyzeAPKFile ("AndroidSpecific/PublicAPIField2.apk" );
108
107
Assert .assertNotNull (res );
109
108
Assert .assertEquals (1 , res .size ());
110
109
}
111
110
112
111
@ Test (timeout = 300000 )
113
- public void runView1 () throws IOException , XmlPullParserException {
112
+ public void runView1 () throws IOException {
114
113
InfoflowResults res = analyzeAPKFile ("AndroidSpecific/View1.apk" );
115
114
Assert .assertNotNull (res );
116
115
Assert .assertEquals (1 , res .size ());
0 commit comments