File: test_podman_compose_nets_test_ip.py

package info (click to toggle)
podman-compose 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,996 kB
  • sloc: python: 10,946; sh: 107; javascript: 48; makefile: 13
file content (74 lines) | stat: -rw-r--r-- 2,598 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
67
68
69
70
71
72
73
74
# SPDX-License-Identifier: GPL-2.0

import os
import unittest

from tests.integration.test_utils import RunSubprocessMixin
from tests.integration.test_utils import podman_compose_path
from tests.integration.test_utils import test_path


def compose_yaml_path() -> str:
    return os.path.join(os.path.join(test_path(), "nets_test_ip"), "docker-compose.yml")


class TestComposeNetsTestIp(unittest.TestCase, RunSubprocessMixin):
    # test if services retain custom ipv4_address and mac_address matching the subnet provided
    # in networks top-level element
    def test_nets_test_ip(self) -> None:
        try:
            self.run_subprocess_assert_returncode(
                [
                    podman_compose_path(),
                    "-f",
                    compose_yaml_path(),
                    "up",
                    "-d",
                ],
            )

            expected_results = [
                (
                    "web1",
                    b"inet 172.19.1.10/24 ",
                    b"link/ether 02:01:01:00:01:01 ",
                    b"inet 172.19.2.10/24 ",
                    b"link/ether 02:01:01:00:02:01 ",
                    b"",
                ),
                ("web2", b"", b"", b"inet 172.19.2.11/24 ", b"", b"link/ether 02:01:01:00:02:02 "),
                ("web3", b"", b"", b"inet 172.19.2.", b"", b""),
                ("web4", b"inet 172.19.1.13/24 ", b"", b"inet 172.19.2.", b"", b""),
            ]

            for (
                service_name,
                shared_network_ip,
                shared_network_mac_address,
                internal_network_ip,
                internal_network_mac_address,
                mac_address,
            ) in expected_results:
                output, _ = self.run_subprocess_assert_returncode([
                    podman_compose_path(),
                    "-f",
                    compose_yaml_path(),
                    "exec",
                    service_name,
                    "ip",
                    "a",
                ])
                self.assertIn(shared_network_ip, output)
                self.assertIn(shared_network_mac_address, output)
                self.assertIn(internal_network_ip, output)
                self.assertIn(internal_network_mac_address, output)
                self.assertIn(mac_address, output)
        finally:
            self.run_subprocess_assert_returncode([
                podman_compose_path(),
                "-f",
                compose_yaml_path(),
                "down",
                "-t",
                "0",
            ])