Files @ 554a57ceb0c1
Branch filter:

Location: majic-ansible-roles/roles/mail_forwarder/molecule/default/molecule.yml

branko
MAR-233: Add IPv6 connectivity tests for the mail_forwarder role:

- Configure static IPv6 addresses on all test machines.
- Parametrise all connectivity tests to cover both IPv4 and IPv6.
- Be explicit on receiving servers for all swaks invocations that
target localhost.
- Make sure that the helper mail server has the necessary iptables
forwarding rules for IPv6 as well.
---

dependency:
  name: galaxy
  enabled: false

driver:
  name: vagrant
  provider:
    name: virtualbox

platforms:


  # Helpers
  # =======

  - name: mail-server
    groups:
      - mail-servers
      - helper
    box: debian/bookworm64
    memory: 256
    cpus: 1
    interfaces:
      - auto_config: true
        ip: 192.168.56.11
        network_name: private_network
        type: static
      - auto_config: true
        ip: fd00::192:168:56:11
        network_name: private_network
        netmask: 116
        type: static

  - name: client1
    groups:
      - clients
      - helper
    box: debian/bookworm64
    memory: 256
    cpus: 1
    interfaces:
      - auto_config: true
        ip: 192.168.56.12
        network_name: private_network
        type: static
      - auto_config: true
        ip: fd00::192:168:56:12
        network_name: private_network
        netmask: 116
        type: static


  # Bookworm
  # ========

  - name: parameters-mandatory-bookworm
    groups:
      - parameters-mandatory
    box: debian/bookworm64
    memory: 384
    cpus: 1
    interfaces:
      - auto_config: true
        ip: 192.168.56.21
        network_name: private_network
        type: static
      - auto_config: true
        ip: fd00::192:168:56:21
        network_name: private_network
        netmask: 116
        type: static

  - name: parameters-optional-bookworm
    groups:
      - parameters-optional
    box: debian/bookworm64
    memory: 384
    cpus: 1
    interfaces:
      - auto_config: true
        ip: 192.168.56.22
        network_name: private_network
        type: static
      - auto_config: true
        ip: fd00::192:168:56:22
        network_name: private_network
        netmask: 116
        type: static

  - name: parameters-no-incoming-bookworm
    groups:
      - parameters-no-incoming
    box: debian/bookworm64
    memory: 256
    cpus: 1
    interfaces:
      - auto_config: true
        ip: 192.168.56.23
        network_name: private_network
        type: static
      - auto_config: true
        ip: fd00::192:168:56:23
        network_name: private_network
        netmask: 116
        type: static

provisioner:
  name: ansible
  playbooks:
    cleanup: cleanup.yml
  config_options:
    defaults:
      force_valid_group_names: "ignore"
      interpreter_python: "/usr/bin/python3"
      force_handlers: "True"
    ssh_connection:
      pipelining: "True"

scenario:
  name: default

verifier:
  name: testinfra
  options:
    color: "yes"