การทดสอบแพ็กเกจของคุณ

การพัฒนา Python Packages

James Fulton

Climate informatics researcher

ศิลปะและวินัยของการทดสอบ

ลองนึกภาพว่ากำลังทำงานกับฟังก์ชันนี้

def get_ends(x):
    """Get the first and last element in a list"""
    return x[0], x[-1]

อาจทดสอบเพื่อให้แน่ใจว่าทำงานได้ถูกต้อง

# Check the function
get_ends([1,1,5,39,0])
(1, 0)
การพัฒนา Python Packages

ศิลปะและวินัยของการทดสอบ

แพ็กเกจที่ดีมักภูมิใจกับจำนวนเทสที่มี

  • โค้ดของแพ็กเกจ pandas มีการทดสอบครอบคลุมถึง 91% แบดจ์ coverage ของ pandas แสดงว่า 91% ของฟังก์ชันได้รับการทดสอบแล้ว
การพัฒนา Python Packages

การเขียนเทส

def get_ends(x):
    """Get the first and last element in a list"""
    return x[0], x[-1]
def test_get_ends():
    assert get_ends([1,5,39,0]) == (1,0)
test_get_ends()


การพัฒนา Python Packages

การเขียนเทส

def get_ends(x):
    """Get the first and last element in a list"""
    return x[0], x[1]
def test_get_ends():
    assert get_ends([1,5,39,0]) == (1,0)
test_get_ends()
AssertionError: 
...
การพัฒนา Python Packages

การเขียนเทส

def get_ends(x):
    """Get the first and last element in a list"""
    return x[0], x[-1]
def test_get_ends():
    assert get_ends([1,5,39,0]) == (1,0)
    assert get_ends(['n','e','r','d']) == ('n','d')
การพัฒนา Python Packages

การจัดระเบียบเทสในแพ็กเกจ

mysklearn/
|-- mysklearn   <-- package
|-- tests       <-- tests directory
|-- setup.py
|-- LICENSE
|-- MANIFEST.in
การพัฒนา Python Packages

การจัดระเบียบเทสในแพ็กเกจ

โครงสร้างไดเรกทอรีเทส

mysklearn/tests/
|-- __init__.py
|-- preprocessing

| |-- __init__.py | |-- test_normalize.py
| |-- test_standardize.py |-- regression | |-- __init__.py | |-- test_regression.py |-- test_utils.py

โครงสร้างไดเรกทอรีโค้ด

mysklearn/mysklearn/
|-- __init__.py
|-- preprocessing

| |-- __init__.py | |-- normalize.py
| |-- standardize.py |-- regression | |-- __init__.py | |-- regression.py |-- utils.py
การพัฒนา Python Packages

การจัดระเบียบโมดูลเทส

ภายใน test_normalize.py

from mysklearn.preprocessing.normalize import (
    find_max, find_min, normalize_data
)

def test_find_max(x):
    assert find_max([1,4,7,1])==7

def test_find_min(x):
    assert ...

def test_normalize_data(x):
    assert ...

DataCamp: Unit testing for data science

ภายใน normalize.py

def find_max(x):
    ...
    return x_max

def find_min(x):
    ...
    return x_min

def normalize_data(x):
    ...
    return x_norm
การพัฒนา Python Packages

การรันเทสด้วย pytest

pytest
  • pytest จะค้นหาในไดเรกทอรี test
  • ค้นหาโมดูลที่มีชื่อแบบ test_modulename.py
  • ค้นหาฟังก์ชันที่มีชื่อแบบ test_functionname()
  • รันฟังก์ชันเหล่านั้นและแสดงผลลัพธ์
mysklearn/ <-- navigate to here
|-- mysklearn
|-- tests
|-- setup.py
|-- LICENSE
|-- MANIFEST.in
การพัฒนา Python Packages

การรันเทสด้วย pytest

pytest
======================== test session starts ========================
platform linux -- Python 3.7.9, pytest-6.1.2, py-1.9.0, pluggy-0.13.1
rootdir: /home/workspace/mypackages/mysklearn
collected 6 items

tests/preprocessing/test_normalize.py ...                     [ 50%]
tests/preprocessing/test_standardize.py ...                   [100%]

========================= 6 passed in 0.23s =========================
การพัฒนา Python Packages

การรันเทสด้วย pytest

pytest
======================== test session starts ========================
platform linux -- Python 3.7.9, pytest-6.1.2, py-1.9.0, pluggy-0.13.1
rootdir: /home/workspace/mypackages/mysklearn     <--    ran in this directory
collected 6 items                                 <--    found 6 test functions

tests/preprocessing/test_normalize.py ...                     [ 50%]
tests/preprocessing/test_standardize.py ...                   [100%]

========================= 6 passed in 0.23s =========================
การพัฒนา Python Packages

การรันเทสด้วย pytest

pytest
======================== test session starts ========================
platform linux -- Python 3.7.9, pytest-6.1.2, py-1.9.0, pluggy-0.13.1
rootdir: /home/workspace/mypackages/mysklearn
collected 6 items

tests/preprocessing/test_normalize.py ...                     [ 50%]  <-- 
tests/preprocessing/test_standardize.py ...                   [100%]  <-- 

========================= 6 passed in 0.23s =========================
การพัฒนา Python Packages

การรันเทสด้วย pytest

pytest
======================== test session starts ========================
platform linux -- Python 3.7.9, pytest-6.1.2, py-1.9.0, pluggy-0.13.1
rootdir: /home/workspace/mypackages/mysklearn
collected 6 items

tests/preprocessing/test_normalize.py ...                     [ 50%]
tests/preprocessing/test_standardize.py ...                   [100%]

========================= 6 passed in 0.23s =========================
การพัฒนา Python Packages

การรันเทสด้วย pytest

pytest
==================================== test session starts ====================================
...
tests/preprocessing/test_normalize.py .F.                                              [ 50%]
tests/preprocessing/test_standardize.py ...                                            [100%]

========================================= FAILURES ==========================================
________________________________________ test_mymax _________________________________________
...

tests/preprocessing/test_normalize.py:10: AssertionError
================================== short test summary info ==================================
FAILED tests/preprocessing/test_normalize.py::test_mymax - assert -100 == 100       <-- test_mymax
================================ 1 failed, 5 passed in 0.17s ================================
การพัฒนา Python Packages

มาฝึกกันเถอะ!

การพัฒนา Python Packages

Preparing Video For Download...