日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python测试开发实战_《python测试开发实战》基于pytest基础部分实例1-Hello

發布時間:2023/12/3 python 24 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python测试开发实战_《python测试开发实战》基于pytest基础部分实例1-Hello 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

要求

實現如下命令行接口

python 1hello.py -h

usage: 1hello.py [-h] [-n NAME]

Say hello

optional arguments:

-h, --help show this help message and exit

-n NAME, --name NAME Name to greet

沒有參數時輸出Hello, World!

$python 1hello.py

Hello, World!

有參數時輸出Hello, 人名!

$ python 1hello.py -n Bob

Hello, Bob!

$ python 1hello.py --name Bob

Hello, Bob!

參考資料

參考答案

import argparse

# --------------------------------------------------

def get_args():

"""Get the command-line arguments"""

parser = argparse.ArgumentParser(description='Say hello')

parser.add_argument('-n', '--name', default='World', help='Name to greet')

return parser.parse_args()

# --------------------------------------------------

def main():

"""Make a jazz noise here"""

args = get_args()

print('Hello, ' + args.name + '!')

# --------------------------------------------------

if __name__ == '__main__':

main()

pytest

#!/usr/bin/env python3

"""tests for 1hello.py"""

import os

from subprocess import getstatusoutput, getoutput

prg = './1hello.py'

# --------------------------------------------------

def test_exists():

"""exists"""

assert os.path.isfile(prg)

# --------------------------------------------------

def test_runnable():

"""Runs using python3"""

out = getoutput(f'python3 {prg}')

assert out.strip() == 'Hello, World!'

# --------------------------------------------------

def test_executable():

"""Says 'Hello, World!' by default"""

out = getoutput(prg)

assert out.strip() == 'Hello, World!'

# --------------------------------------------------

def test_usage():

"""usage"""

for flag in ['-h', '--help']:

rv, out = getstatusoutput(f'{prg} {flag}')

assert rv == 0

assert out.lower().startswith('usage')

# --------------------------------------------------

def test_input():

"""test for input"""

for val in ['Universe', 'Multiverse']:

for option in ['-n', '--name']:

rv, out = getstatusoutput(f'{prg} {option} {val}')

assert rv == 0

assert out.strip() == f'Hello, {val}!'

總結

以上是生活随笔為你收集整理的python测试开发实战_《python测试开发实战》基于pytest基础部分实例1-Hello的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。