Date: Sun, 2 Feb 2014 09:27:43 +0000 (UTC) From: Kubilay Kocak <koobs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r342257 - in head/devel: . py-tapi Message-ID: <201402020927.s129RhQN056889@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: koobs Date: Sun Feb 2 09:27:42 2014 New Revision: 342257 URL: http://svnweb.freebsd.org/changeset/ports/342257 QAT: https://qat.redports.org/buildarchive/r342257/ Log: devel/py-tapi: Framework for testing APIs [NEW PORT] Tapi is a tool to automate the testing of your Application Programmer Interfaces (APIs). Features: * Test you API without writing any code (only edit a json file) * Test you APIs in a much more 'natural' way by specifying urls/verbs and what the output should be * Verify anything from response status codes, headers, body content etc * Also allows verification by issuing another API call to a different endpoint to ensure a prior API call worked * Execute arbitrary python scripts to populate request paramaters e.g. custom headers * Execute arbitrary python scripts to verify response from endpoint is valid * Tests your APIs using your own APIs WWW: https://github.com/jimmyislive/tapi/ PR: ports/186342 Submitted by: Johannes Jost Meixner <xmj@chaot.net> Added: head/devel/py-tapi/ head/devel/py-tapi/Makefile (contents, props changed) head/devel/py-tapi/distinfo (contents, props changed) head/devel/py-tapi/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Feb 2 09:05:59 2014 (r342256) +++ head/devel/Makefile Sun Feb 2 09:27:42 2014 (r342257) @@ -3807,6 +3807,7 @@ SUBDIR += py-sysctl SUBDIR += py-sysv_ipc SUBDIR += py-tables + SUBDIR += py-tapi SUBDIR += py-tarantool-queue SUBDIR += py-tconfpy SUBDIR += py-tempstorage Added: head/devel/py-tapi/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tapi/Makefile Sun Feb 2 09:27:42 2014 (r342257) @@ -0,0 +1,20 @@ +# Created by: Johannes Meixner <xmj@chaot.net> +# $FreeBSD$ + +PORTNAME= tapi +PORTVERSION= 0.1.7 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Tapi-${PORTVERSION} + +MAINTAINER= xmj@chaot.net +COMMENT= Framework for testing APIs + +LICENSE= MIT + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include <bsd.port.mk> Added: head/devel/py-tapi/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tapi/distinfo Sun Feb 2 09:27:42 2014 (r342257) @@ -0,0 +1,2 @@ +SHA256 (Tapi-0.1.7.tar.gz) = 32dba29d491bde3b68c6678f85d6adcbc50ffbfed44a88f4b1fff4991c337bd7 +SIZE (Tapi-0.1.7.tar.gz) = 7567 Added: head/devel/py-tapi/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-tapi/pkg-descr Sun Feb 2 09:27:42 2014 (r342257) @@ -0,0 +1,15 @@ +Tapi is a tool to automate the testing of your Application Programmer Interfaces +(APIs). Features: + +- Test you API without writing any code (only edit a json file) +- Test you APIs in a much more 'natural' way by specifying urls/verbs and what + the output should be +- Verify anything from response status codes, headers, body content etc +- Also allows verification by issuing another API call to a different endpoint + to ensure a prior API call worked +- Execute arbitrary python scripts to populate request paramaters e.g. custom + headers +- Execute arbitrary python scripts to verify response from endpoint is valid +- Tests your APIs using your own APIs + +WWW: https://github.com/jimmyislive/tapi/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402020927.s129RhQN056889>