婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

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

pytest框架之fixture詳細使用詳解

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

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

簡介:

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

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

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

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

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

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

用例設計原則

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

以test_開頭的函數(shù)

以Test開頭的類

以test_開頭的方法

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

定義fixture跟定義普通函數(shù)差不多,唯一區(qū)別就是在函數(shù)上加個裝飾器@pytest.fixture(),fixture命名不要以test開頭,跟用例區(qū)分開。fixture是有返回值得,沒有返回值默認為None。用例調用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或字典,然后從里面取出對應數(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')


輸出結果:
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')



輸出結果:
============================= 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互相調用

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')


輸出結果:
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ù)或方法都會調用

-class:每一個類調用一次,一個類中可以有多個方法

-module:每一個.py文件調用一次,該文件內又有多個function和class

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

fixture源碼詳解

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

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

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

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

ids:每個字符串id的列表,每個字符串對應于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')


輸出結果:

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)結果也是一樣的

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'])

輸出結果:

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里面有多個用例,都調用了次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'])

輸出結果:
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'])


輸出結果:
============================= 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模塊調用的,也就是當我們有多個.py文件的用例的時候,如果多個用例只需調用一次fixture,那就可以設置為scope="session",并且寫到conftest.py文件里。

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

文件目錄為

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í)行結果為:

================================================= 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 ===============================================

調用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í)行')

輸出結果:
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'])

輸出結果:
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用例想要同時調用多個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'])


輸出結果:
============================= 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沒開啟的,可以設置為True開啟自動使用fixture功能,這樣用例就不用每次都去傳參了

autouse設置為True,自動調用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'])


輸出結果:
============================= 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的文件,一般在工程根目錄下設置的conftest文件起到全局作用。在不同子目錄下也可以放conftest.py的文件,作用范圍只能在改層級以及以下目錄生效。

項目實例:

目錄結構:

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'])



輸出結果:

============================= 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是不能跨模塊調用的(這里沒有使用模塊調用)

# 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'])


輸出結果:
============================= 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 ===========================

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

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

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

巨人網(wǎng)絡通訊聲明:本文標題《pytest框架之fixture詳細使用詳解》,本文關鍵詞  pytest,框架,之,fixture,詳細,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《pytest框架之fixture詳細使用詳解》相關的同類信息!
  • 本頁收集關于pytest框架之fixture詳細使用詳解的相關信息資訊供網(wǎng)民參考!
  • 推薦文章
    婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av
    中文字幕一区免费在线观看 | 国产三级久久久| 91精品午夜视频| 91精品国产欧美一区二区成人| 日韩精品中文字幕在线一区| 久久久久久免费| 91香蕉视频mp4| 欧美精品在线观看播放| 337p粉嫩大胆色噜噜噜噜亚洲| 国产女人18毛片水真多成人如厕| 久久成人久久爱| 国产成人精品亚洲午夜麻豆| 日本久久电影网| 日韩亚洲欧美综合| 国产精品久久99| 亚洲夂夂婷婷色拍ww47| 日本在线不卡视频一二三区| 成人精品国产一区二区4080| 337p亚洲精品色噜噜狠狠| 久久免费偷拍视频| 亚洲电影你懂得| 国产一区二区主播在线| 欧美专区亚洲专区| 日本一区二区电影| 日韩精品一二三四| 色婷婷久久一区二区三区麻豆| 日韩一区二区麻豆国产| 国产精品不卡在线| 麻豆精品国产91久久久久久| 91麻豆高清视频| 国产日产欧美精品一区二区三区| 午夜久久久久久电影| 99久久精品国产网站| 久久欧美一区二区| 国模娜娜一区二区三区| 欧美视频一区二区在线观看| 日本一区二区免费在线观看视频 | 亚洲一区二区三区视频在线 | 成人网在线免费视频| 精品日韩在线观看| 午夜在线电影亚洲一区| 97超碰欧美中文字幕| 日韩亚洲欧美一区二区三区| 亚洲欧美国产三级| 国产精品夜夜嗨| 日韩一级片在线观看| 亚洲电影一区二区三区| 国产精品一区二区在线看| 日韩亚洲国产中文字幕欧美| 日韩一级免费一区| 亚洲精品一二三区| 色综合久久六月婷婷中文字幕| 精品va天堂亚洲国产| 国产综合成人久久大片91| 欧美三日本三级三级在线播放| 欧美高清在线一区| 国产白丝网站精品污在线入口| 不卡视频一二三四| 亚洲日本韩国一区| 国产91在线|亚洲| 国产精品无遮挡| 久久福利视频一区二区| 久久久久国产精品麻豆ai换脸| 天天操天天综合网| 日韩精品一区二区在线观看| 亚洲国产精品天堂| 91精品国产黑色紧身裤美女| 亚洲国产日韩一区二区| 911精品产国品一二三产区| 一区二区三区四区在线免费观看 | 色拍拍在线精品视频8848| 亚洲精品一区二区三区四区高清| 国产精品综合久久| 毛片av中文字幕一区二区| 精品视频1区2区| 亚洲黄色片在线观看| 欧美日韩一区二区电影| 亚洲一区二区综合| 日韩欧美一区二区免费| 国产视频一区二区在线| 日本一区二区三区四区在线视频| 国产一区在线不卡| 成人欧美一区二区三区视频网页 | www.欧美精品一二区| 亚洲黄色小说网站| 91麻豆免费视频| 亚洲va韩国va欧美va精品| 日韩视频一区二区三区| 久久精品国产网站| 欧美色综合久久| 国产成人av一区二区三区在线 | 亚洲综合一区二区三区| 日本国产一区二区| 久久99热国产| 久久精品人人做| 91在线你懂得| 亚洲第一激情av| 欧美激情一区二区三区| 91免费看片在线观看| 麻豆国产精品777777在线| 日韩精品中午字幕| 色综合久久精品| 亚洲综合丁香婷婷六月香| aa级大片欧美| 亚洲国产aⅴ天堂久久| 国产伦精一区二区三区| 亚洲一二三四在线| av电影一区二区| 久久er精品视频| 亚洲视频在线一区| 精品成人a区在线观看| 久久精品久久精品| 亚洲福利一区二区| 欧美大片免费久久精品三p | 91精品国产一区二区| 成人黄色小视频| 性欧美疯狂xxxxbbbb| 亚洲视频图片小说| 日韩小视频在线观看专区| 色丁香久综合在线久综合在线观看| 亚洲电影视频在线| 中文字幕亚洲电影| 日韩欧美一区二区三区在线| 欧美性色aⅴ视频一区日韩精品| 日韩av一区二区三区四区| 国产亚洲精品aa午夜观看| 精品制服美女丁香| 亚洲自拍偷拍综合| 91精品国产综合久久香蕉的特点| 色综合天天做天天爱| 午夜精品福利久久久| 亚洲免费观看高清完整版在线观看 | 热久久国产精品| 欧美高清视频在线高清观看mv色露露十八 | 久久在线观看免费| 一本大道久久精品懂色aⅴ| 国产成人亚洲精品狼色在线 | 不卡av在线网| 国产精品一卡二| 亚洲综合色自拍一区| 亚洲午夜免费电影| 欧美一区二区三区视频在线| 欧美日韩在线观看一区二区| 久久66热re国产| 亚洲综合精品久久| 欧洲av一区二区嗯嗯嗯啊| 激情文学综合插| 免费国产亚洲视频| 亚洲国产综合在线| 一区二区三国产精华液| 国产精品久久久久影院| 国产精品日韩成人| 久久久高清一区二区三区| 国产精品天天摸av网| 欧美精品一区二区三区高清aⅴ| 精品国产乱码久久久久久1区2区| 欧美日韩在线三级| 欧美成人vps| 精品三级在线看| 中文字幕一区在线| 日韩一区二区三区四区五区六区| 91精品国产免费| 欧美性色综合网| 欧美大肚乱孕交hd孕妇| 国产精品无圣光一区二区| 中文字幕乱码久久午夜不卡| 成人免费一区二区三区在线观看| 中文字幕av一区二区三区免费看| 精品福利一区二区三区免费视频| 在线亚洲精品福利网址导航| 欧美亚洲尤物久久| 欧美r级在线观看| 欧美精品一区二区不卡| 亚洲精品国产一区二区三区四区在线| 亚洲色图视频网站| 美女视频黄免费的久久| 国内精品在线播放| 欧美亚洲动漫精品| 欧美美女一区二区| 久久久精品人体av艺术| 国产午夜精品久久久久久免费视 | 麻豆久久久久久| 99久久综合99久久综合网站| 96av麻豆蜜桃一区二区| 日韩一区二区免费电影| 久久久亚洲国产美女国产盗摄| 亚洲欧美另类久久久精品| 五月天网站亚洲| 国产自产高清不卡| www..com久久爱| 在线播放欧美女士性生活| 日韩一级片网址| 亚洲一区二区五区| 免费精品99久久国产综合精品| 91亚洲精华国产精华精华液| 欧美亚洲国产一区二区三区| 久久综合久久综合亚洲| 日韩欧美成人一区二区| 亚洲精品欧美激情| 国产精品久久夜|