forked from organicmaps/organicmaps
[new downloader] Tests on correct size calculation for group nodes in two component mwm case.
This commit is contained in:
parent
4e8c055027
commit
43b2dcf3b6
1 changed files with 13 additions and 0 deletions
|
@ -1222,6 +1222,19 @@ UNIT_TEST(StorageTest_ChildrenSizeSingleMwm)
|
|||
TEST_EQUAL(southKoreaCountry.GetSubtreeMwmSizeBytes(), 48394664, ());
|
||||
}
|
||||
|
||||
UNIT_TEST(StorageTest_ChildrenSizeTwoComponentMwm)
|
||||
{
|
||||
Storage storage(kTwoComponentMwmCountriesTxt, make_unique<TestMapFilesDownloader>());
|
||||
|
||||
Country const abkhaziaCountry = storage.CountryLeafByCountryId("Algeria");
|
||||
TEST_EQUAL(abkhaziaCountry.GetSubtreeMwmCounter(), 1, ());
|
||||
TEST_EQUAL(abkhaziaCountry.GetSubtreeMwmSizeBytes(), 90777295, ());
|
||||
|
||||
Country const algeriaCountry = storage.CountryByCountryId("Europe");
|
||||
TEST_EQUAL(algeriaCountry.GetSubtreeMwmCounter(), 3, ());
|
||||
TEST_EQUAL(algeriaCountry.GetSubtreeMwmSizeBytes(), 226126183, ());
|
||||
}
|
||||
|
||||
UNIT_TEST(StorageTest_ParentSingleMwm)
|
||||
{
|
||||
Storage storage(kSingleMwmCountriesTxt, make_unique<TestMapFilesDownloader>());
|
||||
|
|
Loading…
Add table
Reference in a new issue