Skip to content

Commit ecc5978

Browse files
committed
added a test case to help resolve #781
1 parent bdda187 commit ecc5978

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

soot-infoflow/test/soot/jimple/infoflow/test/OtherTestCode.java

+13
Original file line numberDiff line numberDiff line change
@@ -706,4 +706,17 @@ public void testNeighbors1() {
706706
// where the neighbors only differ in their corresponding call site
707707
cm.publish(i);
708708
}
709+
710+
public void skipOverConstructorTest1() {
711+
MyClass myVar = new MyClass();
712+
myVar.myString = TelephonyManager.getDeviceId();
713+
MyClass mySecondVar = new MyClass();
714+
ConnectionManager cm = new ConnectionManager();
715+
cm.publish(myVar.myString);
716+
}
717+
718+
class MyClass {
719+
String myString;
720+
}
721+
709722
}

soot-infoflow/test/soot/jimple/infoflow/test/junit/OtherTests.java

+11-1
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,6 @@ public void skipOverObjectTest2() {
437437
Assert.assertTrue(infoflow.getResults().isPathBetweenMethods(sink, sourceDeviceId));
438438
}
439439

440-
441440
@Test(timeout = 300000)
442441
public void testNeighbors1() {
443442
IInfoflow infoflow = initInfoflow();
@@ -447,4 +446,15 @@ public void testNeighbors1() {
447446
checkInfoflow(infoflow, 1);
448447
Assert.assertEquals(3, infoflow.getResults().getResultSet().size());
449448
}
449+
450+
@Test(timeout = 300000)
451+
public void skipOverConstructorTest1() {
452+
IInfoflow infoflow = initInfoflow();
453+
List<String> epoints = new ArrayList<String>();
454+
epoints.add("<soot.jimple.infoflow.test.OtherTestCode: void skipOverConstructorTest1()>");
455+
infoflow.computeInfoflow(appPath, libPath, epoints, sources, sinks);
456+
checkInfoflow(infoflow, 1);
457+
Assert.assertTrue(infoflow.getResults().isPathBetweenMethods(sink, sourceDeviceId));
458+
}
459+
450460
}

0 commit comments

Comments
 (0)