public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 5ef856da33385cc007925a16e87513396a79a912 5651 bytes (raw)

  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
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
 
#! /usr/bin/python3

# SPDX-License-Identifier: GPL-2.0-or-later
#
# avocado/pasta.py - Basic tests for pasta mode
#
# Copyright Red Hat
# Author: David Gibson <david@gibson.dropbear.id.au>

import ipaddress
import os

from tasst.address import LOOPBACK4, LOOPBACK6
from tasst.scenario.simple import SimpleNetTasst
from tasst.dhcp import BaseDhcpTasst
from tasst.dhcpv6 import BaseDhcpv6Tasst
from tasst.ndp import BaseNdpTasst
from tasst.nstool import UnshareSite
from tasst.transfer import BaseTransferTasst, TcpUploadTasst, UdpTransferTasst


PASTA_BIN = './pasta'


class UnconfiguredPastaTasst(SimpleNetTasst):
    EXTRA_OPTS = ''
    INBOUND_PORT = 10002
    OUTBOUND_PORT = 10003

    def setUp(self):
        super().setUp()

        self.guestns = UnshareSite(self.__class__.__name__ + '.guestns',
                                   '-Ucnpf --mount-proc',
                                   parent=self.simhost, sudo=True)
        self.guestns_relpid = self.guestns.relative_pid(self.simhost)

        pidfile = os.path.join(self.workdir, 'pasta.pid')
        pastacmd = ('{} -f -t {} -u {} -T {} -U {} -P {} {} {}'
                    .format(PASTA_BIN, self.INBOUND_PORT, self.INBOUND_PORT,
                            self.OUTBOUND_PORT, self.OUTBOUND_PORT,
                            pidfile, self.EXTRA_OPTS, self.guestns_relpid))

        self.pasta = self.simhost.bg(pastacmd)

        # Wait for the pidfile to be written
        while not os.path.exists(pidfile) or not open(pidfile).read():
            pass
        # PID of pasta process in simhost namespace
        self.pastapid = int(open(pidfile).read())

    def tearDown(self):
        self.simhost.fg('kill -TERM {}'.format(self.pastapid))
        rc = self.pasta.wait(timeout=1.0)
        self.assertEqual(rc, 0)
        self.guestns.close()
        super().tearDown()


class PastaIfnameTasst(UnconfiguredPastaTasst):
    def test_ifname(self):
        self.assertCountEqual(self.guestns.ifs(), ('lo', self.ifname))


class PastaNdpTasst(UnconfiguredPastaTasst, BaseNdpTasst):
    def setUp(self):
        super().setUp()
        self.guestns.ifup(self.ifname)
        BaseNdpTasst.subsetup(self, self.guestns, self.ifname, self.ip6.network, self.gw_ip6_ll.ip)


class PastaDhcpTasst(UnconfiguredPastaTasst, BaseDhcpTasst):
    def setUp(self):
        super().setUp()
        BaseDhcpTasst.subsetup(self, self.guestns, self.ifname, self.ip4.ip, self.gw_ip4.ip, 65520)


class PastaDhcpv6Tasst(UnconfiguredPastaTasst, BaseDhcpv6Tasst):
    def setUp(self):
        super().setUp()
        BaseDhcpv6Tasst.subsetup(self, self.guestns, self.ifname, self.ip6.ip)


class ConfiguredPastaTasst(UnconfiguredPastaTasst):
    EXTRA_OPTS = '--config-net'


class ConfigNetTasst(ConfiguredPastaTasst):
    def test_addr(self):
        addrs = self.guestns.addrs(self.ifname, scope='global')
        self.assertCountEqual(addrs, [self.ip4, self.ip6])

    def test_route4(self):
        (defroute,) = self.guestns.routes4(dst='default')
        gateway = ipaddress.ip_address(defroute['gateway'])
        self.assertEquals(gateway, self.gw_ip4.ip)

    def test_route6(self):
        (defroute,) = self.guestns.routes6(dst='default')
        gateway = ipaddress.ip_address(defroute['gateway'])
        self.assertEquals(gateway, self.gw_ip6_ll.ip)

    def test_mtu(self):
        mtu = self.guestns.mtu(self.ifname)
        self.assertEquals(mtu, 65520)


class PastaOutwardTransferTasst(ConfiguredPastaTasst, BaseTransferTasst):
    """
    :avocado: disable
    """

    PORT = 10000
    def setUp(self):
        super().setUp()

        BaseTransferTasst.subsetup(self, self.DATAFILE, self.guestns, self.gw,
                                   self.remote_ip4.ip, self.remote_ip6.ip, self.PORT)


class PastaOutwardSmallTcpUploadTasst(PastaOutwardTransferTasst, TcpUploadTasst):
    DATAFILE = './test/small.bin'


class PastaOutwardBigTcpUploadTasst(PastaOutwardSmallTcpUploadTasst):
    DATAFILE = './test/big.bin'
    timeout = 30.0


class PastaOutwardUdpTransferTasst(PastaOutwardTransferTasst, UdpTransferTasst):
    DATAFILE = './test/medium.bin'


class PastaInwardTransferTasst(ConfiguredPastaTasst, BaseTransferTasst):
    """
    :avocado: disable
    """

    def setUp(self):
        super().setUp()

        BaseTransferTasst.subsetup(self, self.DATAFILE, self.gw, self.guestns,
                                   self.ip4.ip, self.ip6.ip, self.INBOUND_PORT,
                                   from_ip4=self.remote_ip4.ip, from_ip6=self.remote_ip6.ip)


class PastaInwardSmallTcpUploadTasst(PastaInwardTransferTasst, TcpUploadTasst):
    DATAFILE = './test/small.bin'


class PastaInwardBigTcpUploadTasst(PastaInwardSmallTcpUploadTasst):
    DATAFILE = './test/big.bin'
    timeout = 30.0


class PastaInwardUdpTransferTasst(PastaInwardTransferTasst, UdpTransferTasst):
    DATAFILE = './test/medium.bin'


class PastaSplicedTransferTasst(ConfiguredPastaTasst, BaseTransferTasst):
    """
    :avocado: disable
    """

    def setUp(self):
        super().setUp()

        BaseTransferTasst.subsetup(self, self.DATAFILE, self.guestns, self.simhost,
                                   LOOPBACK4, LOOPBACK6, self.OUTBOUND_PORT,
                                   listen_ip4=LOOPBACK4, listen_ip6=LOOPBACK6)


class PastaSplicedSmallTcpUploadTasst(PastaSplicedTransferTasst, TcpUploadTasst):
    DATAFILE = './test/small.bin'


class PastaSplicedBigTcpUploadTasst(PastaSplicedSmallTcpUploadTasst):
    DATAFILE = './test/big.bin'
    timeout = 30.0


class PastaSplicedUdpTransferTasst(PastaSplicedTransferTasst, UdpTransferTasst):
    DATAFILE = './test/medium.bin'

debug log:

solving 5ef856d ...
found 5ef856d in https://archives.passt.top/passt-dev/20230516020135.1901256-22-david@gibson.dropbear.id.au/

applying [1/1] https://archives.passt.top/passt-dev/20230516020135.1901256-22-david@gibson.dropbear.id.au/
diff --git a/avocado/pasta.py b/avocado/pasta.py
new file mode 100644
index 0000000..5ef856d

Checking patch avocado/pasta.py...
Applied patch avocado/pasta.py cleanly.

index at:
100644 5ef856da33385cc007925a16e87513396a79a912	avocado/pasta.py

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).