From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 2/2] Add a test to check that we can attach ports to a zone of type bridge Date: Sat, 11 Aug 2018 15:03:23 +0200 Message-ID: <20180811130323.19669-2-jonatan.schlag@ipfire.org> In-Reply-To: <20180811130323.19669-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3145699962864008207==" List-Id: --===============3145699962864008207== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Jonatan Schlag --- Makefile.am | 10 +++++++--- test/nitsi/test/zone-port-attach-bridge/.gitignore | 3 +++ test/nitsi/test/zone-port-attach-bridge/recipe | 9 +++++++++ test/nitsi/test/zone-port-attach-bridge/settings.in | 9 +++++++++ 4 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 test/nitsi/test/zone-port-attach-bridge/.gitignore create mode 100644 test/nitsi/test/zone-port-attach-bridge/recipe create mode 100644 test/nitsi/test/zone-port-attach-bridge/settings.in diff --git a/Makefile.am b/Makefile.am index 1ea715e..fa12f4e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -602,7 +602,8 @@ NITSI_TESTS =3D \ test/nitsi/test/hello-world \ test/nitsi/test/make-check \ test/nitsi/test/raw-device-get-by-mac \ - test/nitsi/test/zone-new-bridge + test/nitsi/test/zone-new-bridge \ + test/nitsi/test/zone-port-attach-bridge =20 EXTRA_DIST +=3D \ test/nitsi/test/hello-world/recipe \ @@ -612,13 +613,16 @@ EXTRA_DIST +=3D \ test/nitsi/test/raw-device-get-by-mac/recipe \ test/nitsi/test/raw-device-get-by-mac/settings.in \ test/nitsi/test/zone-new-bridge/recipe \ - test/nitsi/test/zone-new-bridge/settings.in + test/nitsi/test/zone-new-bridge/settings.in \ + test/nitsi/test/zone-port-attach-bridge/recipe \ + test/nitsi/test/zone-port-attach-bridge/settings.in =20 CLEANFILES +=3D \ test/nitsi/test/make-check/recipe \ test/nitsi/test/make-check/settings \ test/nitsi/test/raw-device-get-by-mac/settings \ - test/nitsi/test/zone-new-bridge/settings + test/nitsi/test/zone-new-bridge/settings \ + test/nitsi/test/zone-port-attach-bridge/settings =20 NITSI_ENVIRONMENT =3D =20 diff --git a/test/nitsi/test/zone-port-attach-bridge/.gitignore b/test/nitsi/= test/zone-port-attach-bridge/.gitignore new file mode 100644 index 0000000..8a9bd77 --- /dev/null +++ b/test/nitsi/test/zone-port-attach-bridge/.gitignore @@ -0,0 +1,3 @@ +/log +/recipe.log +/settings diff --git a/test/nitsi/test/zone-port-attach-bridge/recipe b/test/nitsi/test= /zone-port-attach-bridge/recipe new file mode 100644 index 0000000..92dd262 --- /dev/null +++ b/test/nitsi/test/zone-port-attach-bridge/recipe @@ -0,0 +1,9 @@ +include: ../../include/make-install +include: ../../include/network-settings +include: ../../include/network-reset +alice: network zone new upl0 bridge +# Create a dummy port we can attach to upl0 +alice: network port new dummy +alice: network zone upl0 port attach d0 +# Check if the port is really attached +alice: ls /sys/class/net/upl0/brif/d0 \ No newline at end of file diff --git a/test/nitsi/test/zone-port-attach-bridge/settings.in b/test/nitsi= /test/zone-port-attach-bridge/settings.in new file mode 100644 index 0000000..c52be6d --- /dev/null +++ b/test/nitsi/test/zone-port-attach-bridge/settings.in @@ -0,0 +1,9 @@ +[GENERAL] +name =3D zone-port-attach-bridge +description =3D This test checks if we cann attach a dummy port to a zone + +copy_from =3D ../../../../@PACKAGE_NAME(a)-@PACKAGE_VERSION(a).tar.gz +copy_to =3D /root/ + +[VIRTUAL_ENVIRONMENT] +path =3D ../../virtual-environment/basic --=20 2.11.0 --===============3145699962864008207==--