
soapui
Paquet d’installation silencieuse pour soapui
5.7.2-1
- package: tis-soapui
- name: soapui
- version: 5.7.2-1
- maintainer: Jordan Arnaud
- licence: open source
- target_os: darwin
- architecture: x64
- signature_date:
- size: 185.13 Mo
- homepage : https://www.soapui.org/
package : tis-soapui
version : 5.7.2-1
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 : darwin
min_wapt_version :
sources :
installed_size :
impacted_process :
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 :
keywords :
licence : open source
homepage : https://www.soapui.org/
package_uuid : f85c1f1f-1306-4366-84c8-604a0983ff90
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 7ac81daff98b358b5fc30456f432e64a080f8fbe9cb361c26ad794d4287c51a3
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : GEo08+g7NFHCAlZKfO2PBCli2mHpxQDsbypJtq+Wo2t+7S9dZ6Hk/LSG1pqSlPwZAxIAZEnjPjy2GaZRiWHC+m/MLfmP9F8GMHArl6o9C09q5VWvsaJXtEognBZOcWuz5dHmTtyqaZDIKGWeir5ceEZiGv2BWDA5fRBdWp9ZInN9ecV1Da/myD0nlHTLchPQPiii+EiNcWdY2ToC7T7AU8fY194UwvuB+7iV/eVu94BSf+SxpjbYnvDPrzofc5UTYMII3CdaAK5J9nL3lm8xTbUI5TAoqLcyl0+3pefS1X1x00/q+9h+lJZR7DKVm5qrTJTrFJxdxx/v5SLgGROCPw==
signature_date : 2024-08-05T09:00:46.752749
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
# -*- 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():
install_dmg(glob.glob("SoapUI-*.dmg")[0])
def uninstall():
remove_tree("/Applications/SoapUI 5.7.2 Installer.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def update_package():
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
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 = json.loads(wgets(url_api, proxies=proxies))
exe_download_link = None
for line in json_load["body"].split("\r\n"):
if "SoapUI-" in line and line.endswith(".dmg)"):
exe_download_link = line.split("(")[1].replace(")", "")
filename = exe_download_link.split("/")[-1]
version = json_load["tag_name"].replace("v","")
break
if not isfile(filename):
package_updated = True
wget(exe_download_link,filename,proxies=proxies)
#nettoyer les fichiers temporaires
for f in glob.glob('*.dmg'):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
67b5af2b7f475108a309572192669d3294a343eed6ddcba7ce9461457ba020c6 : setup.py
303136d19e5feeadf77896d61b75d24ea54511274d258bd7a856802565f6ab8d : update_package.py
7ac81daff98b358b5fc30456f432e64a080f8fbe9cb361c26ad794d4287c51a3 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
b02c2db2578a1c4844c74ac004f8ef94b3d56029a1f1ca8a18ee57ece5df4617 : luti.json
25cf37f861c2bc95fea272d8ccbaff04fdcb8e14dfa1cc1b1d649918ef51a4d4 : SoapUI-5.7.2.dmg
9109c27cfb429f661cd58d9930a486a62df1c53b73b0ccc91db52dc03146ad2e : WAPT/control