成人性生交大片免费看视频r_亚洲综合极品香蕉久久网_在线视频免费观看一区_亚洲精品亚洲人成人网在线播放_国产精品毛片av_久久久久国产精品www_亚洲国产一区二区三区在线播_日韩一区二区三区四区区区_亚洲精品国产无套在线观_国产免费www

主頁 > 知識庫 > pytest框架之fixture詳細使用詳解

pytest框架之fixture詳細使用詳解

熱門標簽:蘇州人工外呼系統(tǒng)軟件 看懂地圖標注方法 打印谷歌地圖標注 淮安呼叫中心外呼系統(tǒng)如何 電話機器人貸款詐騙 電話外呼系統(tǒng)招商代理 廣東旅游地圖標注 京華圖書館地圖標注 佛山通用400電話申請

本人之前寫了一套基于unnitest框架的UI自動化框架,但是發(fā)現(xiàn)了pytest框架之后覺得unnitest太low,現(xiàn)在重頭開始學(xué)pytest框架,一邊學(xué)習(xí)一邊記錄,和大家分享,話不多說,那就先從pytest框架的精髓fixture說起吧!

簡介:

  fixture區(qū)別于unnitest的傳統(tǒng)單元測試(setup/teardown)有顯著改進:

  1.有獨立的命名,并通過聲明它們從測試函數(shù)、模塊、類或整個項目中的使用來激活。

  2.按模塊化的方式實現(xiàn),每個fixture都可以互相調(diào)用。

  3.fixture的范圍從簡單的單元測試到復(fù)雜的功能測試,可以對fixture配置參數(shù),或者跨函數(shù)function,類class,模塊module或整個測試session范圍。

(很重要?。。。ê苤匾。。。ê苤匾。。。?/p>

謹記:當我們使用pytest框架寫case的時候,一定要拿它的命令規(guī)范去case,這樣框架才能識別到哪些case需要執(zhí)行,哪些不需要執(zhí)行。

用例設(shè)計原則

文件名以test_*.py文件和*_test.py

以test_開頭的函數(shù)

以Test開頭的類

以test_開頭的方法

fixture可以當做參數(shù)傳入

定義fixture跟定義普通函數(shù)差不多,唯一區(qū)別就是在函數(shù)上加個裝飾器@pytest.fixture(),fixture命名不要以test開頭,跟用例區(qū)分開。fixture是有返回值得,沒有返回值默認為None。用例調(diào)用fixture的返回值,直接就是把fixture的函數(shù)名稱當做變量名稱。

ex:

import pytest

@pytest.fixture()
def test1():
    a = 'leo'
    return a


def test2(test1):
    assert test1 == 'leo'


if __name__ == '__main__':
    pytest.main('-q test_fixture.py')

輸出:

============================= test session starts =============================
platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 1 item

test_fixture.py .                                                        [100%]

========================== 1 passed in 0.02 seconds ===========================
Process finished with exit code 0

使用多個fixture

如果用例需要用到多個fixture的返回數(shù)據(jù),fixture也可以返回一個元祖,list或字典,然后從里面取出對應(yīng)數(shù)據(jù)。

ex:

import pytest

@pytest.fixture()
def test1():
    a = 'leo'
    b = '123456'
    print('傳出a,b')
    return (a, b)


def test2(test1):
    u = test1[0]
    p = test1[1]
    assert u == 'leo'
    assert p == '123456'
    print('元祖形式正確')


if __name__ == '__main__':
    pytest.main('-q test_fixture.py')


輸出結(jié)果:
platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 1 item

test_fixture.py 傳出a,b
.元祖形式正確
                                                        [100%]

========================== 1 passed in 0.02 seconds ===========================
Process finished with exit code 0

當然也可以分成多個fixture,然后在用例中傳多個fixture參數(shù)

import pytest


@pytest.fixture()
def test1():
    a = 'leo'
    print('\n傳出a')
    return a


@pytest.fixture()
def test2():
    b = '123456'
    print('傳出b')
    return b


def test3(test1, test2):
    u = test1
    p = test2
    assert u == 'leo'
    assert p == '123456'
    print('傳入多個fixture參數(shù)正確')


if __name__ == '__main__':
    pytest.main('-q test_fixture.py')



輸出結(jié)果:
============================= test session starts =============================
platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 1 item

test_fixture.py 
傳出a
傳出b
.傳入多個fixture參數(shù)正確

fixture互相調(diào)用

import pytest


@pytest.fixture()
def test1():
    a = 'leo'
    print('\n傳出a')
    return a


def test2(test1):
    assert test1 == 'leo'
    print('fixture傳參成功')


if __name__ == '__main__':
    pytest.main('-q test_fixture.py')


輸出結(jié)果:
platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 1 item

test_fixture.py 
傳出a
.fixture傳參成功
                                                        [100%]

========================== 1 passed in 0.03 seconds ===========================
Process finished with exit code 0

介紹完了fixture的使用方式,現(xiàn)在介紹一下fixture的作用范圍(scope)

fixture的作用范圍

fixture里面有個scope參數(shù)可以控制fixture的作用范圍:session>module>class>function

-function:每一個函數(shù)或方法都會調(diào)用

-class:每一個類調(diào)用一次,一個類中可以有多個方法

-module:每一個.py文件調(diào)用一次,該文件內(nèi)又有多個function和class

-session:是多個文件調(diào)用一次,可以跨.py文件調(diào)用,每個.py文件就是module

fixture源碼詳解

fixture(scope='function',params=None,autouse=False,ids=None,name=None):

scope:有四個級別參數(shù)"function"(默認),"class","module","session"

params:一個可選的參數(shù)列表,它將導(dǎo)致多個參數(shù)調(diào)用fixture功能和所有測試使用它。

autouse:如果True,則為所有測試激活fixture func可以看到它。如果為False則顯示需要參考來激活fixture

ids:每個字符串id的列表,每個字符串對應(yīng)于params這樣他們就是測試ID的一部分。如果沒有提供ID它們將從params自動生成

name:fixture的名稱。這默認為裝飾函數(shù)的名稱。如果fixture在定義它的統(tǒng)一模塊中使用,夾具的功能名稱將被請求夾具的功能arg遮蔽,解決這個問題的一種方法時將裝飾函數(shù)命令"fixture_fixturename>"然后使用"@pytest.fixture(name='fixturename>')"。

具體闡述一下scope四個參數(shù)的范圍

scope="function"

@pytest.fixture()如果不寫參數(shù),參數(shù)就是scope="function",它的作用范圍是每個測試用例來之前運行一次,銷毀代碼在測試用例之后運行。

import pytest


@pytest.fixture()
def test1():
    a = 'leo'
    print('\n傳出a')
    return a


@pytest.fixture(scope='function')
def test2():
    b = '男'
    print('\n傳出b')
    return b


def test3(test1):
    name = 'leo'
    print('找到name')
    assert test1 == name


def test4(test2):
    sex = '男'
    print('找到sex')
    assert test2 == sex


if __name__ == '__main__':
    pytest.main('-q test_fixture.py')


輸出結(jié)果:

platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 2 items

test_fixture.py 
傳出a
.找到name

傳出b
.找到sex
                                                       [100%]

========================== 2 passed in 0.04 seconds ===========================

放在類中實現(xiàn)結(jié)果也是一樣的

import pytest


@pytest.fixture()
def test1():
    a = 'leo'
    print('\n傳出a')
    return a


@pytest.fixture(scope='function')
def test2():
    b = '男'
    print('\n傳出b')
    return b


class TestCase:
    def test3(self, test1):
        name = 'leo'
        print('找到name')
        assert test1 == name

    def test4(self, test2):
        sex = '男'
        print('找到sex')
        assert test2 == sex


if __name__ == '__main__':
    pytest.main(['-s', 'test_fixture.py'])

輸出結(jié)果:

platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 2 items

test_fixture.py 
傳出a
.找到name

傳出b
.找到sex
                                                       [100%]

========================== 2 passed in 0.03 seconds ===========================
Process finished with exit code 0

scope="class"

fixture為class級別的時候,如果一個class里面有多個用例,都調(diào)用了次fixture,那么此fixture只在此class里所有用例開始前執(zhí)行一次。

import pytest


@pytest.fixture(scope='class')
def test1():
    b = '男'
    print('傳出了%s, 且只在class里所有用例開始前執(zhí)行一次!??!' % b)
    return b


class TestCase:
    def test3(self, test1):
        name = '男'
        print('找到name')
        assert test1 == name

    def test4(self, test1):
        sex = '男'
        print('找到sex')
        assert test1 == sex


if __name__ == '__main__':
    pytest.main(['-s', 'test_fixture.py'])

輸出結(jié)果:
platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 2 items

test_fixture.py 傳出了男, 且只在class里所有用例開始前執(zhí)行一次?。?!
.找到name
.找到sex
                                                       [100%]

========================== 2 passed in 0.05 seconds ===========================
Process finished with exit code 0

scope="module"

fixture為module時,在當前.py腳本里面所有用例開始前只執(zhí)行一次。

import pytest
##test_fixture.py

@pytest.fixture(scope='module')
def test1():
    b = '男'
    print('傳出了%s, 且在當前py文件下執(zhí)行一次?。?!' % b)
    return b


def test3(test1):
    name = '男'
    print('找到name')
    assert test1 == name


class TestCase:

    def test4(self, test1):
        sex = '男'
        print('找到sex')
        assert test1 == sex


if __name__ == '__main__':
    pytest.main(['-s', 'test_fixture.py'])


輸出結(jié)果:
============================= test session starts =============================
platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 2 items

test_fixture.py 傳出了男, 且在當前py文件下執(zhí)行一次!??!
.找到sex
.找到name
                                                       [100%]

========================== 2 passed in 0.03 seconds ===========================
Process finished with exit code 0

scope="session"

fixture為session級別是可以跨.py模塊調(diào)用的,也就是當我們有多個.py文件的用例的時候,如果多個用例只需調(diào)用一次fixture,那就可以設(shè)置為scope="session",并且寫到conftest.py文件里。

conftest.py文件名稱時固定的,pytest會自動識別該文件。放到項目的根目錄下就可以全局調(diào)用了,如果放到某個package下,那就在改package內(nèi)有效。

文件目錄為

import pytest
# conftest.py

@pytest.fixture(scope='session')
def test1():
    sex = '男'
    print('獲取到%s' % sex)
    return sex
import pytest
# test_fixture.py

def test3(test1):
    name = '男'
    print('找到name')
    assert test1 == name


if __name__ == '__main__':
    pytest.main(['-s', 'test_fixture.py'])
import pytest
# test_fixture1.py

class TestCase:

    def test4(self, test1):
        sex = '男'
        print('找到sex')
        assert test1 == sex


if __name__ == '__main__':
    pytest.main(['-s', 'test_fixture1.py'])

如果需要同時執(zhí)行兩個py文件,可以在cmd中在文件py文件所在目錄下執(zhí)行命令:pytest -s test_fixture.py test_fixture1.py

執(zhí)行結(jié)果為:

================================================= test session starts =================================================
platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\exercise, inifile:
collected 2 items

test_fixture.py 獲取到男
找到name
.
test_fixture1.py 找到sex
.

============================================== 2 passed in 0.05 seconds ===============================================

調(diào)用fixture的三種方法

1.函數(shù)或類里面方法直接傳fixture的函數(shù)參數(shù)名稱

import pytest
# test_fixture1.py


@pytest.fixture()
def test1():
    print('\n開始執(zhí)行function')


def test_a(test1):
    print('---用例a執(zhí)行---')


class TestCase:

    def test_b(self, test1):
        print('---用例b執(zhí)行')

輸出結(jié)果:
test_fixture1.py 
開始執(zhí)行function
.---用例a執(zhí)行---

開始執(zhí)行function
.---用例b執(zhí)行
                                                      [100%]

========================== 2 passed in 0.05 seconds ===========================
Process finished with exit code 0

2.使用裝飾器@pytest.mark.usefixtures()修飾需要運行的用例

import pytest
# test_fixture1.py


@pytest.fixture()
def test1():
    print('\n開始執(zhí)行function')


@pytest.mark.usefixtures('test1')
def test_a():
    print('---用例a執(zhí)行---')


@pytest.mark.usefixtures('test1')
class TestCase:

    def test_b(self):
        print('---用例b執(zhí)行---')

    def test_c(self):
        print('---用例c執(zhí)行---')


if __name__ == '__main__':
    pytest.main(['-s', 'test_fixture1.py'])

輸出結(jié)果:
platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 3 items

test_fixture1.py 
開始執(zhí)行function
.---用例a執(zhí)行---

開始執(zhí)行function
.---用例b執(zhí)行---

開始執(zhí)行function
.---用例c執(zhí)行---
                                                     [100%]

========================== 3 passed in 0.06 seconds ===========================
Process finished with exit code 0

疊加usefixtures

如果一個方法或者一個class用例想要同時調(diào)用多個fixture,可以使用@pytest.mark.usefixture()進行疊加。注意疊加順序,先執(zhí)行的放底層,后執(zhí)行的放上層。

import pytest
# test_fixture1.py


@pytest.fixture()
def test1():
    print('\n開始執(zhí)行function1')


@pytest.fixture()
def test2():
    print('\n開始執(zhí)行function2')


@pytest.mark.usefixtures('test1')
@pytest.mark.usefixtures('test2')
def test_a():
    print('---用例a執(zhí)行---')


@pytest.mark.usefixtures('test2')
@pytest.mark.usefixtures('test1')
class TestCase:

    def test_b(self):
        print('---用例b執(zhí)行---')

    def test_c(self):
        print('---用例c執(zhí)行---')


if __name__ == '__main__':
    pytest.main(['-s', 'test_fixture1.py'])


輸出結(jié)果:
============================= test session starts =============================
platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 3 items

test_fixture1.py 
開始執(zhí)行function2

開始執(zhí)行function1
.---用例a執(zhí)行---

開始執(zhí)行function1

開始執(zhí)行function2
.---用例b執(zhí)行---

開始執(zhí)行function1

開始執(zhí)行function2
.---用例c執(zhí)行---
                                                     [100%]

========================== 3 passed in 0.03 seconds ===========================
Process finished with exit code 0

usefixtures與傳fixture區(qū)別

如果fixture有返回值,那么usefixture就無法獲取到返回值,這個是裝飾器usefixture與用例直接傳fixture參數(shù)的區(qū)別。

當fixture需要用到return出來的參數(shù)時,只能講參數(shù)名稱直接當參數(shù)傳入,不需要用到return出來的參數(shù)時,兩種方式都可以。

fixture自動使用autouse=True

當用例很多的時候,每次都傳這個參數(shù),會很麻煩。fixture里面有個參數(shù)autouse,默認是False沒開啟的,可以設(shè)置為True開啟自動使用fixture功能,這樣用例就不用每次都去傳參了

autouse設(shè)置為True,自動調(diào)用fixture功能

import pytest
# test_fixture1.py


@pytest.fixture(scope='module', autouse=True)
def test1():
    print('\n開始執(zhí)行module')


@pytest.fixture(scope='class', autouse=True)
def test2():
    print('\n開始執(zhí)行class')


@pytest.fixture(scope='function', autouse=True)
def test3():
    print('\n開始執(zhí)行function')


def test_a():
    print('---用例a執(zhí)行---')


def test_d():
    print('---用例d執(zhí)行---')


class TestCase:

    def test_b(self):
        print('---用例b執(zhí)行---')

    def test_c(self):
        print('---用例c執(zhí)行---')


if __name__ == '__main__':
    pytest.main(['-s', 'test_fixture1.py'])


輸出結(jié)果:
============================= test session starts =============================
platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\exercise, inifile:collected 4 items

test_fixture1.py 
開始執(zhí)行module

開始執(zhí)行class

開始執(zhí)行function
.---用例a執(zhí)行---

開始執(zhí)行class

開始執(zhí)行function
.---用例d執(zhí)行---

開始執(zhí)行class

開始執(zhí)行function
.---用例b執(zhí)行---

開始執(zhí)行function
.---用例c執(zhí)行---
                                                    [100%]

conftest.py的作用范圍

一個工程下可以建多個conftest.py的文件,一般在工程根目錄下設(shè)置的conftest文件起到全局作用。在不同子目錄下也可以放conftest.py的文件,作用范圍只能在改層級以及以下目錄生效。

項目實例:

目錄結(jié)構(gòu):

1.conftest在不同的層級間的作用域不一樣

# conftest層級展示/conftest.py

import pytest


@pytest.fixture(scope='session', autouse=True)
def login():
    print('----準備登錄----')





# conftest層級展示/sougou_login/conftest
import pytest


@pytest.fixture(scope='session', autouse=True)
def bai_du():
    print('-----登錄百度頁面-----')







# conftest層級展示/sougou_login/login_website
import pytest


class TestCase:
    def test_login(self):
        print('hhh,成功登錄百度')


if __name__ == '__main__':
    pytest.main(['-s', 'login_website.py'])



輸出結(jié)果:

============================= test session starts =============================
platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\conftest層級演示\sougou_login, inifile:collected 1 item

login_website.py ----準備登錄----
-----登錄百度頁面-----
.hhh,成功登錄百度
                                                       [100%]

========================== 1 passed in 0.03 seconds ===========================
Process finished with exit code 0

2.conftest是不能跨模塊調(diào)用的(這里沒有使用模塊調(diào)用)

# conftest層級演示/log/contfest.py
import pytest


@pytest.fixture(scope='function', autouse=True)
def log_web():
    print('打印頁面日志成功')




# conftest層級演示/log/log_website.py
import pytest


def test_web():
    print('hhh,成功一次打印日志')


def test_web1():
    print('hhh,成功兩次打印日志')


if __name__ == '__main__':
    pytest.main(['-s', 'log_website.py'])


輸出結(jié)果:
============================= test session starts =============================
platform win32 -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: C:\Program Files\PycharmProjects\conftest層級演示\log, inifile:
collected 2 items

log_website.py ----準備登錄----
打印頁面日志成功
hhh,成功一次打印日志
.打印頁面日志成功
hhh,成功兩次打印日志
.

========================== 2 passed in 0.02 seconds ===========================

到此這篇關(guān)于pytest框架之fixture詳細使用詳解的文章就介紹到這了,更多相關(guān)pytest fixture內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • python pytest進階之fixture詳解
  • pytest進階教程之fixture函數(shù)詳解
  • Python 測試框架unittest和pytest的優(yōu)劣
  • Python自動化測試pytest中fixtureAPI簡單說明

標簽:股票 湖州 中山 衡水 江蘇 呼和浩特 駐馬店 畢節(jié)

巨人網(wǎng)絡(luò)通訊聲明:本文標題《pytest框架之fixture詳細使用詳解》,本文關(guān)鍵詞  pytest,框架,之,fixture,詳細,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《pytest框架之fixture詳細使用詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于pytest框架之fixture詳細使用詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    116极品美女视频在线观看| 国产一区二区免费在线| 亚洲欧美偷拍另类a∨色屁股| 成人午夜av在线| 岛国大片在线免费观看| 精品a在线观看| 欧美乱妇高清无乱码| 精品免费在线| 免费一区二区三区在线观看| 欧美天堂影院| 一区二区三区国产精华| 亚洲精品视频在线观看免费| 巨胸大乳www视频免费观看| 日本精品视频一区| 黄色日韩在线| 国产精品久久久久久久一区二区| 精品国产一区二区在线观看| 欧美一级黄色影院| 狠狠久久伊人| 999精品在线视频| 女人喷潮完整视频| 天天综合天天做天天综合| 中文av字幕一区| 一级毛片视频| 欧美xxxxbb| 日本a级不卡| 国产最新在线| 亚洲91av视频| 亚洲国产美女视频| 国产第100页| 一区二区不卡在线视频 午夜欧美不卡在| 亚洲福利影片在线| 97在线观看免费高| 亚洲国产aⅴ天堂久久| 欧美另类69精品久久久久9999| 黑人40厘米全进去| www.四虎在线观看| 国产黄色免费网站| 91日韩中文字幕| 美女爽到呻吟久久久久| 免费一级肉体全黄毛片| 成人手机视频在线| 欧美亚洲在线日韩| 全免费a级毛片| 国产精品电影一区二区三区| 国产欧美日韩精品一区二区三区| 亚洲成人精选| 成人免费淫片免费观看| 国产精品国产精品国产| 欧美视频三区在线播放| 亚洲成人av电影在线| 久久精品xxxxx| 91色在线播放| 欧美日韩精品一区视频| 日韩国产中文字幕| 亚洲精品自拍区在线观看| 亲子伦视频一区二区三区| 欧美最猛黑人xxxx| 国产精品福利导航| 久久国产主播| 国产精品国产精品国产专区不片| 欧美男人的天堂一二区| 欧美—级a级欧美特级ar全黄| 婷婷精品进入| 爱情电影网av一区二区| 欧美二级三级| 日韩欧美亚洲国产| 亚洲综合精品久久| 国产一区二区三区视频在线播放| 久久久人成影片一区二区三区在哪下载| 亚洲视频在线观看网站| 热99精品视频| 亚洲人成高清| 成人国产电影在线观看| 天天碰日日操| 欧美日韩免费观看一区| 国产高清自拍视频| 欧美国产一二三区| 国产毛片精品国产一区二区三区| 亚州精品国产精品乱码不99按摩| 国产毛片久久久久| 亚洲午夜视频在线观看| 日韩一区二区三区在线视频| 一区二区三区三区在线| 久久精品电影网站| 国产精品免费av| 北条麻妃国产九九九精品小说| 欧美人一级淫片a免费播放| 灌醉mj刚成年的大学平面模特| 午夜精品久久久久久久四虎美女版| av片哪里在线观看| 96精品视频| 国产精品亚洲欧美在线播放| 国产一区二区精品| 亚洲欧洲一二三| 大桥未久av一区二区三区中文| 欧美精品一区在线观看| www.日本久久| 国产午夜性春猛交ⅹxxx| 97人妻精品一区二区三区动漫| 亚洲爱爱综合网| 国产精品99久久久久久久久久久久| 久久精品视频网站| 欧美精品一区二区在线播放| 欧美一区二区精美| 91精品国产欧美一区二区成人| 国产亚洲午夜| 影音先锋2020色资源网| 国产精品免费aⅴ片在线观看| 神马影院一区二区三区| 色婷婷精品大视频在线蜜桃视频| 亚洲欧洲美洲在线综合| 欧美大片免费高清观看| 国产精品成人在线| 国产精品一二| 久久久久久国产精品日本| 欧美巨大另类极品videosbest| 91精品店在线| 精品久久久久久亚洲| 天天干天天操天天爱| 国产成人av网站| 午夜成人亚洲理伦片在线观看| 国产在线精品视频| 国产日产欧美一区| 99久久久国产精品| 欧美jizz| 欧美大片免费高清观看| 色婷婷综合久久久| 国产精品久久99| 第九色区aⅴ天堂久久香| 免费国产黄线在线观看视频| 国产精品99久久久久久白浆小说| 久久97视频| 免费网站成人| 亚洲综合网在线| 亚洲影院中文字幕| 亚洲av无码一区二区三区在线| 在线观看一区欧美| 日韩美女在线播放| 欧美日日夜夜| 性欧美大战久久久久久久免费观看| gogogo高清在线观看免费完整版| 爱高潮www亚洲精品| 久久av红桃一区二区禁漫| 欧美亚洲综合视频| 天堂99x99es久久精品免费| 欧美日韩一级二级| 秋霞久久久久久一区二区| 欧美大片网站| 欧美人体一区二区三区| 91高清视频在线观看| 欧美做受高潮电影o| 精品久久久无码人妻字幂| 久久久久国产视频| 亚洲日本japanese丝袜| 国产成人综合精品| 精品免费视频一区二区| 国内精品免费**视频| 欧美三日本三级少妇三2023| 亚洲综合精品伊人久久| 国产精品中文字幕久久久| 国产又粗又猛又爽又黄的视频一| 少妇高潮露脸国语对白| 国产综合精品一区二区三区| 久久综合在线观看| 手机看片福利日韩| 天天做天天摸天天爽天天爱| 亚洲欧美强伦一区二区| 国产美女精品久久| 久久国产视频精品| 国产超级va在线视频| 91精品国产福利尤物| 国内精品露脸在线视频播放| 97精品欧美一区二区三区| sdde在线播放一区二区| 精品视频一区二区观看| 国产免费拔擦拔擦8x在线播放| 国产视频aaa| 国产精品一区二区免费在线观看| 色94色欧美一区| 欧美日韩精品系列| eeuss影院在线观看第一页| 亚洲视频免费在线| 伊人伊人av电影| 色喇叭免费久久综合网| 国产精品国产馆在线真实露脸| 涩涩视频在线观看下载| 欧美一区二区网站| 成人一区二区三区视频| 老司机aⅴ毛片免费观看| 精品伦精品一区二区三区视频| 国产高清一区二区三区四区| 狠狠躁夜夜躁人人爽天天天天97| 国产精品中文字幕亚洲欧美| 最近2019年手机中文字幕| 小早川怜子痴女在线精品视频| 黄色片网站免费| 精品国产一区二区三区久久久蜜臀| a毛片在线播放| 中文精品一区二区三区| 亚洲先锋影音| 欧美三级免费看| 亚洲国产欧美一区二区丝袜黑人| 美女一区二区三区视频| 91直播在线观看| 91免费在线看| 日韩在线免费高清视频| 欧美巨猛xxxx猛交黑人97人| 91在线无精精品一区二区| 久久久免费视频网站| 粉嫩老牛aⅴ一区二区三区| 狠狠色丁香九九婷婷综合五月| 久久99精品国产自在现线| 真实新婚偷拍xxxxx| 黑人极品ⅴideos精品欧美棵| 99riav一区二区三区| 欧美一级片一区| 尤物视频在线视频| 午夜伦理福利在线| 免费一级毛片在线观看| 欧美一级xxx| 国产精品成人免费在线| 日本精品在线播放| 国产乱淫a∨片免费观看| 国产粉嫩在线观看| 久久久久亚洲av成人片| 色综合影院在线| 国产视频中文字幕| 韩国av一区二区三区在线观看| 你懂的国产精品永久在线| 成人免费观看视频在线观看| fc2成人免费视频| xxxx一级片| 强伦女教师2:伦理在线观看| 国精产品乱码一区一区三区四区| 欧美激情三级| av一级在线观看| 高潮久久久久久久久久久久久久| 韩国av一区二区三区四区| 欧美乱大交做爰xxxⅹ小说| 亚洲一级片在线看| 国产伦精品一区二区三区视频女| 中文文字幕一区二区三三| julia一区二区中文久久94| 国产在线视频福利| 国产精品日日爱| 成人全视频在线观看在线播放高清| 特级特黄刘亦菲aaa级| 日本三级韩国三级欧美三级| 日韩成人av免费| 国产成人a亚洲精v品无码| 欧美激情 国产精品| 亚洲一区二区三区午夜| 亚洲欧美在线精品| 黄页免费观看| 亚洲香蕉久久| 99精品国产一区二区| 亚洲国产成人午夜在线一区| 精品久久久久国产| 2019一级黄色毛片免费看网| 牛牛澡牛牛爽一区二区| 亚洲码欧美码一区二区三区| 欧美激情奇米色| www.久久热| 国产图片一区| 国产一级片大全| gv天堂gv无码男同在线观看| 香蕉影院在线观看| 国产自产2019最新不卡| 狠狠艹夜夜干| 日韩精品视频在线观看视频| 996久久国产精品线观看| 国产精品毛片久久久久久久久久99999999| 久久在线电影| 天天射天天爱天天射干| 成人美女在线观看| 国产综合视频| 午夜日韩成人影院| 亚洲av成人精品毛片| 天天操天天舔天天干| 国产亚洲二区| 亚洲精品久久久久久下一站| 日本a级片免费观看| 先锋影音男人| 中文字幕第80页| 日本电影一区二区在线观看| 亚洲精品精品亚洲| 色女孩综合影院| 91精品国产麻豆国产自产在线| 国产三区在线观看| 蜜臀av免费一区二区三区| 久久久久女人精品毛片九一| 午夜精品在线视频一区| 久久精品成人欧美大片免费| 国产伦精品一区二区三区免费迷| 欧美肉大捧一进一出免费视频| 中文字幕乱码在线| 美女av免费看| 人妻少妇精品一区二区三区| 香港伦理在线| 国产无套粉嫩白浆在线2022年| 日韩精品一区二区三区中文精品| 欧美黄色录像| 99re这里只有精品首页| 免费在线视频你懂的| 国内精品久久久久影院薰衣草| 美女视频免费一区| 成人免费网站黄| 欧美h片在线观看| av免费在线电影| 亚洲自拍第二页| 黄色一级视频网站| 操人视频在线观看欧美| 午夜一区二区三视频在线观看| 97香蕉碰碰人妻国产欧美| 国产美女免费看| 一本大道久久a久久精品| 男人的天堂成人在线| 91在线观看入口| 2025国产精品视频| 偷偷www综合久久久久久久| 激情av在线播放| 中文字幕免费在线观看视频| 国产精品一级黄| 青春有你2免费观看完整版在线播放高清| 久久精品国产一区二区三| 自拍视频在线看| 久久网中文字幕|