
soapui
Silent install package for soapui
5.7.2-2
- package: tis-soapui
- name: soapui
- version: 5.7.2-2
- maintainer: Jordan Arnaud
- editor: SmartBear Software
- licence: open source
- target_os: darwin
- impacted_process: SoapUI-5.7.2
- architecture: arm
- signature_date:
- size: 185.13 Mo
- installed_size: 289.84 Mo
- homepage : https://www.soapui.org/
package : tis-soapui
version : 5.7.2-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.7.2
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 : 5d1cd2a3-84f5-403d-93fc-7086c8a56022
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 : 2024-11-03T11:02:41.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 : l5LbnZDzIXvGZeoScasR00RgwuPoPXRvB8MpVu9DTaPO3NFNT0d5bcpGWvZKvnv5Te1q7/lyFYPf6CgY+pcQfEB/R45H5ni2L1PblHbjYNWKJLP42sckjNPYBhAUIhsakiB6HKj7C5uV5RzAjqa+ad0YenKQMX8GTeFAgMwyqZ8El2V8qEoOiZF1T5XHWOHgjRynuok/PVxCNP6RamaKq07i8kcuFwacFP5JHp33LiKtItlQ7RIigEbAgLQzws8+gAvOwA/dLNzDmsl3eeKhyZ2IdYISfrbmS16I2JboGvKYf5hw8pW4trB9mtbjJs1XlQdbBAbxPaK5d3JRNsxNsA==
# -*- 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
25cf37f861c2bc95fea272d8ccbaff04fdcb8e14dfa1cc1b1d649918ef51a4d4 : SoapUI-5.7.2.dmg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
66a453101800ed6389d820be8b50448461ba9bcd4e2cd11ff8c77dd61ef3505d : WAPT/control
7ac81daff98b358b5fc30456f432e64a080f8fbe9cb361c26ad794d4287c51a3 : WAPT/icon.png
01f88973077c9aa9f7f076f8c4f96430a5b05f00c562cc7ca0997ab82f4c13fe : luti.json
85b26fc07c8d3e9121e19ea448d9a81e3fa1ac4d026e217c841e6a883d390412 : setup.py
86380888e1cd38780179678a34a864c451561784bff9fdabb2c8e7cf1efb05ee : update_package.py