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

Small runs of zimcheck are now spreading love #288

Merged
merged 1 commit into from
Feb 6, 2022
Merged
Show file tree
Hide file tree
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
11 changes: 10 additions & 1 deletion src/zimcheck/zimcheck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,16 @@ int zimcheck (const std::vector<const char*>& args)
const std::chrono::duration<double> runtime(endtime - starttime);
const long seconds = lround(runtime.count());
std::ostringstream ss;
ss << "[INFO] Total time taken by zimcheck: " << seconds << " seconds.";
ss << "[INFO] Total time taken by zimcheck: ";
if ( seconds < 3 )
{
ss << "<3";
}
else
{
ss << seconds;
}
ss << " seconds.";
error.infoMsg(ss.str());
}
catch (const std::exception & e)
Expand Down
38 changes: 19 additions & 19 deletions test/zimcheck-test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ TEST(zimcheck, integrity_goodzimfile)
"[INFO] Zimcheck version is " VERSION "\n"
"[INFO] Verifying ZIM-archive structure integrity..." "\n"
"[INFO] Overall Test Status: Pass" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -276,7 +276,7 @@ TEST(zimcheck, checksum_goodzimfile)
"[INFO] Zimcheck version is " VERSION "\n"
"[INFO] Verifying Internal Checksum..." "\n"
"[INFO] Overall Test Status: Pass" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -295,7 +295,7 @@ TEST(zimcheck, metadata_goodzimfile)
"[INFO] Zimcheck version is " VERSION "\n"
"[INFO] Searching for metadata entries..." "\n"
"[INFO] Overall Test Status: Pass" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -314,7 +314,7 @@ TEST(zimcheck, favicon_goodzimfile)
"[INFO] Zimcheck version is " VERSION "\n"
"[INFO] Searching for Favicon..." "\n"
"[INFO] Overall Test Status: Pass" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -333,7 +333,7 @@ TEST(zimcheck, mainpage_goodzimfile)
"[INFO] Zimcheck version is " VERSION "\n"
"[INFO] Searching for main page..." "\n"
"[INFO] Overall Test Status: Pass" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -352,7 +352,7 @@ TEST(zimcheck, article_content_goodzimfile)
"[INFO] Zimcheck version is " VERSION "\n"
"[INFO] Verifying Articles' content..." "\n"
"[INFO] Overall Test Status: Pass" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -377,7 +377,7 @@ TEST(zimcheck, redundant_articles_goodzimfile)
"[INFO] Searching for redundant articles..." "\n"
" Verifying Similar Articles for redundancies..." "\n"
"[INFO] Overall Test Status: Pass" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -396,7 +396,7 @@ TEST(zimcheck, redirect_loop_goodzimfile)
"[INFO] Zimcheck version is " VERSION "\n"
"[INFO] Checking for redirect loops..." "\n"
"[INFO] Overall Test Status: Pass" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -421,7 +421,7 @@ const std::string ALL_CHECKS_OUTPUT_ON_GOODZIMFILE(
" Verifying Similar Articles for redundancies..." "\n"
"[INFO] Checking for redirect loops..." "\n"
"[INFO] Overall Test Status: Pass" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

TEST(zimcheck, nooptions_goodzimfile)
Expand Down Expand Up @@ -510,7 +510,7 @@ TEST(zimcheck, bad_checksum)
" ZIM Archive Checksum in archive: 00000000000000000000000000000000" "\n"
"" "\n"
"[INFO] Overall Test Status: Fail" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -532,7 +532,7 @@ TEST(zimcheck, metadata_poorzimfile)
" Title" "\n"
" Description" "\n"
"[INFO] Overall Test Status: Fail" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -553,7 +553,7 @@ TEST(zimcheck, favicon_poorzimfile)
"[ERROR] Favicon:" "\n"
" Favicon is missing" "\n"
"[INFO] Overall Test Status: Fail" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -574,7 +574,7 @@ TEST(zimcheck, mainpage_poorzimfile)
"[ERROR] Missing mainpage:" "\n"
" Main Page Index stored in Archive Header: 4294967295" "\n"
"[INFO] Overall Test Status: Fail" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -595,7 +595,7 @@ TEST(zimcheck, empty_items_poorzimfile)
"[ERROR] Empty articles:" "\n"
" Entry empty.html is empty" "\n"
"[INFO] Overall Test Status: Fail" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -620,7 +620,7 @@ TEST(zimcheck, internal_url_check_poorzimfile)
" Found 1 empty links in article: empty_link.html" "\n"
" ../../oops.html is out of bounds. Article: outofbounds_link.html" "\n"
"[INFO] Overall Test Status: Fail" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -641,7 +641,7 @@ TEST(zimcheck, external_url_check_poorzimfile)
"[ERROR] Invalid external links found:" "\n"
" http://a.io/pic.png is an external dependence in article external_link.html" "\n"
"[INFO] Overall Test Status: Fail" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -664,7 +664,7 @@ TEST(zimcheck, redundant_poorzimfile)
"[WARNING] Redundant data found:" "\n"
" article1.html and redundant_article.html" "\n"
"[INFO] Overall Test Status: Pass" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand All @@ -690,7 +690,7 @@ TEST(zimcheck, redirect_loop_poorzimfile)
" Redirect loop exists from entry redirect_loop3.html" "\n"
"" "\n"
"[INFO] Overall Test Status: Fail" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

test_zimcheck_single_option(
Expand Down Expand Up @@ -741,7 +741,7 @@ const std::string ALL_CHECKS_OUTPUT_ON_POORZIMFILE(
" Redirect loop exists from entry redirect_loop3.html" "\n"
"" "\n"
"[INFO] Overall Test Status: Fail" "\n"
"[INFO] Total time taken by zimcheck: 0 seconds." "\n"
"[INFO] Total time taken by zimcheck: <3 seconds." "\n"
);

TEST(zimcheck, nooptions_poorzimfile)
Expand Down