
soapui
Silent install package for soapui
5.7.2-1
- package: tis-soapui
- name: soapui
- version: 5.7.2-1
- maintainer: Jordan Arnaud
- licence: open source
- target_os: linux
- architecture: x64
- signature_date:
- size: 124.96 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 : linux
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 : ffdb3e3c-fc4c-41c3-a4e1-02401891ec0f
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-09-11T11:13:35.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 : tA54qyr8+4eeuNwYPUgqgp37NOj/AQu03IkJs5OErzlAe/eLx2veku0+LdU0fM7MrTX5z41u3G1c1sqZnSF9e2mNNWYztv8CD04euDifxjZ89vsSRcgy4bRVBtOZJ9C30ltzXtDRn+k1EwWZmr9mKURUt+OmhWNCa8tf2AhOg0hL9YC0uLbun1hMmiHUxPvb1AOatqUOK1I5ezvQQX01RMHBjbFvF4fUbbC8uexj5bbXW2ilBHmoqTkUiVu7MQHV0dq2S5S4xhNUjR0mUves3cd5PK0hCFrZ0l4zvYhA0GB4reAhJzu5FVd44l4T7KDZn3wZ0p7zBtZEw/Rw2ULZdQ==
# -*- coding: utf-8 -*-
from setuphelpers import *
# -*- coding: utf-8 -*-
from setuphelpers import *
bin_path = makepath("/", "usr", "local", "bin")
app_path = "/opt/soapui"
def install():
# Extraction and copying to /opt/soapui
extract_path = glob.glob("*.tar.gz")[0]
run(f"tar -xzvf {extract_path}")
char_len = len(extract_path) - len('-linux-bin.tar.gz')
extract_path = extract_path[:char_len]
bin_name = glob.glob(extract_path)[0]
print(f"copying soapui to {app_path}")
if not isdir(app_path):
mkdirs(app_path)
copytree2(bin_name, app_path)
# Creation of symlink
if not isfile(f"{bin_path}/soapui"):
print("create soapui alias in path")
os.symlink(f"{app_path}/soapui", f"{bin_path}/soapui")
if isdir(extract_path):
remove_tree(extract_path)
def uninstall():
# Removing of symlink
if isfile(f"{bin_path}/soapui"):
remove_file(f"{bin_path}/soapui")
# Removing of the software
if isdir(app_path):
remove_tree(app_path)
# -*- 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(".tar.gz)"):
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('*.tar.gz'):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
a53d1900d542ed2bfbcf13033d8f3a69c94850665e6b339969d89556c9848edc : SoapUI-5.7.2-linux-bin.tar.gz
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
0d59feb388781b23837fdac9c1106480a7cf24125bab42ffad6e0dd0bbf96b6c : WAPT/control
7ac81daff98b358b5fc30456f432e64a080f8fbe9cb361c26ad794d4287c51a3 : WAPT/icon.png
1989ebc07e2c2540db9f80020db0f2c5a4a5336703a114c459eb015bf40452dd : luti.json
de6be001adf4b1a316fb4b276cbd4bbd7d48a2e2f55d5c41168b218362cc36df : setup.py
73c021e798a486a39e8b94aecbef91c8f7098541b4f64da245437b8829077151 : update_package.py