From owner-svn-ports-head@FreeBSD.ORG Sun Feb 2 09:27:44 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 43A6FA4B; Sun, 2 Feb 2014 09:27:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2F28F1CBA; Sun, 2 Feb 2014 09:27:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s129Ri20056893; Sun, 2 Feb 2014 09:27:44 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s129RhQN056889; Sun, 2 Feb 2014 09:27:43 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201402020927.s129RhQN056889@svn.freebsd.org> From: Kubilay Kocak Date: Sun, 2 Feb 2014 09:27:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r342257 - in head/devel: . py-tapi X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Feb 2014 09:27:44 -0000 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 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 +# $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 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/