Files
qt-creator/tests/auto/qml/qmldesigner/wizard/stylemodel-test.cpp

140 lines
3.4 KiB
C++
Raw Normal View History

// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#include "test-utilities.h"
#include "stylemodel.h"
using namespace StudioWelcome;
namespace {
std::unique_ptr<QStandardItemModel> createBackendModel(const QList<QString> &itemNames)
{
auto model = std::make_unique<QStandardItemModel>();
for (const QString &name : itemNames)
model->appendRow(new QStandardItem{name});
return model;
}
QList<QString> displayValues(const QAbstractListModel *model)
{
QList<QString> rows;
for (int rowIndex = 0; rowIndex < model->rowCount(); ++rowIndex) {
auto data = model->data(model->index(rowIndex, 0), Qt::DisplayRole);
rows.push_back(data.value<QString>());
}
return rows;
}
} // namespace
class QdsStyleModel : public ::testing::Test
{
protected:
StyleModel *aStyleModel(const QStringList &items)
{
m_styleModel = std::make_unique<StyleModel>();
m_backendModel = createBackendModel(items);
m_styleModel->setBackendModel(m_backendModel.get());
return m_styleModel.get();
}
private:
std::unique_ptr<StyleModel> m_styleModel;
std::unique_ptr<QStandardItemModel> m_backendModel;
};
/******************* TESTS *******************/
TEST_F(QdsStyleModel, emptyFilterReturnsAllItems)
{
auto model = aStyleModel({"a", "b", "c", "d"});
model->filter("");
ASSERT_THAT(displayValues(model), ElementsAreArray({"a", "b", "c", "d"}));
}
TEST_F(QdsStyleModel, unknownFilterReturnsEmpty)
{
auto model = aStyleModel({"a", "b", "c", "d"});
model->filter("Unknown Filter");
ASSERT_THAT(displayValues(model), IsEmpty());
}
TEST_F(QdsStyleModel, filterAllOnEmptyList)
{
auto model = aStyleModel({});
model->filter("all");
ASSERT_THAT(displayValues(model), IsEmpty());
}
TEST_F(QdsStyleModel, filterLightOnEmptyList)
{
auto model = aStyleModel({});
model->filter("light");
ASSERT_THAT(displayValues(model), IsEmpty());
}
TEST_F(QdsStyleModel, filterDarkOnEmptyList)
{
auto model = aStyleModel({});
model->filter("dark");
ASSERT_THAT(displayValues(model), IsEmpty());
}
TEST_F(QdsStyleModel, filterAll)
{
auto model = aStyleModel({"item a", "b", "item c", "item-d", "e"});
model->filter("all");
ASSERT_THAT(displayValues(model), ElementsAreArray({"item a", "b", "item c", "item-d", "e"}));
}
TEST_F(QdsStyleModel, filterLight)
{
auto model = aStyleModel({"Fusion", "Material Light", "Material Dark", "Universal Light"});
model->filter("light");
ASSERT_THAT(displayValues(model), ElementsAreArray({"Material Light", "Universal Light"}));
}
TEST_F(QdsStyleModel, filterDark)
{
auto model = aStyleModel({"Fusion", "Material Light", "Material Dark", "Universal Light"});
model->filter("dark");
ASSERT_THAT(displayValues(model), ElementsAreArray({"Material Dark"}));
}
TEST_F(QdsStyleModel, filterLightCaseInsensitive)
{
auto model = aStyleModel({"Fusion", "Material Light", "Material Dark", "Universal Light"});
model->filter("LIGHT");
ASSERT_THAT(displayValues(model), ElementsAreArray({"Material Light", "Universal Light"}));
}
TEST_F(QdsStyleModel, filterDarkCaseInsensitive)
{
auto model = aStyleModel({"Fusion", "Material Light", "Material Dark", "Universal Light"});
model->filter("DARK");
ASSERT_THAT(displayValues(model), ElementsAreArray({"Material Dark"}));
}