summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-05-31 04:33:39 +0000
committerCoprDistGit <infra@openeuler.org>2023-05-31 04:33:39 +0000
commit025df7442fdbb75bad863fca4e668ecbb36912de (patch)
tree1158a8f7807bf3b530a74c4ff628d775ca8e4197
parent3337cf63d2a40122c66689846a62df6e6aa33009 (diff)
automatic import of python-masterqa
-rw-r--r--.gitignore1
-rw-r--r--python-masterqa.spec277
-rw-r--r--sources1
3 files changed, 279 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..8643409 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/masterqa-1.8.2.tar.gz
diff --git a/python-masterqa.spec b/python-masterqa.spec
new file mode 100644
index 0000000..e71b855
--- /dev/null
+++ b/python-masterqa.spec
@@ -0,0 +1,277 @@
+%global _empty_manifest_terminate_build 0
+Name: python-masterqa
+Version: 1.8.2
+Release: 1
+Summary: Automation-Assisted Manual Testing - https://masterqa.com
+License: MIT
+URL: https://github.com/masterqa/MasterQA
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ea/da/fb98236481aa06af8cb2fcbbf678832b0461f6e9092320713954ba8ef289/masterqa-1.8.2.tar.gz
+BuildArch: noarch
+
+Requires: python3-seleniumbase
+Requires: python3-pdbp
+Requires: python3-tabcompleter
+Requires: python3-sbvirtualdisplay
+
+%description
+# MasterQA
+
+[![pypi](https://img.shields.io/pypi/v/masterqa.svg)](https://pypi.python.org/pypi/masterqa) [![Build Status](https://github.com/masterqa/MasterQA/workflows/CI%20build/badge.svg)](https://github.com/masterqa/MasterQA/actions)
+
+### MasterQA combines SeleniumBase automation with manual verification to greatly improve the productivity and sanity of QA teams.
+
+## (NOTE: **[MasterQA is now part of SeleniumBase!](https://github.com/seleniumbase/SeleniumBase/tree/master/seleniumbase/masterqa)**)
+
+![](https://seleniumbase.io/cdn/img/mqa_hybrid.png "MasterQA")
+
+### Run the example test:
+
+```bash
+pip install masterqa
+
+git clone https://github.com/masterqa/MasterQA.git
+
+cd MasterQA/examples
+
+pytest masterqa_test.py # (Default browser: Chrome)
+```
+
+![](https://seleniumbase.io/cdn/gif/masterqa6.gif "MasterQA")
+
+### Follow the [example](https://github.com/masterqa/MasterQA/blob/master/examples/masterqa_test.py) to write your own tests:
+
+```python
+from seleniumbase import MasterQA
+
+class MasterQATests(MasterQA):
+ def test_xkcd(self):
+ self.open("https://xkcd.com/1512/")
+ for i in range(4):
+ self.click('a[rel="next"]')
+ for i in range(3):
+ self.click('a[rel="prev"]')
+ self.verify()
+
+ self.open("https://xkcd.com/1520/")
+ for i in range(2):
+ self.click('a[rel="next"]')
+ self.verify("Can you find the moon?")
+
+ self.click('a[rel="next"]')
+ self.verify("Do the drones look safe?")
+
+ self.open("https://seleniumbase.io/devices/")
+ self.type("input#urlInput", "seleniumbase.io/error_page\n")
+ self.verify("Do you see Octocat in a Jedi knight robe?")
+
+ self.open("https://xkcd.com/213/")
+ for i in range(5):
+ self.click('a[rel="prev"]')
+ self.verify("Does the page say 'Abnormal Expressions'?")
+```
+
+You'll notice that tests are written based on [SeleniumBase](https://seleniumbase.io), with the key difference of using a different import: ``from masterqa import MasterQA`` rather than ``from seleniumbase import BaseCase``. Now the test class will import ``MasterQA`` instead of ``BaseCase``.
+
+To add a manual verification step, use ``self.verify()`` in the code after each part of the script that needs manual verification. If you want to include a custom question, add text inside that call (in quotes). Example:
+
+```python
+self.verify()
+
+self.verify("Can you find the moon?")
+```
+
+MasterQA is powered by [SeleniumBase](https://seleniumbase.io), the most advanced open-source automation platform on the [Planet](https://en.wikipedia.org/wiki/Earth).
+
+
+%package -n python3-masterqa
+Summary: Automation-Assisted Manual Testing - https://masterqa.com
+Provides: python-masterqa
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-masterqa
+# MasterQA
+
+[![pypi](https://img.shields.io/pypi/v/masterqa.svg)](https://pypi.python.org/pypi/masterqa) [![Build Status](https://github.com/masterqa/MasterQA/workflows/CI%20build/badge.svg)](https://github.com/masterqa/MasterQA/actions)
+
+### MasterQA combines SeleniumBase automation with manual verification to greatly improve the productivity and sanity of QA teams.
+
+## (NOTE: **[MasterQA is now part of SeleniumBase!](https://github.com/seleniumbase/SeleniumBase/tree/master/seleniumbase/masterqa)**)
+
+![](https://seleniumbase.io/cdn/img/mqa_hybrid.png "MasterQA")
+
+### Run the example test:
+
+```bash
+pip install masterqa
+
+git clone https://github.com/masterqa/MasterQA.git
+
+cd MasterQA/examples
+
+pytest masterqa_test.py # (Default browser: Chrome)
+```
+
+![](https://seleniumbase.io/cdn/gif/masterqa6.gif "MasterQA")
+
+### Follow the [example](https://github.com/masterqa/MasterQA/blob/master/examples/masterqa_test.py) to write your own tests:
+
+```python
+from seleniumbase import MasterQA
+
+class MasterQATests(MasterQA):
+ def test_xkcd(self):
+ self.open("https://xkcd.com/1512/")
+ for i in range(4):
+ self.click('a[rel="next"]')
+ for i in range(3):
+ self.click('a[rel="prev"]')
+ self.verify()
+
+ self.open("https://xkcd.com/1520/")
+ for i in range(2):
+ self.click('a[rel="next"]')
+ self.verify("Can you find the moon?")
+
+ self.click('a[rel="next"]')
+ self.verify("Do the drones look safe?")
+
+ self.open("https://seleniumbase.io/devices/")
+ self.type("input#urlInput", "seleniumbase.io/error_page\n")
+ self.verify("Do you see Octocat in a Jedi knight robe?")
+
+ self.open("https://xkcd.com/213/")
+ for i in range(5):
+ self.click('a[rel="prev"]')
+ self.verify("Does the page say 'Abnormal Expressions'?")
+```
+
+You'll notice that tests are written based on [SeleniumBase](https://seleniumbase.io), with the key difference of using a different import: ``from masterqa import MasterQA`` rather than ``from seleniumbase import BaseCase``. Now the test class will import ``MasterQA`` instead of ``BaseCase``.
+
+To add a manual verification step, use ``self.verify()`` in the code after each part of the script that needs manual verification. If you want to include a custom question, add text inside that call (in quotes). Example:
+
+```python
+self.verify()
+
+self.verify("Can you find the moon?")
+```
+
+MasterQA is powered by [SeleniumBase](https://seleniumbase.io), the most advanced open-source automation platform on the [Planet](https://en.wikipedia.org/wiki/Earth).
+
+
+%package help
+Summary: Development documents and examples for masterqa
+Provides: python3-masterqa-doc
+%description help
+# MasterQA
+
+[![pypi](https://img.shields.io/pypi/v/masterqa.svg)](https://pypi.python.org/pypi/masterqa) [![Build Status](https://github.com/masterqa/MasterQA/workflows/CI%20build/badge.svg)](https://github.com/masterqa/MasterQA/actions)
+
+### MasterQA combines SeleniumBase automation with manual verification to greatly improve the productivity and sanity of QA teams.
+
+## (NOTE: **[MasterQA is now part of SeleniumBase!](https://github.com/seleniumbase/SeleniumBase/tree/master/seleniumbase/masterqa)**)
+
+![](https://seleniumbase.io/cdn/img/mqa_hybrid.png "MasterQA")
+
+### Run the example test:
+
+```bash
+pip install masterqa
+
+git clone https://github.com/masterqa/MasterQA.git
+
+cd MasterQA/examples
+
+pytest masterqa_test.py # (Default browser: Chrome)
+```
+
+![](https://seleniumbase.io/cdn/gif/masterqa6.gif "MasterQA")
+
+### Follow the [example](https://github.com/masterqa/MasterQA/blob/master/examples/masterqa_test.py) to write your own tests:
+
+```python
+from seleniumbase import MasterQA
+
+class MasterQATests(MasterQA):
+ def test_xkcd(self):
+ self.open("https://xkcd.com/1512/")
+ for i in range(4):
+ self.click('a[rel="next"]')
+ for i in range(3):
+ self.click('a[rel="prev"]')
+ self.verify()
+
+ self.open("https://xkcd.com/1520/")
+ for i in range(2):
+ self.click('a[rel="next"]')
+ self.verify("Can you find the moon?")
+
+ self.click('a[rel="next"]')
+ self.verify("Do the drones look safe?")
+
+ self.open("https://seleniumbase.io/devices/")
+ self.type("input#urlInput", "seleniumbase.io/error_page\n")
+ self.verify("Do you see Octocat in a Jedi knight robe?")
+
+ self.open("https://xkcd.com/213/")
+ for i in range(5):
+ self.click('a[rel="prev"]')
+ self.verify("Does the page say 'Abnormal Expressions'?")
+```
+
+You'll notice that tests are written based on [SeleniumBase](https://seleniumbase.io), with the key difference of using a different import: ``from masterqa import MasterQA`` rather than ``from seleniumbase import BaseCase``. Now the test class will import ``MasterQA`` instead of ``BaseCase``.
+
+To add a manual verification step, use ``self.verify()`` in the code after each part of the script that needs manual verification. If you want to include a custom question, add text inside that call (in quotes). Example:
+
+```python
+self.verify()
+
+self.verify("Can you find the moon?")
+```
+
+MasterQA is powered by [SeleniumBase](https://seleniumbase.io), the most advanced open-source automation platform on the [Planet](https://en.wikipedia.org/wiki/Earth).
+
+
+%prep
+%autosetup -n masterqa-1.8.2
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-masterqa -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 1.8.2-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..1c92c87
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+c2cf69fd99f4d2f0e7aa277274b516c7 masterqa-1.8.2.tar.gz