diff options
author | Daniel Burrows <dburrows@debian.org> | 2011-03-30 09:33:31 -0700 |
---|---|---|
committer | Daniel Burrows <dburrows@debian.org> | 2011-03-30 09:33:31 -0700 |
commit | 1b7122eb71649a3d1b1ca178d66e1a9d224a813e (patch) | |
tree | 497e28793f890c05e3a8de72207fb941bf36447a /tests | |
parent | 3605a316776eee62aeef478e3992399b7a62f008 (diff) | |
download | aptitude-1b7122eb71649a3d1b1ca178d66e1a9d224a813e.tar.gz |
Update tests for the new behavior of SizeToStr().
SizeToStr() now outputs a space between its nubmer and its units.
Arguably this is a case of tests that are too fragile: I should be able
to cut that dependency with a mock and thus avoid being broken by changes
to how SizeToStr() behaves.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_cmdline_download_progress_display.cc | 14 | ||||
-rw-r--r-- | tests/test_cmdline_download_status_display.cc | 38 |
2 files changed, 26 insertions, 26 deletions
diff --git a/tests/test_cmdline_download_progress_display.cc b/tests/test_cmdline_download_progress_display.cc index 72c4d282..8ff1e5f9 100644 --- a/tests/test_cmdline_download_progress_display.cc +++ b/tests/test_cmdline_download_progress_display.cc @@ -262,7 +262,7 @@ TEST_P(CmdlineDownloadProgressDisplayTest, UpdateProgress2) TEST_P(CmdlineDownloadProgressDisplayTest, FileStartedWithIdNoNameWithFileSize) { - EXPECT_MSG(L"Get: 4 [100B]"); + EXPECT_MSG(L"Get: 4 [100 B]"); progress->file_started("", 4, 100); } @@ -283,14 +283,14 @@ TEST_P(CmdlineDownloadProgressDisplayTest, FileStartedWithIdNoFileSize) TEST_P(CmdlineDownloadProgressDisplayTest, FileStartedNoIdWithFileSize) { - EXPECT_MSG(L"Get: thefile [210B]"); + EXPECT_MSG(L"Get: thefile [210 B]"); progress->file_started("thefile", optional<unsigned long>(), 210); } TEST_P(CmdlineDownloadProgressDisplayTest, FileStartedWithIdWithFileSize) { - EXPECT_MSG(L"Get: 6 another file [210B]"); + EXPECT_MSG(L"Get: 6 another file [210 B]"); progress->file_started("another file", 6, 210); } @@ -299,7 +299,7 @@ TEST_P(CmdlineDownloadProgressDisplayTest, FileStartedWithIdWithFileSize) TEST_P(CmdlineDownloadProgressDisplayTest, FileAlreadyDownloadedWithIdNoNameWithFileSize) { - EXPECT_MSG(L"Hit 4 [100B]"); + EXPECT_MSG(L"Hit 4 [100 B]"); progress->file_already_downloaded("", 4, 100); } @@ -320,14 +320,14 @@ TEST_P(CmdlineDownloadProgressDisplayTest, FileAlreadyDownloadedWithIdNoFileSize TEST_P(CmdlineDownloadProgressDisplayTest, FileAlreadyDownloadedNoIdWithFileSize) { - EXPECT_MSG(L"Hit thefile [210B]"); + EXPECT_MSG(L"Hit thefile [210 B]"); progress->file_already_downloaded("thefile", optional<unsigned long>(), 210); } TEST_P(CmdlineDownloadProgressDisplayTest, FileAlreadyDownloadedWithIdWithFileSize) { - EXPECT_MSG(L"Hit 6 another file [210B]"); + EXPECT_MSG(L"Hit 6 another file [210 B]"); progress->file_already_downloaded("another file", 6, 210); } @@ -501,7 +501,7 @@ TEST_P(CmdlineDownloadProgressDisplayTest, FileFinishedWithDescriptionWithId) TEST_P(CmdlineDownloadProgressDisplayTest, Done) { - EXPECT_MSG(L"Fetched 100B in 5s (20B/s)"); + EXPECT_MSG(L"Fetched 100 B in 5s (20 B/s)"); progress->done(100, 5, 20); } diff --git a/tests/test_cmdline_download_status_display.cc b/tests/test_cmdline_download_status_display.cc index a19b1998..db6f9ad3 100644 --- a/tests/test_cmdline_download_status_display.cc +++ b/tests/test_cmdline_download_status_display.cc @@ -1,6 +1,6 @@ /** \file test_cmdline_download_status_display.cc */ -// Copyright (C) 2010 Daniel Burrows +// Copyright (C) 2010-2011 Daniel Burrows // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as @@ -270,7 +270,7 @@ TEST_P(CmdlineDownloadStatusDisplayTest, NoCpsNoFilesOvercompleteProgressNoTimeE // download rate indicator and no time estimate. TEST_P(CmdlineDownloadStatusDisplayTest, HasCpsNoFilesNoProgressNoTimeEstimate) { - EXPECT_MSG(L"0% [Working] 20.0kB/s 0s"); + EXPECT_MSG(L"0% [Working] 20.0 kB/s 0s"); status_display->display_status(status(20 * 1000, make_files(), @@ -306,7 +306,7 @@ TEST_P(CmdlineDownloadStatusDisplayTest, NoCpsNoFilesNoProgressHasTimeEstimate) // time estimate and a download rate indicator. TEST_P(CmdlineDownloadStatusDisplayTest, HasCpsNoFilesNoProgressHasTimeEstimate) { - EXPECT_MSG(L"0% [Working] 40.0kB/s 30s"); + EXPECT_MSG(L"0% [Working] 40.0 kB/s 30s"); status_display->display_status(status(40 * 1000, make_files(), @@ -318,7 +318,7 @@ TEST_P(CmdlineDownloadStatusDisplayTest, HasCpsNoFilesNoProgressHasTimeEstimate) // file at 0%. TEST_P(CmdlineDownloadStatusDisplayTest, OneFileWithNoProgress) { - EXPECT_MSG(L"0% [no progress 0/10B 0%]"); + EXPECT_MSG(L"0% [no progress 0/10 B 0%]"); status_display->display_status(status(0, make_files(no_progress), 0, 0)); } @@ -327,7 +327,7 @@ TEST_P(CmdlineDownloadStatusDisplayTest, OneFileWithNoProgress) // file at 45.4%. TEST_P(CmdlineDownloadStatusDisplayTest, OneFileAlmostHalfCompleteRoundDown) { - EXPECT_MSG(L"0% [1 round down 454/1000B 45%]"); + EXPECT_MSG(L"0% [1 round down 454/1000 B 45%]"); status_display->display_status(status(0, make_files(almost_half_complete_round_down), 0, 0)); } @@ -345,7 +345,7 @@ TEST_P(CmdlineDownloadStatusDisplayTest, OneFileAlmostHalfCompleteRoundDownWithC // file at 45.5%. TEST_P(CmdlineDownloadStatusDisplayTest, OneFileAlmostHalfCompleteRoundUp) { - EXPECT_MSG(L"0% [2 round up 455/1000B 46%]"); + EXPECT_MSG(L"0% [2 round up 455/1000 B 46%]"); status_display->display_status(status(0, make_files(almost_half_complete_round_up), 0, 0)); } @@ -354,7 +354,7 @@ TEST_P(CmdlineDownloadStatusDisplayTest, OneFileAlmostHalfCompleteRoundUp) // one file at 100%. TEST_P(CmdlineDownloadStatusDisplayTest, OneFileFullyComplete) { - EXPECT_MSG(L"0% [4 complete 10/10B 100%]"); + EXPECT_MSG(L"0% [4 complete 10/10 B 100%]"); status_display->display_status(status(0, make_files(full_progress), 0, 0)); } @@ -391,7 +391,7 @@ TEST_P(CmdlineDownloadStatusDisplayTest, OneFileWithProgressZeroSizeWithComplete // one file above 100%. TEST_P(CmdlineDownloadStatusDisplayTest, OneFileOvercomplete) { - EXPECT_MSG(L"0% [6 overcomplete progress 15/10B 100%]"); + EXPECT_MSG(L"0% [6 overcomplete progress 15/10 B 100%]"); status_display->display_status(status(0, make_files(overcomplete_progress), 0, 0)); } @@ -399,28 +399,28 @@ TEST_P(CmdlineDownloadStatusDisplayTest, OneFileOvercomplete) // Various tests of cases involving the mode string: TEST_P(CmdlineDownloadStatusDisplayTest, OneFileNoProgressWithModeNoIdNoDescription) { - EXPECT_MSG(L"0% [the mode 0/10B 0%]"); + EXPECT_MSG(L"0% [the mode 0/10 B 0%]"); status_display->display_status(status(0, make_files(no_progress_with_mode_no_id_no_description), 0, 0)); } TEST_P(CmdlineDownloadStatusDisplayTest, OneFileNoProgressWithModeWithIdNoDescription) { - EXPECT_MSG(L"0% [5 the mode 0/10B 0%]"); + EXPECT_MSG(L"0% [5 the mode 0/10 B 0%]"); status_display->display_status(status(0, make_files(no_progress_with_mode_with_id_no_description), 0, 0)); } TEST_P(CmdlineDownloadStatusDisplayTest, OneFileNoProgressWithModeNoIdWithDescription) { - EXPECT_MSG(L"0% [no progress the mode 0/10B 0%]"); + EXPECT_MSG(L"0% [no progress the mode 0/10 B 0%]"); status_display->display_status(status(0, make_files(no_progress_with_mode_no_id_with_description), 0, 0)); } TEST_P(CmdlineDownloadStatusDisplayTest, OneFileNoProgressWithModeWithIdWithDescription) { - EXPECT_MSG(L"0% [5 no progress the mode 0/10B 0%]"); + EXPECT_MSG(L"0% [5 no progress the mode 0/10 B 0%]"); status_display->display_status(status(0, make_files(no_progress_with_mode_with_id_with_description), 0, 0)); } @@ -436,7 +436,7 @@ TEST_P(CmdlineDownloadStatusDisplayTest, OneFileNoProgressOutOfZeroWithMode) // Test that displaying two files works as expected. TEST_P(CmdlineDownloadStatusDisplayTest, TwoFiles) { - EXPECT_MSG(L"0% [no progress 0/10B 0%] [3 half complete 5/10B 50%]"); + EXPECT_MSG(L"0% [no progress 0/10 B 0%] [3 half complete 5/10 B 50%]"); status_display->display_status(status(0, make_files(no_progress, half_complete), 0, 0)); } @@ -454,9 +454,9 @@ TEST_P(CmdlineDownloadStatusDisplayTest, ClipOverwideDisplayWithDownloadRateIndi { set_screen_width(17); - EXPECT_MSG(L"0% [Wor 300B/s 0s"); + EXPECT_MSG(L"0% [Wor 30 B/s 0s"); - status_display->display_status(status(300, make_files(), 0, 0)); + status_display->display_status(status(30, make_files(), 0, 0)); } TEST_P(CmdlineDownloadStatusDisplayTest, ClipOverwideDisplayWithTimeRemainingAndWideCharOverlapped) @@ -509,18 +509,18 @@ TEST_P(CmdlineDownloadStatusDisplayTest, ClipOverwideDisplayWithDownloadRateIndi { set_screen_width(14); - EXPECT_MSG(L"0% 300B/s 20s"); + EXPECT_MSG(L"0% 30 B/s 20s"); - status_display->display_status(status(300, make_files(), 0, 20)); + status_display->display_status(status(30, make_files(), 0, 20)); } TEST_P(CmdlineDownloadStatusDisplayTest, ClipOverwideDisplayWithDownloadRateIndicatorAndTimeRemainingTooNarrow) { set_screen_width(9); - EXPECT_MSG(L" 300B/s 20s"); + EXPECT_MSG(L" 30 B/s 20s"); - status_display->display_status(status(300, make_files(), 0, 20)); + status_display->display_status(status(30, make_files(), 0, 20)); } TEST_P(CmdlineDownloadStatusDisplayTest, ZeroTerminalWidth) |