Remove CHATTERINO_TEST definition (#4526)
This commit is contained in:
+9
-15
@@ -8,6 +8,11 @@
|
||||
#include "common/QLogging.hpp"
|
||||
#include "debug/AssertInGuiThread.hpp"
|
||||
#include "debug/Benchmark.hpp"
|
||||
#include "singletons/Emotes.hpp"
|
||||
#include "singletons/helper/GifTimer.hpp"
|
||||
#include "singletons/WindowManager.hpp"
|
||||
#include "util/DebugCount.hpp"
|
||||
#include "util/PostToThread.hpp"
|
||||
|
||||
#include <boost/functional/hash.hpp>
|
||||
#include <QBuffer>
|
||||
@@ -20,13 +25,6 @@
|
||||
#include <functional>
|
||||
#include <queue>
|
||||
#include <thread>
|
||||
#ifndef CHATTERINO_TEST
|
||||
# include "singletons/Emotes.hpp"
|
||||
#endif
|
||||
#include "singletons/helper/GifTimer.hpp"
|
||||
#include "singletons/WindowManager.hpp"
|
||||
#include "util/DebugCount.hpp"
|
||||
#include "util/PostToThread.hpp"
|
||||
|
||||
// Duration between each check of every Image instance
|
||||
const auto IMAGE_POOL_CLEANUP_INTERVAL = std::chrono::minutes(1);
|
||||
@@ -55,12 +53,10 @@ namespace detail {
|
||||
{
|
||||
DebugCount::increase("animated images");
|
||||
|
||||
#ifndef CHATTERINO_TEST
|
||||
this->gifTimerConnection_ =
|
||||
getApp()->emotes->gifTimer.signal.connect([this] {
|
||||
this->advance();
|
||||
});
|
||||
#endif
|
||||
}
|
||||
|
||||
auto totalLength =
|
||||
@@ -75,11 +71,9 @@ namespace detail {
|
||||
}
|
||||
else
|
||||
{
|
||||
#ifndef CHATTERINO_TEST
|
||||
this->durationOffset_ = std::min<int>(
|
||||
int(getApp()->emotes->gifTimer.position() % totalLength),
|
||||
60000);
|
||||
#endif
|
||||
}
|
||||
this->processOffset();
|
||||
}
|
||||
@@ -228,9 +222,8 @@ namespace detail {
|
||||
}
|
||||
}
|
||||
|
||||
#ifndef CHATTERINO_TEST
|
||||
getApp()->windows->forceLayoutChannelViews();
|
||||
#endif
|
||||
|
||||
loadedEventQueued = false;
|
||||
}
|
||||
|
||||
@@ -558,8 +551,9 @@ void Image::expireFrames()
|
||||
#ifndef DISABLE_IMAGE_EXPIRATION_POOL
|
||||
|
||||
ImageExpirationPool::ImageExpirationPool()
|
||||
: freeTimer_(new QTimer)
|
||||
{
|
||||
QObject::connect(&this->freeTimer_, &QTimer::timeout, [this] {
|
||||
QObject::connect(this->freeTimer_, &QTimer::timeout, [this] {
|
||||
if (isGuiThread())
|
||||
{
|
||||
this->freeOld();
|
||||
@@ -572,7 +566,7 @@ ImageExpirationPool::ImageExpirationPool()
|
||||
}
|
||||
});
|
||||
|
||||
this->freeTimer_.start(
|
||||
this->freeTimer_->start(
|
||||
std::chrono::duration_cast<std::chrono::milliseconds>(
|
||||
IMAGE_POOL_CLEANUP_INTERVAL));
|
||||
}
|
||||
|
||||
@@ -19,14 +19,6 @@
|
||||
#include <memory>
|
||||
#include <mutex>
|
||||
|
||||
#ifdef CHATTERINO_TEST
|
||||
// When running tests, the ImageExpirationPool destructor can be called before
|
||||
// all images are deleted, leading to a use-after-free of its mutex. This
|
||||
// happens despite the lifetime of the ImageExpirationPool being (apparently)
|
||||
// static. Therefore, just disable it during testing.
|
||||
# define DISABLE_IMAGE_EXPIRATION_POOL
|
||||
#endif
|
||||
|
||||
namespace chatterino {
|
||||
namespace detail {
|
||||
template <typename Image>
|
||||
@@ -136,7 +128,7 @@ private:
|
||||
|
||||
private:
|
||||
// Timer to periodically run freeOld()
|
||||
QTimer freeTimer_;
|
||||
QTimer *freeTimer_;
|
||||
std::map<Image *, std::weak_ptr<Image>> allImages_;
|
||||
std::mutex mutex_;
|
||||
};
|
||||
|
||||
@@ -61,9 +61,7 @@ const ImagePtr &ImageSet::getImage3() const
|
||||
|
||||
const std::shared_ptr<Image> &getImagePriv(const ImageSet &set, float scale)
|
||||
{
|
||||
#ifndef CHATTERINO_TEST
|
||||
scale *= getSettings()->emoteScale;
|
||||
#endif
|
||||
|
||||
int quality = 1;
|
||||
|
||||
|
||||
@@ -216,11 +216,7 @@ void Emojis::sortEmojis()
|
||||
|
||||
void Emojis::loadEmojiSet()
|
||||
{
|
||||
#ifndef CHATTERINO_TEST
|
||||
getSettings()->emojiSet.connect([this](const auto &emojiSet) {
|
||||
#else
|
||||
const QString emojiSet = "twitter";
|
||||
#endif
|
||||
this->emojis.each([=](const auto &name,
|
||||
std::shared_ptr<EmojiData> &emoji) {
|
||||
QString emojiSetToUse = emojiSet;
|
||||
@@ -265,9 +261,7 @@ void Emojis::loadEmojiSet()
|
||||
EmoteName{emoji->value}, ImageSet{Image::fromUrl({url}, 0.35)},
|
||||
Tooltip{":" + emoji->shortCodes[0] + ":<br/>Emoji"}, Url{}});
|
||||
});
|
||||
#ifndef CHATTERINO_TEST
|
||||
});
|
||||
#endif
|
||||
}
|
||||
|
||||
std::vector<boost::variant<EmotePtr, QString>> Emojis::parse(
|
||||
|
||||
Reference in New Issue
Block a user