Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix matchers for net fail #7

Open
wants to merge 1 commit into
base: cf/experiments
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions notebooks/reachExpGPT/ReachExpGPT.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -943,8 +943,8 @@
" val error_resp = AbsMsg(CBEnter, SubClassMatcher(Set(\"com.example.networkfailure.MainActivity$MyErrorListener\"), \"void onErrorResponse\\\\(.*\\\\)\", \"onErrorResponse\"),\n",
" TopVal::f::Nil)\n",
" val queue_add = AbsMsg(CIExit, SubClassMatcher(Set(\"com.android.volley.RequestQueue\"), \".* add\\\\(.*\\\\)\", \"queueAdd\"), TopVal::d::a::Nil)\n",
" val construct_req = AbsMsg(CIExit, SubClassMatcher(Set(\"com.android.volley.StringRequest\"), \".*<init>.*\", \"consRequest\"),Nil)\n",
" val construct_err = AbsMsg(CIExit, SubClassMatcher(Set(\"com.example.networkfailure.MainActivity$MyErrorListener\"), \".*<init>.*\", \"consErr\"), Nil) \n",
" val construct_req = AbsMsg(CIExit, SubClassMatcher(Set(\"com.android.volley.toolbox.StringRequest\"), \".*<init>.*\", \"consRequest\"),TopVal::Nil)\n",
" val construct_err = AbsMsg(CIExit, SubClassMatcher(Set(\"com.example.networkfailure.MainActivity$MyErrorListener\"), \".*<init>.*\", \"consErr\"), TopVal::Nil) \n",
" val construct_with_error = LSSpec(f::Nil,Nil,construct_err,error_resp)\n",
" val disallow = LSSpec(a::Nil, d::Nil, SDialog.showI,SpecSignatures.Activity_onDestroy_exit)\n",
" val enableSpecs = Set[LSSpec]()\n",
Expand All @@ -963,7 +963,10 @@
" val disallow = NetFail.disallow\n",
" val enableSpecs = NetFail.enableSpecs\n",
"\n",
" val query = Reachable(LifeState.Signature(\"com.example.networkfailure.MainActivity\", \"void fetchUserData()\"),82)\n",
" val dis = LSSpec(Nil,Nil, LSTrue, NetFail.construct_req.copy(mt=CIEnter))\n",
" val query = DisallowedCallin(\"com.example.networkfailure.MainActivity\",\"void fetchUserData()\", \n",
" dis)\n",
" //Reachable(LifeState.Signature(\"com.example.networkfailure.MainActivity\", \"void fetchUserData()\"),87)\n",
" /*Reachable(LifeState.Signature(\"com.example.networkfailure.MainActivity$MyErrorListener\", \n",
" \"void onErrorResponse(com.android.volley.VolleyError)\"), 52)*/\n",
"\n",
Expand All @@ -976,7 +979,7 @@
" outFolder = Some(configOutputDir.toString),\n",
" initialQuery = List(query), truncateOut=false,\n",
" specSet = PickleSpec(NetFail.enableSpecs, \n",
" Set(disallow), \n",
" Set(dis), \n",
" NetFail.allMsg\n",
" ),\n",
" componentFilter = None,\n",
Expand Down Expand Up @@ -1009,7 +1012,7 @@
" }\n",
"}\n",
"\n",
"if(rerun){\n",
"if(true || rerun){\n",
" runNetFail()\n",
"}\n",
"\n",
Expand Down Expand Up @@ -1078,7 +1081,7 @@
" val enableSpecs = IneffNet.enableSpecs\n",
"\n",
" val query = //Reachable(LifeState.Signature(\"com.example.inefficientnetwork.MainActivity\", \"void fetchArticles()\"),67)\n",
" DisallowedCallin(\"android.widget.TextView\",\"void setText(java.lang.CharSequence)\", IneffNet.disallow)\n",
" DisallowedCallin(\"com.example.inefficientnetwork.MainActivity\",\"void fetchArticles()\", IneffNet.disallow)\n",
" //DisallowedCallin(\"com.example.inefficientnetwork.MainActivity\", \"void fetchArticles()\", IneffNet.disallow)\n",
" //DisallowedCallin(\"com.android.volley.toolbox.Volley\", \"com.android.volley.RequestQueue newRequestQueue(android.content.Context)\", IneffNet.disallow)\n",
" //Reachable(LifeState.Signature(\"com.example.inefficientnetwork.MainActivity\", \"void fetchArticles()\"),104)\n",
Expand Down