tests: remove extra download in ecore_test_ecore_file_download

Summary:
this function is just a wrapper, avoid downloading the same file
multiple times

ref T6853
Depends on D5885

Reviewers: stefan_schmidt

Subscribers: cedric

Maniphest Tasks: T6853

Differential Revision: https://phab.enlightenment.org/D5886
This commit is contained in:
Mike Blumenkrantz 2018-04-09 13:36:56 +02:00 committed by Stefan Schmidt
parent a04e7be83a
commit 59520a57cb
1 changed files with 2 additions and 11 deletions

View File

@ -497,16 +497,6 @@ EFL_START_TEST(ecore_test_ecore_file_download)
strcat(dest_name, download_dir);
strcat(dest_name, "/");
strcat(dest_name, download_file);
res = ecore_file_download(download_url, dest_name, completion_cb,
progress_cb, NULL, &job);
fail_if(res != EINA_TRUE);
fail_if(!job);
ecore_main_loop_begin();
fprintf(stderr, "Downloaded %lld bytes\n", ecore_file_size(dest_name));
res = ecore_file_exists(dest_name);
fail_if(res != EINA_TRUE);
res = ecore_file_unlink(dest_name);
fail_if(res != EINA_TRUE);
res = ecore_file_download("xxyyzz", dest_name, completion_cb,
progress_cb, NULL, &job);
@ -525,8 +515,9 @@ EFL_START_TEST(ecore_test_ecore_file_download)
eina_hash_add(headers, "Content-type", "text/html");
res = ecore_file_download_full(download_url, dest_name, completion_cb,
progress_cb, NULL, NULL, headers);
progress_cb, NULL, &job, headers);
fail_if(res != EINA_TRUE);
fail_if(!job);
ecore_main_loop_begin();
fprintf(stderr, "Downloaded %lld bytes\n", ecore_file_size(dest_name));
res = ecore_file_exists(dest_name);