国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Pytest測試報告工具Allure的高級用法

89542767 / 485人閱讀

    小編寫這篇文章的主要目的,是給大家來做個介紹,介紹關于測試報告工具Allure用法的一些詳解,主要是關于一些Pytest Allure類的用法,那么,具體的代碼實例是什么呢?下面就給大家詳細解答下。


  Allure除了具有Pytest基本狀態外,其他幾乎所有功能也都支持。


  1、嚴重性


  如果你想對測試用例進行嚴重等級劃分,可以使用 allure.severity裝飾器,它可以應用于函數,方法或整個類。


  它以allure.severity_level枚舉值作為參數,分別為:BLOCKER(中斷),CRITICAL(嚴重),NORMAL(常規),MINOR(輕微),TRIVIAL(不重要)。


  示例:


  #test_sample.py
  import allure
  #兩數相加
  def add(x,y):
  return x+y
  #測試類
   allure.severity(allure.severity_level.TRIVIAL)
  class TestAdd:
   allure.severity(allure.severity_level.MINOR)
  def test_first(self):
  assert add(3,4)==7
   allure.severity(allure.severity_level.NORMAL)
  def test_second(self):
  assert add(-3,4)==1
   allure.severity(allure.severity_level.CRITICAL)
  def test_three(self):
  assert add(3,-4)==-1
   allure.severity(allure.severity_level.BLOCKER)
  def test_four(self):
  assert add(-3,-4)==-7


  運行:


  E:\workspace-py\Pytest>pytest test_sample.py--alluredir=report--clean-alluredir


  ==========================================================================test session starts==========================================================================


  platform win32--Python 3.7.3,pytest-6.0.2,py-1.9.0,pluggy-0.13.0


  rootdir:E:\workspace-py\Pytest


  plugins:allure-pytest-2.8.18,assume-2.3.3,cov-2.10.1,html-3.0.0,rerunfailures-9.1.1,xdist-2.1.0


  collected 4 items


  test_sample.py....[100%]


  ===========================================================================4 passed in 0.06s===========================================================================


  報告:

01.png

  E:\workspace-py\Pytest>pytest test_sample.py--allure-severities normal,critical


  ==========================================================================test session starts==========================================================================


  platform win32--Python 3.7.3,pytest-6.0.2,py-1.9.0,pluggy-0.13.0


  rootdir:E:\workspace-py\Pytest


  plugins:allure-pytest-2.8.18,assume-2.3.3,cov-2.10.1,html-3.0.0,rerunfailures-9.1.1,xdist-2.1.0


  collected 4 items


  test_sample.py..[100%]


  ===========================================================================2 passed in 0.02s===========================================================================


  2、功能


  如果你想對測試功能、測試場景進行行為描述,可以分別使用裝飾器: allure.feature和 allure.story。


  示例:


  #test_sample.py
  import allure
  #兩數相加
  def add(x,y):
  return x+y
   allure.feature('測試類')
  class TestAdd:
   allure.story('01測試兩個正數相加')
  def test_first(self):
  assert add(3,4)==7
   allure.story('02測試負數正數相加')
  def test_second(self):
  assert add(-3,4)==1
   allure.story('03測試正數負數相加')
  def test_three(self):
  assert add(3,-4)==-1
   allure.story('04測試兩個負數相加')
  def test_four(self):
  assert add(-3,-4)==-7

  運行:


  E:\workspace-py\Pytest>pytest test_sample.py--alluredir=report--clean-alluredir


  ==========================================================================test session starts==========================================================================


  platform win32--Python 3.7.3,pytest-6.0.2,py-1.9.0,pluggy-0.13.0


  rootdir:E:\workspace-py\Pytest


  plugins:allure-pytest-2.8.18,assume-2.3.3,cov-2.10.1,html-3.0.0,rerunfailures-9.1.1,xdist-2.1.0


  collected 4 items


  test_sample.py....[100%]


  ===========================================================================4 passed in 0.06s===========================================================================


  報告:

02.png

  你也可以通過--allure-features和--allure-stories選擇指定具體功能和故事運行,多個以逗號分隔。


  E:\workspace-py\Pytest>pytest test_sample.py--allure-stories 01測試兩個正數相加


  ==========================================================================test session starts==========================================================================


  platform win32--Python 3.7.3,pytest-6.0.2,py-1.9.0,pluggy-0.13.0


  rootdir:E:\workspace-py\Pytest


  plugins:allure-pytest-2.8.18,assume-2.3.3,cov-2.10.1,html-3.0.0,rerunfailures-9.1.1,xdist-2.1.0


  collected 4 items


  test_sample.py.[100%]


  ===========================================================================1 passed in 0.02s===========================================================================


  3、步驟


  如果你想對每個測試調用進行非常詳細的逐步說明,可以通過 allure.step裝飾器來實現(固件同樣支持)。


  該裝飾器會將方法或函數的調用與提供的參數一起添加到報表中,并且可以包含一條描述行,該行支持位置和關鍵字參數。


  示例:


  #test_sample.py
  import pytest
  import allure
   allure.step('兩數相加:{0}+{y}')
  def add(x,y):
  r=x+y
  print_res(r)
  return r
   allure.step
  def print_res(r):
  print('計算結果:',r)
  class TestLearning:
  data=[
  [3,4,7],
  [-3,4,1],
  [3,-4,-1],
  [-3,-4,-7],
  ]
   pytest.mark.parametrize("data",data)
  def test_add(self,data):
  assert add(data[0],data[1])==data[2]


  報告:

03.png

  4、標題


  如果你想讓測試標題更具可讀性,可以使用 allure.title裝飾器,該裝飾器支持參數的占位符并支持動態替換。


  示例:


  #test_sample.py
  import pytest
  import allure
  def add(x,y):
  return x+y
  class TestLearning:
  data=[
  [3,4,7],
  [-3,4,1],
  [3,-4,-1],
  [-3,-4,-7],
  ]
   allure.title("測試用例-{data}")
   pytest.mark.parametrize("data",data)
  def test_add(self,data):
  assert add(data[0],data[1])==data[2]


  報告:

04.png

  5、描述


  如果你想添加測試的詳細說明,可以通過添加測試方法描述信息,也可以使用裝飾器 allure.description和 allure.description_html。


  示例:


  #test_sample.py
  import allure
  #被測功能
  def add(x,y):
  return x+y
  #測試類
  class TestLearning:
   allure.description('測試正數相加')
  def test_first(self):
  assert add(3,4)==7
   allure.description_html('<h1>測試負數相加</h1>')
  def test_second(self):
  """你也可以在這里添加用例的描述信息,但是會被allure裝飾器覆蓋"""
  assert add(-3,-4)==-7

  報告:

05.png

  6、附件


  如果你想在報告中顯示不同類型的附件,可以通過以下兩種方式來實現:


  allure.attach(body,name,attachment_type,extension)


  allure.attach.file(source,name,attachment_type,extension)


  示例:


  import allure
  def test_multiple_attachments():
  allure.attach.file(r'C:\Users\Public\Pictures\Sample Pictures\Koala.jpg',attachment_type=allure.attachment_type.JPG)
  allure.attach('<head></head><body>測試頁面</body>','Attach with HTML type',allure.attachment_type.HTML)


  報告:

06.png

  7、鏈接


  如果你想關聯缺陷追蹤系統或測試管理系統,你可以使用裝飾器 allure.link、 allure.issue、 allure.testcase。


  示例:


  import allure
   allure.link('http://www.baidu.com')
  def test_with_named_link():
  pass
   allure.issue('101','缺陷問題描述')
  def test_with_issue_link():
  pass
   allure.testcase('http://this.testcase.com','測試用例標題')
  def test_with_testcase_link():
  pass

  報告:

08.png

  注意:


   allure.issue將提供帶有小錯誤圖標的鏈接,該描述符將測試用例ID作為輸入參數,以將其與提供的問題鏈接類型的鏈接模板一起使用。


  鏈接模板在--allure-link-patternPytest的配置選項中指定。鏈接模板和類型必須使用冒號指定:


  pytest test_sample.py--alluredir=report--allure-link-pattern=issue:http://www.mytesttracker.com/issue/{}


  官方文檔地址:https://docs.qameta.io/allure/


  綜上所述,就為大家介紹到這里了,希望可以為各位讀者帶來幫助。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/128177.html

相關文章

  • Pytest測試報告工具Allure用法介紹

      小編寫這篇文章的一個主要目的,主要是給大家介紹Python Pytest工具的介紹,主要是用來做測試報告工具用的,涵蓋的測試報告工具還是比較的多的,比如會使用到ALLure工具,具體怎么使用呢?下面就給大家詳細介紹下。  簡介  Allure Framework是一種靈活的、輕量級、多語言測試報告工具。  不僅可以以簡潔的網絡報告形式非常簡潔地顯示已測試的內容,  而且還允許參與開發過程的每個...

    89542767 評論0 收藏0
  • 做完自動化測試,但別讓不會匯報毀了你...

    摘要:前端自動化測試百度搜索功能實戰可以與結合生成測試報告。以網頁版本的百度為例,百度首頁呈現的功能新聞網頁貼吧知道音樂圖片視頻地圖等,我們以百度網頁的搜索功能為例,使用結合自動化測試框架,完成一個搜索功能的測試。 ...

    HelKyle 評論0 收藏0
  • Python接口測試之requests

    摘要:簡介是一個很實用的客戶端庫編寫爬蟲和測試服務器響應數據時經常會用到是語言的第三方的庫專門用于發送請求前提要下載請求無參數請求有參數請求案例傳參的第一種方式傳參的第二種方式請求類似中的表單提交 ...

    番茄西紅柿 評論0 收藏2637
  • Pytest+Allure使用問題記錄

    摘要:問題大部分問題是因為安裝了導致的比如此時需要先卸載然后再安裝包已經安裝過的不用重復安裝。版本問題類似于這種一般是因為版本太高導致建議卸載現有版本并安裝較低版本的。后續重裝低版本出現如下報錯重裝最新版本并重裝包 ...

    番茄西紅柿 評論0 收藏2637
  • 就因為Python自動化,那個天天摸魚同事,他居然升職了!

    摘要:根據具體的自動化測試崗位來說的,不要覺得自動化測試是機構炒起來的,確實有它存在的必要。自動化測試是相對手工測試而存在的,主要是通過所開發的軟件測試工具腳本等來實現,具有良好的可操作性可重復性和高效率等特點。 當代的打工人真的太苦了! 每個月拿著幾千塊的工資,卻為公司拼命,為老板賺錢; 天天9...

    laznrbfe 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<