ecore_con: adding test case for ecore_con_url_status_code_get.

Summary: Signed-off-by: Srivardhan Hebbar <sri.hebbar@samsung.com>

Reviewers: cedric

Differential Revision: https://phab.enlightenment.org/D3289

Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
This commit is contained in:
Srivardhan Hebbar 2015-11-09 16:21:42 -08:00 committed by Cedric BAIL
parent 38bc948eff
commit c99d50e00b
1 changed files with 3 additions and 0 deletions

View File

@ -33,12 +33,15 @@ _url_compl_cb(void *data, int type EINA_UNUSED, void *event_info)
{
url_test *info = data;
Ecore_Con_Event_Url_Complete *ev = event_info;
int status;
printf("Total downloaded bytes = %d\n",
ecore_con_url_received_bytes_get(ev->url_con));
if (info->_tmpfd)
{
status = ecore_con_url_status_code_get(ev->url_con);
fail_if(status != 220);
_free_url_test(info);
ecore_con_url_free(ev->url_con);
}