File: ut_dpageindicator.cpp

package info (click to toggle)
dtkwidget 5.7.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 36,540 kB
  • sloc: cpp: 63,257; ansic: 132; python: 88; sh: 42; makefile: 13
file content (66 lines) | stat: -rw-r--r-- 1,490 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// SPDX-FileCopyrightText: 2021 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later

#include <gtest/gtest.h>
#include <QTest>
#include <QDebug>

#include "DPageIndicator"

DWIDGET_USE_NAMESPACE

class ut_DPageIndicator : public testing::Test
{
protected:
    void SetUp() override;
    void TearDown() override;
    QWidget *widget = nullptr;
    DPageIndicator *indicator = nullptr;
};

void ut_DPageIndicator::SetUp()
{
    widget = new QWidget;
    indicator = new DPageIndicator(widget);
    widget->resize(300, 100);
}

void ut_DPageIndicator::TearDown()
{
    if (widget) {
        delete widget;
        widget = nullptr;
    }
}

TEST_F(ut_DPageIndicator, testDPageIndicatorPageCount)
{
    int pageCount = 10;
    indicator->setPageCount(pageCount);
    ASSERT_EQ(indicator->pageCount(), pageCount);
}

TEST_F(ut_DPageIndicator, testDPageIndicatorCurrentPage)
{
    int pageCount = 10;
    indicator->setPageCount(pageCount);
    for (int i = 0; i < indicator->pageCount(); ++i) {
        indicator->setCurrentPage(i);
        ASSERT_EQ(indicator->currentPageIndex(), i);
    }
}

TEST_F(ut_DPageIndicator, testDPageIndicatorNextAndPrevious)
{
    int pageCount = 10;
    indicator->setPageCount(pageCount);

    indicator->setCurrentPage(5);
    indicator->previousPage();
    ASSERT_EQ(indicator->currentPageIndex(), 4);

    indicator->setCurrentPage(5);
    indicator->nextPage();
    ASSERT_EQ(indicator->currentPageIndex(), 6);
}