summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Orling <timothy.t.orling@linux.intel.com>2016-10-04 16:50:46 -0700
committerTim Orling <timothy.t.orling@linux.intel.com>2016-10-05 09:38:30 -0700
commit73940b430a655814f8f92dd8f8d033f0247b626a (patch)
tree94ec0b756d73773362a9d7b8474a7efe41ab42c4
parent41300e99138a1044e21d32447e2bea29e588fd7f (diff)
downloadepel6-testing-container-73940b430a655814f8f92dd8f8d033f0247b626a.tar.gz
epel6-testing-container-73940b430a655814f8f92dd8f8d033f0247b626a.tar.xz
epel6-testing-container-73940b430a655814f8f92dd8f8d033f0247b626a.zip
add tests for epel-rpm-macros-6-14 (%py3_ stubs)
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
-rw-r--r--Dockerfile2
-rw-r--r--tests/test_epel-rpm-macros-6-14.py39
-rw-r--r--tests/test_rhbz1369486.py (renamed from tests/test_bz1369486.py)0
3 files changed, 40 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 109d153..308f9d6 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -20,6 +20,6 @@ RUN yum -y install epel-release; yum clean all
RUN yum -y install rpm python python-pip epel-rpm-macros python-rpm-macros; yum clean all
RUN yum -y update --enablerepo=epel-testing
RUN pip install -U pytest
-COPY tests/test_bz1369486.py tests/test_bz1369486.py
+COPY tests/* tests/
CMD ["pytest", "tests/"]
diff --git a/tests/test_epel-rpm-macros-6-14.py b/tests/test_epel-rpm-macros-6-14.py
new file mode 100644
index 0000000..85adf8d
--- /dev/null
+++ b/tests/test_epel-rpm-macros-6-14.py
@@ -0,0 +1,39 @@
+# Copyright (C) 2016 Intel Corporation
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+import os
+import pytest
+import shlex
+from subprocess import Popen, PIPE
+
+class TestPython3Stubs:
+
+ @pytest.fixture
+ def py3_build_macro(self):
+ cmd = shlex.split("rpm -E %py3_build")
+ output = Popen(cmd, stdout=PIPE).communicate()[0]
+ return output
+
+ @pytest.fixture
+ def py3_install_macro(self):
+ cmd = shlex.split("rpm -E %py3_install")
+ output = Popen(cmd, stdout=PIPE).communicate()[0]
+ return output
+
+ def test_py3_build_macro(self, py3_build_macro):
+ assert py3_build_macro != '\n'
+
+ def test_py3_install_macro(self, py3_install_macro):
+ assert py3_install_macro != '\n'
diff --git a/tests/test_bz1369486.py b/tests/test_rhbz1369486.py
index 0817bc1..0817bc1 100644
--- a/tests/test_bz1369486.py
+++ b/tests/test_rhbz1369486.py