File: iptunnelsettingtest.cpp

package info (click to toggle)
kf6-networkmanager-qt 6.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,120 kB
  • sloc: cpp: 27,725; xml: 1,079; sh: 13; makefile: 7
file content (97 lines) | stat: -rw-r--r-- 3,534 bytes parent folder | download | duplicates (2)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*
    SPDX-FileCopyrightText: 2018 Pranav Gade <pranavgade20@gmail.com>

    SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/

#include "iptunnelsettingtest.h"

#include "settings/iptunnelsetting.h"

#include <libnm/NetworkManager.h>

#include <QTest>

#if !NM_CHECK_VERSION(1, 12, 0)
#define NM_SETTING_IP_TUNNEL_FLAGS "flags"
#endif

void IpTunnelSettingTest::testSetting_data()
{
    QTest::addColumn<quint32>("mode");
    QTest::addColumn<bool>("pathMtuDiscovery");
    QTest::addColumn<quint32>("encapsulationLimit");
    QTest::addColumn<quint32>("flags");
    QTest::addColumn<quint32>("flowLabel");
    QTest::addColumn<quint32>("mtu");
    QTest::addColumn<quint32>("tos");
    QTest::addColumn<quint32>("ttl");
    QTest::addColumn<QString>("inputKey");
    QTest::addColumn<QString>("local");
    QTest::addColumn<QString>("parent");
    QTest::addColumn<QString>("outputKey");
    QTest::addColumn<QString>("remote");

    QTest::newRow("setting1") << (quint32)2 // mode
                              << false // pathMtuDiscovery
                              << (quint32)1 // encapsulationLimit
                              << (quint32)0x02 // flags
                              << (quint32)1 // flowLabel
                              << (quint32)1 // mtu
                              << (quint32)1 // tos
                              << (quint32)1 // ttl
                              << QString("key") // inputKey
                              << QString("abc") // local
                              << QString("par") // parent
                              << QString("out") // outputKey
                              << QString("rem"); // remote
}

void IpTunnelSettingTest::testSetting()
{
    QFETCH(quint32, mode);
    QFETCH(bool, pathMtuDiscovery);
    QFETCH(quint32, encapsulationLimit);
    QFETCH(quint32, flags);
    QFETCH(quint32, flowLabel);
    QFETCH(quint32, mtu);
    QFETCH(quint32, tos);
    QFETCH(quint32, ttl);
    QFETCH(QString, inputKey);
    QFETCH(QString, local);
    QFETCH(QString, parent);
    QFETCH(QString, outputKey);
    QFETCH(QString, remote);

    QVariantMap map;

    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_MODE), mode);
    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_PATH_MTU_DISCOVERY), pathMtuDiscovery);
    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_ENCAPSULATION_LIMIT), encapsulationLimit);
    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_FLAGS), flags);
    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_FLOW_LABEL), flowLabel);
    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_MTU), mtu);
    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_TOS), tos);
    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_TTL), ttl);
    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_INPUT_KEY), inputKey);
    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_LOCAL), local);
    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_PARENT), parent);
    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_OUTPUT_KEY), outputKey);
    map.insert(QLatin1String(NM_SETTING_IP_TUNNEL_REMOTE), remote);

    NetworkManager::IpTunnelSetting setting;
    setting.fromMap(map);

    QVariantMap map1 = setting.toMap();

    // Will fail if set some default values, because they are skipped in toMap() method
    QVariantMap::const_iterator it = map.constBegin();
    while (it != map.constEnd()) {
        QCOMPARE(it.value(), map1.value(it.key()));
        ++it;
    }
}

QTEST_MAIN(IpTunnelSettingTest)

#include "moc_iptunnelsettingtest.cpp"