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/ portlint: looks fine. testport: ok redports: https://redports.org/buildarchive/20140201131427-24854/ Generated with FreeBSD Port Tools 0.99_12 (mode: new)
Responsible Changed From-To: freebsd-ports-bugs->freebsd-python freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool)
Responsible Changed From-To: freebsd-python->koobs I'll take it.
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/ _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed New port added. Thanks Johannes!