tis-soapui icon

soapui

Paquet d’installation silencieuse pour soapui

5.8.0-2

  • package: tis-soapui
  • name: soapui
  • version: 5.8.0-2
  • maintainer: Jordan Arnaud
  • editor: SmartBear Software
  • licence: open source
  • target_os: linux
  • impacted_process: SoapUI-5.8.0
  • architecture: x64
  • signature_date:
  • size: 135.93 Mo
  • installed_size: 289.84 Mo
  • homepage : https://www.soapui.org/

package           : tis-soapui
version           : 5.8.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.8.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      : 75c4cca9-fe51-42e0-bac1-4fff950e450f
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-12-23T09:07:31.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         : ZtfAl0AlsTymP4bE54uSNSNr5EhmZBqiZ3OS39lfQGbTOEhYaVz32Tb1GS9LNCp0upwguR3NW55Hc80/3TBcCN6racp40rPshmn8LZF9Zm9PLAdbVMd80BzKnW+eya43RMKBTx+wT+bkVBFcBHzjZN3lS8hkqve1jL0BcbWIUSN6Tt8os7ZK1SrRnwKWMNQ7HNns0dyLxDnb/aDUa4XzPbEx58UojpGQL5X1JV7pxPv2w4h/4o+KOng+Ps+9ld8dNhuIWg+MiilJvXXZzp45BZQzhw2wmLcgTrQe7PWNsdx5VJPbPY+Bdc8IzICj2TYo+xYYWZyVxeNYUHI8682CXg==

# -*- 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

5e0d5a781fca439ccc9490031429e7a7303a89031394c80eed82ae596f18ea82 : SoapUI-5.8.0-linux-bin.tar.gz
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ddc00ab281ce08643751c4084a252b9e5543fbde89a088598bbd8e21ce735b93 : WAPT/control
7ac81daff98b358b5fc30456f432e64a080f8fbe9cb361c26ad794d4287c51a3 : WAPT/icon.png
60bc7d3b3634767ab80d763fd387f712d9fb3b2c96f3ca95d9c295e04def1674 : luti.json
df6c7426d337b516b008b080ca3c329688c3b3507b62ea887fdd615961d803c1 : setup.py
7b4750528beffc9f1ea1fcec26b58d28bf378c908504fcca207770dd1557b784 : update_package.py