Files
OpenSpace/tests/test_lrucache.inl
Kalle Bladin 8a617ee254 Feature/globebrowsing (#281)
* Solve bug related to corrupted texture tiles for certain sizes.

* Regard layer settings when sampling height map.

* Make Tile in to a class instead of a struct.

* Memory aware lru cache. Needs cleanup.

* Clean up and comment.

* Clean up and comment.

* Clean up

* Clean up and comment.

* Fix compilation error on Windows.

* Specify data type explicitly in GDAL xml config files for Utah height maps. Closes #242

* Update the key type for the memory aware lru cache and use a unordered map instead of a map.

* Solve pixel row size bug.

* Solve initialization bug.

* Add cache size as property of the globe browsing module.

* Use memory aware tile cache for text tile provider.

* Log GDAL errors as GHOUL messages

* Add the ability to toggle tile level limiting by available data

* Add ability to toggle GDAL logging

* Add lock guard to memory aware tile cache

* create base class rawtiledatareader that can be extended with different implementations than GDAL.

* Let GdalWrapper take care of global GDAL settings.

* Move iodescription to separate file

* Move some functionality from gdalrawtiledatareader to rawtiledatareader

* Move functionality from gdalrawtiledatareader to rawtiledatareader.

* GDAL is no longer a necessary dependency for the globebrowsing module. However to read tiles, the SimpleRawTileDataReader needs to be implemented. Otherwise GDAL is needed.

* Add ifdef check for GLOBEBROWSING_USE_GDAL

* Implement SimpleRawTileDataReader. Currently can only read pow 2 textures.

* Change ints to unsigned long longs

* Limit number of texture creations per tile provider per frame

* Solve linker error on windows

* Fix Windows build errors

* Fix crash in reading local patches

* Update lodglobe descriptions

* Abstract away overviews in gdal raw tile data reader

* Update Mars and Moon configs.

* Update screenshot script

* Update ghoul version

* Remove use of interaction depth below ellipsoid

* Normalize direction vector

* Use scale for distance swotch

* Go back to use of interaction depth below ellipsoid

* Fix comments on pull request.

* TileProviderByLevel error does not propagate up.

* Comment on mars and moon mod file

* Add model space cut off level as a property

* Update ChunkTile struct

* Minor clean up

* Go back tu constructor for ChunkTile
2017-04-13 10:14:47 +02:00

96 lines
3.9 KiB
C++

/*****************************************************************************************
* *
* OpenSpace *
* *
* Copyright (c) 2014-2017 *
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy of this *
* software and associated documentation files (the "Software"), to deal in the Software *
* without restriction, including without limitation the rights to use, copy, modify, *
* merge, publish, distribute, sublicense, and/or sell copies of the Software, and to *
* permit persons to whom the Software is furnished to do so, subject to the following *
* conditions: *
* *
* The above copyright notice and this permission notice shall be included in all copies *
* or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, *
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A *
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT *
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF *
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE *
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
****************************************************************************************/
#include "gtest/gtest.h"
#include <modules/globebrowsing/cache/lrucache.h>
#define _USE_MATH_DEFINES
#include <math.h>
#include <glm/glm.hpp>
class LRUCacheTest : public testing::Test {};
TEST_F(LRUCacheTest, Get) {
openspace::globebrowsing::cache::LRUCache<int, std::string> lru(4);
lru.put(1, "hej");
lru.put(12, "san");
ASSERT_STREQ(lru.get(1).c_str(), "hej") << "testing get";
}
TEST_F(LRUCacheTest, CleaningCache) {
openspace::globebrowsing::cache::LRUCache<int, double> lru(4);
lru.put(1, 1.2);
lru.put(12, 2.3);
lru.put(123, 33.4);
lru.put(1234, 4.5);
lru.put(12345, 6.7);
ASSERT_FALSE(lru.exist(1)) << "Element should have been cleaned out of cache";
ASSERT_TRUE(lru.exist(12)) << "Element should remain in cache";
}
struct MyKey {
int x, y;
};
bool operator==(const MyKey& a, const MyKey& b) {
return a.x == b.x && a.y == b.y;
}
std::ostream& operator<<(std::ostream& o, const MyKey& key) {
return o << key.x << ", " << key.y;
}
// custom specialization of std::hash can be injected in namespace std
namespace std {
template<> struct hash<MyKey> {
std::size_t operator()(MyKey const& s) const {
return s.x ^ (s.y << 1);
}
};
}
TEST_F(LRUCacheTest, StructKey) {
openspace::globebrowsing::cache::LRUCache<MyKey, std::string> lru(4);
// These two custom keys should be treated as equal
MyKey key1 = { 2, 3 };
MyKey key2 = { 2, 3 };
std::string val1 = "value 1";
std::string val2 = "value 2";
lru.put(key1, val1);
ASSERT_TRUE(lru.exist(key1));
ASSERT_EQ(lru.get(key1), val1);
// Putting key2 should replace key1
lru.put(key2, val2);
ASSERT_EQ(key1, key2) << "key 1 and key2 should be considered equal";
ASSERT_TRUE(lru.exist(key2));
ASSERT_EQ(lru.get(key1), val2);
ASSERT_EQ(lru.get(key2), val2);
}