Jenkinsメモ¶
OSXへのインストール¶
http://qiita.com/makoto_kw/items/cbe93d4ebbc35f3b43fd を参考にした。
brew install jenkins
cp -p /usr/local/opt/jenkins/*.plist ~/Library/LaunchAgents
vi ~/Library/LaunchAgents/homebrew.mxcl.jenkins.plist
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.jenkins.plist
launchctl start homebrew.mxcl.jenkins
# launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.jenkins.plist
# launchctl stop homebrew.mxcl.jenkins
APIテストを作成してみる¶
概要¶
ここではWeb API開発を前提としてテストを作成する。
http://tech.albert2005.co.jp/blog/2014/07/10/notify-hipchat-from-jenkins/
をみるのが良さそう。
WebAPIの作成¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
from flask import Flask, request
from urllib import urlencode
import json
"""
テストは以下のように実施します。
正常な例:
curl -H "Content-Type:application/json" -X POST -d '{"val1": 1, "val2": 2}' http://localhost:5000/add
失敗する例
curl -H "Content-Type:application/json" -X POST -d '{"val1": 1, "val2": "2"}' http://localhost:5000/add
"""
app = Flask(__name__)
@app.route('/', methods=['GET'])
def index():
return('index')
@app.route('/add', methods=['POST'])
def hello():
res = proc_add(request.data)
c = ""
c += str(res)
return(c)
@app.route('/hello/<name>', methods=['GET'])
def hello_withname(name):
return("hi! {0}".format(name))
def proc_add(stJson):
diInput = json.loads(stJson)
if not "val1" in diInput:
raise Excetion("noval1")
if not "val2" in diInput:
raise Excetion("noval2")
inRes = diInput["val1"] + diInput["val2"]
diRet = {}
diRet['res'] = inRes
return(json.dumps(diRet, indent = 2))
if __name__ == '__main__':
app.run(debug=True, host="0.0.0.0")
|
みたいなコードを作成した。
# curl -H "Content-Type:application/json" -X POST -d '{"val1": 1, "val2": 2}' http://localhost:5000/add
<hr>3<hr>
のようにテストできる。
で、Flaskアプリ化したいので、
1 2 3 4 5 | # -*- coding:utf-8 -*-
import sys, os
sys.path.append(os.path.dirname(__file__))
from json_add import app as application
|
を書いて、
WSGIDaemonProcess user=nobody group=nogroup threads=5
WSGIScriptReloading On
WSGIScriptAlias /calc /home/kanai/git/PythonJunkTest/Flask/json_add.wsgi
みたいに書いてあげる。 すると、
curl -H "Content-Type:application/json" -X POST -d '{"val1": 1, "val2": 1}' http://www.hogetan.net/calc/add
みたいに、apacheで提供できる。やったね。
テストを作る¶
APIができました!が目的ではなくて、テストの
Jenkinsに設定¶
http://tech.albert2005.co.jp/blog/2014/07/10/notify-hipchat-from-jenkins/ を最大限に使う。
easy_install unittest-xml-reporting
jenkins
フリースタイルプロジェクト
ソースコード管理「なし」
シェルスクリプトにして、
cd /Users/kanai/git/PythonJunkTest/Flask/Test_json_add
/usr/local/bin/nosetests --with-xunit -v
という感じで作る。これで上記のディレクトリに nosetests.xmlが生成されて、その結果を基にテストが行われる。