
soapui
Silent install package for soapui
5.9.1-2
- package: tis-soapui
- name: soapui
- version: 5.9.1-2
- maintainer: Jordan Arnaud
- editor: SmartBear Software
- licence: open source
- target_os: darwin
- impacted_process: SoapUI-5.9.1
- architecture: arm
- signature_date:
- size: 189.07 Mo
- installed_size: 289.84 Mo
- homepage : https://www.soapui.org/
package : tis-soapui
version : 5.9.1-2
architecture : arm
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 : darwin
min_wapt_version : 2.1
sources :
installed_size : 289839555
impacted_process : SoapUI-5.9.1
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 : 76114221-2c2f-4460-ac32-03b9879161ef
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-09-15T14:10:10.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 : nDnzmTBueCCeW5M2pE/f/rHFM+T7IbNFyGtQoyiUO+yzpVidd3bS6Wm/5dY/JLa64EHn4RZFXf9oO+UKF6xgAg1s2j6kFlIWM/b6Pr19KgVkNHKKElmQJd4rQw5zCZ5BvhZ+v1IRUhfXmEsF6z6iGfrrzxxKAedf+TvwjFBsBsij6oplPYhVinheOHwZ59aW4jt65k3fJFt8xaZo8yqz8OyjB89JkjVVt50z49tiIVlb0YQ6hFkEMnXTeFUuvWK/krav6qBekd/GYsM2zIEzDWqDoHPRO61PgdaFazobKkkSOBMPaf/ypnKIBFkNOmGKtuV1xh+fu57K6tCB4Bd38A==
# -*- coding: utf-8 -*-
##################################################
# This file is part of WAPT Enterprise
# All right reserved, (c) Tranquil IT Systems 2023
# For more information please refer to
# https://wapt.tranquil.it/store/licences.html
##################################################
from setuphelpers import *
def install():
uninstall_older_version()
install_dmg(glob.glob("SoapUI-*.dmg")[0])
def uninstall():
killalltasks(ensure_list(control.impacted_process))
remove_tree(f"/Applications/SoapUI {control.get_software_version()} Installer.app")
def uninstall_older_version():
for soft in installed_softwares(control.name):
version = soft['version']
if Version(version) < Version(control.get_software_version()):
killalltasks(f"SoapUI-{version}")
remove_tree(soft['install_location'])
# -*- 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 = f"https://api.github.com/repos/{git_repo}/releases/latest"
# 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(".dmg)"):
download_url = line.split("(")[1].replace(")", "")
latest_bin = download_url.rsplit("/", 1)[-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('*.dmg'):
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
1c95a58c88151b20adb7fc76cfbe22f3a429d2306cd7e20496a5dce7e5b16eec : SoapUI-x64-5.9.1.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
e6cf21e325dc6ebf84267b73a4e6cef8348b930c6c536020df1d269161908c43 : WAPT/control
7ac81daff98b358b5fc30456f432e64a080f8fbe9cb361c26ad794d4287c51a3 : WAPT/icon.png
d714ceaaaf5f7c02892094cbdd2fa61570ba00bc3fe152ab9719881b9d80f858 : luti.json
85b26fc07c8d3e9121e19ea448d9a81e3fa1ac4d026e217c841e6a883d390412 : setup.py
86380888e1cd38780179678a34a864c451561784bff9fdabb2c8e7cf1efb05ee : update_package.py