87 lines
2.4 KiB
C++
87 lines
2.4 KiB
C++
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <QFile>
|
|
#include <QDomDocument>
|
|
#include <QUrl>
|
|
#include <QDir>
|
|
|
|
#include "util/drecentmanager.h"
|
|
|
|
DCORE_USE_NAMESPACE
|
|
|
|
class ut_DRecentManager: public testing::Test
|
|
{
|
|
protected:
|
|
void SetUp() override;
|
|
void TearDown() override;
|
|
};
|
|
|
|
void ut_DRecentManager::SetUp()
|
|
{
|
|
QFile file("/tmp/test");
|
|
if (!file.open(QIODevice::WriteOnly | QIODevice::Text))
|
|
return;
|
|
file.close();
|
|
}
|
|
|
|
void ut_DRecentManager::TearDown()
|
|
{
|
|
QFile file("/tmp/test");
|
|
if (file.exists())
|
|
file.remove();
|
|
}
|
|
|
|
TEST_F(ut_DRecentManager, testDRecentManagerAddItem)
|
|
{
|
|
DRecentData data;
|
|
data.appExec = "deepin-editor";
|
|
data.appName = "Deepin Editor";
|
|
data.mimeType = "text/plain";
|
|
|
|
bool ok = DRecentManager::addItem("/tmp/test", data);
|
|
bool isFound = false;
|
|
QFile file(QDir::homePath() + "/.local/share/recently-used.xbel");
|
|
QDomDocument doc;
|
|
if (doc.setContent(&file)) {
|
|
QDomElement rootEle = doc.documentElement();
|
|
QDomNodeList nodeList = rootEle.elementsByTagName("bookmark");
|
|
QDomElement bookmarkEle;
|
|
QUrl url = QUrl::fromLocalFile("/tmp/test");
|
|
for (int i = 0; i < nodeList.size(); ++i) {
|
|
const QString fileUrl = nodeList.at(i).toElement().attribute("href");
|
|
if (fileUrl == url.toEncoded(QUrl::FullyDecoded)) {
|
|
bookmarkEle = nodeList.at(i).toElement();
|
|
isFound = true;
|
|
break;
|
|
}
|
|
}
|
|
ASSERT_TRUE(isFound == ok);
|
|
}
|
|
}
|
|
|
|
TEST_F(ut_DRecentManager, testDRecentManagerRemoveItem)
|
|
{
|
|
QString testFile = QUrl::fromLocalFile("/tmp/test").toEncoded(QUrl::FullyDecoded);
|
|
DRecentManager::removeItem(testFile);
|
|
QFile file(QDir::homePath() + "/.local/share/recently-used.xbel");
|
|
QDomDocument doc;
|
|
bool isFound = false;
|
|
if (doc.setContent(&file)) {
|
|
QDomElement rootEle = doc.documentElement();
|
|
QDomNodeList nodeList = rootEle.elementsByTagName("bookmark");
|
|
QDomElement bookmarkEle;
|
|
for (int i = 0; i < nodeList.size(); ++i) {
|
|
const QString fileUrl = nodeList.at(i).toElement().attribute("href");
|
|
if (fileUrl == testFile) {
|
|
bookmarkEle = nodeList.at(i).toElement();
|
|
isFound = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
ASSERT_TRUE(!isFound);
|
|
}
|