
soapui
Silent install package for soapui
5.9.0-2
- package: tis-soapui
- name: soapui
- version: 5.9.0-2
- maintainer: Jordan Arnaud
- editor: SmartBear Software
- licence: open source
- target_os: linux
- impacted_process: SoapUI-5.9.0
- architecture: x64
- signature_date:
- size: 135.93 Mo
- installed_size: 289.84 Mo
- homepage : https://www.soapui.org/
package : tis-soapui
version : 5.9.0-2
architecture : x64
section : base
priority : optional
name : soapui
categories :
maintainer : Jordan Arnaud
description : SoapUI is a free and open source cross-platform Functional Testing solution. With an easy-to-use graphical interface, and enterprise-class features, SoapUI allows you to easily and rapidly create and execute automated functional, regression, compliance, and load tests
depends :
conflicts :
maturity : PROD
locale :
target_os : linux
min_wapt_version : 2.1
sources :
installed_size : 289839555
impacted_process : SoapUI-5.9.0
description_fr : SoapUI est une solution de test fonctionnel multiplateforme gratuite et open source. Avec une interface graphique facile à utiliser et des fonctionnalités de classe entreprise, SoapUI vous permet de créer et d'exécuter facilement et rapidement des tests fonctionnels, de régression, de conformité et de charge automatisés
description_pl : SoapUI to darmowe i otwarte, wieloplatformowe rozwiązanie do testowania funkcjonalnego. Dzięki łatwemu w użyciu interfejsowi graficznemu i funkcjom klasy korporacyjnej, SoapUI umożliwia łatwe i szybkie tworzenie i wykonywanie zautomatyzowanych testów funkcjonalnych, regresji, zgodności i obciążenia
description_de : SoapUI ist eine kostenlose und quelloffene, plattformübergreifende Lösung für funktionale Tests. Mit einer benutzerfreundlichen grafischen Oberfläche und Funktionen der Enterprise-Klasse können Sie mit SoapUI einfach und schnell automatisierte Funktions-, Regressions-, Compliance- und Lasttests erstellen und ausführen
description_es : SoapUI es una solución de pruebas funcionales multiplataforma gratuita y de código abierto. Con una interfaz gráfica fácil de usar, y características de clase empresarial, SoapUI le permite crear y ejecutar pruebas funcionales, de regresión, cumplimiento y carga automatizadas de forma fácil y rápida
description_pt : O SoapUI é uma solução de teste funcional multiplataforma gratuita e de código aberto. Com uma interface gráfica fácil de utilizar e características de classe empresarial, o SoapUI permite-lhe criar e executar fácil e rapidamente testes funcionais, de regressão, de conformidade e de carga automatizados
description_it : SoapUI è una soluzione di test funzionale multipiattaforma gratuita e open source. Grazie a un'interfaccia grafica facile da usare e a funzionalità di classe enterprise, SoapUI consente di creare ed eseguire facilmente e rapidamente test funzionali, di regressione, di conformità e di carico automatizzati
description_nl : SoapUI is een gratis en open source cross-platform oplossing voor functioneel testen. Met een gebruiksvriendelijke grafische interface en functies op bedrijfsniveau kun je met SoapUI eenvoudig en snel geautomatiseerde functionele, regressie-, compliance- en belastingstests maken en uitvoeren
description_ru : SoapUI - это бесплатное кроссплатформенное решение для функционального тестирования с открытым исходным кодом. Благодаря простому в использовании графическому интерфейсу и функциям корпоративного класса SoapUI позволяет легко и быстро создавать и выполнять автоматизированные функциональные, регрессионные, комплаенс- и нагрузочные тесты
audit_schedule :
editor : SmartBear Software
keywords :
licence : open source
homepage : https://www.soapui.org/
package_uuid : 596af19d-a312-414f-9b24-3b259f37a7d6
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 7ac81daff98b358b5fc30456f432e64a080f8fbe9cb361c26ad794d4287c51a3
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-07-21T12:03:43.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : IsgxUyK+vCREH+3Y8RvUQDFWapmZWxd/F76io8AunMN49jgSHkOT9oIwzMkU5JvUjE4dQcXnfYfSMKQw/H+JOvIgT2hqtGAvcAlfQHnzr/0ook0ZeP5icKclRwC6w6WHtDsDk2B4m30VGYXMxy+26azaL+2gFaXO0NZ+13ieBkZadlu6TQ3COV8WUjJ+/GrRJldyPKcBevdsQp+MjvMdOp3ANy+NETWuRIjWdMDtEbHiRyPxD134+IsT6+j9mg7Dob7QtOT2f+O8r2rKArTxpmNgUrJP2thq7vP1QySi5AgCzU8FAUNb9mJLpkk4WWMnMgaMj938TPmq2poK7+RNbA==
# -*- coding: utf-8 -*-
from setuphelpers import *
import tarfile
bin_path = "/usr/local/bin/soapui"
app_path = "/opt/soapui"
def extract_tar_xz(filename, path="."):
with tarfile.open(filename, "r:gz") as tar:
tar.extractall(path)
def install():
archive_file = glob.glob("*.tar.gz")[0]
extracted_folder = archive_file.split('-linux-bin', 1)[0]
# Delete older version
if isdir(app_path):
remove_tree(app_path)
extract_tar_xz(archive_file)
copytree2(extracted_folder, app_path)
if isfile(bin_path) or os.path.islink(bin_path):
print("Removing existing symlink")
remove_file(bin_path)
print("Creating soapui alias in path")
os.symlink(f"{app_path}/bin/soapui.sh", bin_path)
# Delete extracted folder
if isdir(extracted_folder):
remove_tree(extracted_folder)
def uninstall():
# Removing of symlink
if isfile(bin_path) or os.path.islink(bin_path):
remove_file(bin_path)
# Removing of the software
if isdir(app_path):
remove_tree(app_path)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
git_repo = "SmartBear/soapui"
url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = wgets(url_api, proxies=proxies, as_json=True)
for line in json_load["body"].split("\r\n"):
if "SoapUI-" in line and line.endswith(".tar.gz)"):
download_url = line.split("(")[1].replace(")", "")
latest_bin = download_url.split("/")[-1]
version = json_load["tag_name"].replace("v","")
break
# Downloading latest binaries
print("Latest %s version is: %s" % (app_name, version))
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
package_updated = True
else:
print("Software version up-to-date (%s)" % Version(version))
#nettoyer les fichiers temporaires
for f in glob.glob('*.tar.gz'):
if f != latest_bin:
remove_file(f)
control.set_software_version(version)
control.impacted_process = f"SoapUI-{version}"
control.save_control_to_wapt()
return package_updated
d454eab119b2f756cda62cb3a15c838b2105d99c5dd68b8cba62f738d0ac27de : SoapUI-5.9.0-linux-bin.tar.gz
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
635977244787247fe9898f644c0b9e7a2e9245117e5fbc66f966492f48b79723 : WAPT/control
7ac81daff98b358b5fc30456f432e64a080f8fbe9cb361c26ad794d4287c51a3 : WAPT/icon.png
676fef66a91ae40bbd3fe4e6f407e7b063edabe9ca6cd65300f5a86ebd87b910 : luti.json
df6c7426d337b516b008b080ca3c329688c3b3507b62ea887fdd615961d803c1 : setup.py
7b4750528beffc9f1ea1fcec26b58d28bf378c908504fcca207770dd1557b784 : update_package.py