tests: use different website for ecore_test_ecore_file_download

Summary:
while it may be the case that we do not control example.com, it is also
the case that loading anything from enlightenment.org takes 10+ seconds
longer (at minimum) than loading example.com

ref T6853
Depends on D5884

Reviewers: stefan_schmidt

Subscribers: cedric

Maniphest Tasks: T6853

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

View File

@ -479,7 +479,7 @@ EFL_START_TEST(ecore_test_ecore_file_download)
{
const char *download_dir;
const char *download_file;
const char *download_url = "http://www.enlightenment.org/feed.php";
const char *download_url = "http://example.com";
char dest_name[MAXSIZE] = {'\0'};
Eina_Bool res;
Eina_Hash *headers;
@ -491,7 +491,7 @@ EFL_START_TEST(ecore_test_ecore_file_download)
download_dir = get_tmp_dir();
fail_if(!download_dir);
download_file = ecore_file_file_get(download_url);
download_file = ecore_file_file_get(download_url); //example.com
fail_if(!download_file);
fail_if(!ecore_file_download_protocol_available("http://"));
strcat(dest_name, download_dir);
@ -522,7 +522,7 @@ EFL_START_TEST(ecore_test_ecore_file_download)
fail_if(res != EINA_TRUE);
headers = eina_hash_string_small_new(NULL);
eina_hash_add(headers, "Content-type", "text/xml");
eina_hash_add(headers, "Content-type", "text/html");
res = ecore_file_download_full(download_url, dest_name, completion_cb,
progress_cb, NULL, NULL, headers);