青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

C++ Programmer's Cookbook

{C++ 基礎(chǔ)} {C++ 高級(jí)} {C#界面,C++核心算法} {設(shè)計(jì)模式} {C#基礎(chǔ)}

用cppunit進(jìn)行單元測(cè)試

Introduction

Within a Quality Assurance process, we have mainly two kinds of tests:

  • Unit tests (or acceptance tests): a set of verifications we can make to each logic unit in our system. With each test, we're checking its behavior, without keeping in mind all collaborations with other units.
  • System tests (or integration tests): every test allows you to check system's behavior, emphasizing unit collaborations.

We're going to speak about "unit testing" and how we can apply it in our C/C++ project, through CPPUnit unit testing framework.

I'm going to consider, you know what unit testing is, and why it is very important in software development process. If you want to read more about unit testing basis, you can check JUnit web site.

Unit tests design

Think about a typical scenario in a development team: a programmer is testing his or her code using the debugger. With this tool, you can check each variable value in every program at any time. Running step by step, you can verify if a variable has the expected value. This is powerful, but pretty slow and might have plenty of errors. A few programmers can keep their mind in a deep, hard and long debugging process and, after one or two hours, the programmer's brain is near break down. All these repetitive and hard verifications can be done automatically, with a few programming instructions and proper tools.

These tools I'm going to speak about are called "unit testing frameworks", with them you can write small modules which help you to test modules (classes, functions or libraries) of your applications.

Let's see this example: we're programming a small program module, whose main responsibility is to just add two numbers. As we're coding in plain C, this module is represented by a C function:

BOOL addition(int a, int b)
{
    return (a + b);
}

Our testing unit should be coded with another module, that is: another C function. This function checks all possible addition cases, and returns TRUE or FALSE, denoting if the module does or doesn't pass the test:

BOOL additionTest()
{
    if ( addition(1, 2) != 3 )
        return (FALSE);

    if ( addition(0, 0) != 0 )
        return (FALSE);

    if ( addition(10, 0) != 10 )
        return (FALSE);

    if ( addition(-8, 0) != -8 )
        return (FALSE);

    if ( addition(5, -5) != 0 )
        return (FALSE);

    if ( addition(-5, 2) != -3 )
        return (FALSE);

    if ( addition(-4, -1) != -5 )
        return (FALSE);

    return (TRUE);
}

As we can see, we've tested all possible addition cases:

  • Positive + Positive
  • Zero + Zero
  • Positive + Zero
  • Negative + Zero
  • Positive + Negative
  • Negative + Positive
  • Negative + Negative

Each test compares the addition result with expected value, and it returns FALSE if result is a value which is different than expected one. If execution path reaches last line, we consider that all tests have been passed correctly, and it returns TRUE.

This small module (or function) is called Test Case, and it shows a set of checks we do over a single unit. Every verification must be related with a single unit scenario. In this case, we check how "addition operation" behaves about operand's sign. We can write other Test Cases, for checking others scenarios. For example, we can code another Test Case in order to check our module behavior with typical addition properties:

int additionPropertiesTest()
{
    // conmutative: a + b = b + a
    if ( addition(1, 2) != addition(2, 1) )
        return (FALSE);

    // asociative: a + (b + c) = (a + b) + c
    if ( addition(1, addition(2, 3)) != addition(addition(1, 2), 3) )
        return (FALSE);

    // neutral element: a + NEUTRAL = a
    if ( addition(10, 0) != 10 )
        return (FALSE);

    // inverse element: a + INVERSE = NEUTRAL
    if ( addition(10, -10) != 0 )
        return (FALSE);

    return (TRUE);
}

In this example, we've checked some mathematical addition properties. These two Test Cases, build a Test Suite, that is: a collection of Test Cases which test the same unit.

All those Test Cases and Test Suites must be developed while we're coding the units, and every time the unit changes, corresponding unit test should reflect changes, modifying a Test Case or adding new one.

For instance, if we improve our "addition" module in order to add decimal numbers, we have to change our tests, adding for example a new addDecimalNumbersTest Test Case.

Extreme programming recommends you that you code all these unit tests before you code the target unit. Main reason is very simple: when you're involved in a development process, you're in a permanent research stage, in which you're thinking about how a unit should behave, what public interface you should publish, what parameters you should pass in methods, and other concrete aspects about external access, internal behavior... Coding "unit tests" before its development, you're getting this set of knowledge, and, when you code the main unit, you'll be able to develop faster and better than the other way.

Each time a team wishes to deploy a new release, they should perform a complete unit tests battery. All units must pass their unit (or acceptance) tests, and in this case, we can release a successful new version. If at least one unit doesn't pass all its tests, then we've found a bug. In that case, we must code another test, even add a new Test Case if its necessary, checking all conditions to reproduce this bug. When our new coded test can reproduce the bug properly, we can fix it, and perform the test again. If unit passes the test, we consider bug is resolved and we can release our new bug-free version.

Adding new tests cases for each bug found is very important, because that bug can reappear, and we need a test that detects that bug when it comes back again. In this way, our testing battery is growing bigger and bigger, and all possible errors, and all historic bugs, are covered.

Testing tools

Once upon a time, two guys called Kent Beck & Eric Gamma, wrote a set of Java classes in order to make unit testing as automatic as they can. They called them JUnit and it became a great hit in unit testing world. Other developers ported their code to other languages, building a big collection of products, called xUnit frameworks. Among them, we can find one for C/C++ (CUnit and CPPUnit), Delphi (DUnit), Visual Basic (VBUnit), NUnit (.NET platform), and many others.

All these frameworks apply similar rules, and probably you can use one if you've used another one, with few language-dependency exceptions.

Now, we're going to explain how you can use CPPUnit in order to write you own unit tests and improve your units' quality.

CPPUnit uses object oriented programming, so we're going to work with concepts like inheritance, encapsulation and polymorphism. Also, CPPUnit uses C++'s SEH (Structured Exception Handling), so you should understand concepts like "exception" and instructions and structures like throw, try, finally, catch and so on.

CPPUnit

Each Test Case should be coded inside a class derived from TestCase. This class brings us all basic functionality to run a test, register it inside a Test Suite, and so on.

For instance, we've wrote a small module which stores some data in disk. This module (coded as a class called DiskData) has mainly two responsibilities: load and store data inside a file. Let's take a look:

typedef struct _DATA
{
    int  number;
    char string[256];
} DATA, *LPDATA;


class DiskData
{
public:
    DiskData();
    ~DiskData();

    LPDATA getData();
    void setData(LPDATA value);

    bool load(char *filename);
    bool store(char *filename);

private:
    DATA m_data;
};

For now, it isn't important how these methods are coded, because most important thing is that we must be sure this class is doing all the things it must do, that is: load and store data correctly into a file.

In order to do this verification, we're going to create a new Test Suite with two test cases: one for load data and another for store data.

Using CPPUnit

You can get latest CPPUnit version here, where you can find all libraries, documentation, examples and other interesting stuff. (I've downloaded 1.8.0 and it works fine)

In Win32 world, you can use CPPUnit under Visual C++ (6 and later), but as CPPUnit uses ANSI C++, there are few ports to other environments like C++Builder.

All steps and information about building libraries can be found in INSTALL-WIN32.txt file, inside CPPUnit distribution. Once all binaries are built, you can write your own Test Suites.

In order to write your own unit test applications, under Visual C++, you must follow these steps:

  • Create a new Dialog based MFC application (or doc-view one)
  • Enable RTTI: Project Settings - C++ - C++ Language
  • Add CPPUnit\include folder to include directories: Tools - Options - Directories - Include.
  • Link your application with cppunitd.lib (for static link) or cppunitd_dll.lib (for dynamic link), and testrunnerd.lib. If you're compiling under "Release" configuration, you should link with same libraries, bout without "d" suffix.
  • Copy testrunnerd.dll in your executable folder, or any other folder in your path, and cppunitd_dll.dll if you linked dynamically (or testrunner.dll and cppunit_dll.dll if you're under Release)

Once your project is ready, we can code our first unit test class.

We're going to test our DiskData class, which mainly performs two operations: load and store data into a disk file. Our test case should test this two operations, with two Test Cases: one for load and the other for store the data.

Let's take a look at the unit test class definition:

#if !defined(DISKDATA_TESTCASE_H_INCLUDED)
#define DISKDATA_TESTCASE_H_INCLUDED

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include <cppunit/TestCase.h>
#include <cppunit/extensions/HelperMacros.h>

#include "DiskData.h"

class DiskDataTestCase : public CppUnit::TestCase
{
  CPPUNIT_TEST_SUITE(DiskDataTestCase);
      CPPUNIT_TEST(loadTest);
      CPPUNIT_TEST(storeTest);
  CPPUNIT_TEST_SUITE_END();

public:
    void setUp();
    void tearDown();

protected:
    void loadTest();
    void storeTest();

private:
    DiskData *fixture;    
};

#endif

First of all, we must include TestCase.h and HelperMacros.h. First one, lets us derive our new class from TestCase base class. Second one, helps us with some macros to define unit tests faster, like CPPUNIT_TEST_SUITE (for starting Test suite definition), CPPUNIT_TEST (for defining a test case) or CPPUNIT_TEST_SUITE_END (for ending our test suite definition).

Our class (called DiskDataTestCase) overrides two methods called setUp() and tearDown(). These methods are called automatically, and are executed when each Test Case starts and ends, respectively.

Protected methods implement our test logic, one for each Test Case. Few lines below, we're going to explain how you can code you test logic.

And finally, we define an attribute called fixture. This pointer will hold target object of our tests. We should create this object inside setUp() method, which is called before each Test Case. Then, Test Case code will be executed using our fixture object, and finally we destroy this object inside tearDown, after each Test Case execution. In this way, we get a new fresh object each time we execute a test case.

Our test sequence should be something like this:

  • Start test application
  • Click "Run" button
  • Call setUp() method: create our fixture object
  • Call first test case method
  • Call tearDown() method: free fixture object
  • Call setUp() method: create our fixture object
  • Call second test case method
  • Call tearDown() method: free the fixture object
  • ...

Our test sequence should be something like this:

#include "DiskDataTestCase.h"

CPPUNIT_TEST_SUITE_REGISTRATION(DiskDataTestCase);


void DiskDataTestCase::setUp()
{
    fixture = new DiskData();
}

void DiskDataTestCase::tearDown()
{
    delete fixture;
    fixture = NULL;
}


void DiskDataTestCase::loadTest()
{
    // our load test logic
}


void DiskDataTestCase::storeTest()
{
    // our store test logic
}

Implementation is very simple for now: setUp and tearDown methods, create and free fixture object respectively. Next you can see test case methods, which we're going to explain.

Test case programming

Once we know what aspects we should test, we must be able to program it. We can perform all operations we need: use base library calls, 3rd party library calls, Win32 API calls, or simply use internal attributes with C/C++ operators and instructions.

Sometimes, we'll need external helps like an auxiliary file or database table which stores correct data. In our test case, we should compare internal data with external file data to check they're the same.

Each time we find an error (for instance, if we detect internal data isn't the same as external correct data), we should raise a concrete exception. You can do this with CPPUNIT_FAIL(message) helper macro which raises an exception showing message parameter.

There is another way to check a condition and raise an exception if it's false, all in a single step. The way to do this is through assertions. Assertions are macros that let us check a condition, and they raise proper exception if condition is false, with other options.
There're some assertion macros:

  • CPPUNIT_ASSERT(condition): checks condition and throws an exception if it's false.
  • CPPUNIT_ASSERT_MESSAGE(message, condition): checks condition and throws an exception and showing specified message if it is false.
  • CPPUNIT_ASSERT_EQUAL(expected,current): checks if expected is the same as current, and raises exception showing expected and current values.
  • CPPUNIT_ASSERT_EQUAL_MESSAGE(message,expected,current): checks if expected is the same as actual, and raises exception showing expected and current values, and specified message.
  • CPPUNIT_ASSERT_DOUBLES_EQUAL(expected,current,delta): checks if expected and current difference is smaller than delta. If it fails, expected and current values are shown.

Following with our example, we should code our loadTest method. We're going to follow next algorithm: we need an auxiliary file which stores one correct DATA structure. The way of creating this auxiliary file isn't important, but it is very important this file must be correctly created and DATA structure must be correctly stored. In order to check our load method behavior, we're going to call it with our auxiliary file, and then check if loaded data is, the same we know is stored in our file. We can code like this:

//
// These are correct values stored in auxiliar file
//
#define AUX_FILENAME    "ok_data.dat"
#define FILE_NUMBER    19
#define FILE_STRING    "this is correct text stored in auxiliar file"

void DiskDataTestCase::loadTest()
{
    // convert from relative to absolute path
    TCHAR    absoluteFilename[MAX_PATH];
    DWORD    size = MAX_PATH;

    strcpy(absoluteFilename, AUX_FILENAME);
    CPPUNIT_ASSERT( RelativeToAbsolutePath(absoluteFilename, &size) );

    // executes action
    CPPUNIT_ASSERT( fixture->load(absoluteFilename) );

    // ...and check results with assertions
    LPDATA    loadedData = fixture->getData();

    CPPUNIT_ASSERT(loadedData != NULL);
    CPPUNIT_ASSERT_EQUAL(FILE_NUMBER, loadedData->number);
    CPPUNIT_ASSERT( 0 == strcmp(FILE_STRING, 
            fixture->getData()->string) );
}

With a single test case, we're testing four possible errors:

  • load method's return value
  • getData method's return value
  • number structure member's value
  • string structure member's value

In our second test case, we'll follow a similar scheme, but things are getting little harder. We're going to fill our fixture data with known data, store it in another temporal disk file, and then open both files (new one and auxiliary one), read them and compare contents. Both files should be identical because store method must generate same file structure.

void DiskDataTestCase::storeTest()
{
    DATA    d;
    DWORD      tmpSize, auxSize;
    BYTE     *tmpBuff, *auxBuff;
    TCHAR    absoluteFilename[MAX_PATH];
    DWORD    size = MAX_PATH;

    // configures structure with known data
    d.number = FILE_NUMBER;
    strcpy(d.string, FILE_STRING);

    // convert from relative to absolute path

    strcpy(absoluteFilename, AUX_FILENAME);
    CPPUNIT_ASSERT( RelativeToAbsolutePath(absoluteFilename, &size) );

    // executes action
    fixture->setData(&d);
    CPPUNIT_ASSERT( fixture->store("data.tmp") );

    // Read both files contents and check results 
    // ReadAllFileInMemory is an auxiliar function which allocates a buffer
    // and save all file content inside it. Caller should release the buffer.
    tmpSize = ReadAllFileInMemory("data.tmp", tmpBuff);
    auxSize = ReadAllFileInMemory(absoluteFilename, auxBuff);

    // files must exist
    CPPUNIT_ASSERT_MESSAGE("New file doesn't exists?", tmpSize > 0);
    CPPUNIT_ASSERT_MESSAGE("Aux file doesn't exists?", auxSize > 0);

    // sizes must be valid
    CPPUNIT_ASSERT(tmpSize != 0xFFFFFFFF);
    CPPUNIT_ASSERT(auxSize != 0xFFFFFFFF);

    // buffers must be valid
    CPPUNIT_ASSERT(tmpBuff != NULL);
    CPPUNIT_ASSERT(auxBuff != NULL);

    // both file's sizes must be the same as DATA's size
    CPPUNIT_ASSERT_EQUAL((DWORD) sizeof(DATA), tmpSize);
    CPPUNIT_ASSERT_EQUAL(auxSize, tmpSize);

    // both files content must be the same
    CPPUNIT_ASSERT( 0 == memcmp(tmpBuff, auxBuff, sizeof(DATA)) );

    delete [] tmpBuff;
    delete [] auxBuff;

    ::DeleteFile("data.tmp");
}

As we can see, we've configured a DATA structure with know data, and stored it using our fixture object. Then, we read resulting file (data.tmp) and compare it with our pattern file. We made all kind of verifications, like buffers and files sizes or buffers' contents. If both buffers are identical, then our store method works fine.

Launching user interface

And finally, we're going to see how we can show a MFC based user interface dialog, compiled inside TestRunner.dll library.

We should open our application class implementation file (ProjectNameApp.cpp) and add these lines to our InitInstance method:

#include <cppunit/ui/mfc/TestRunner.h>
#include <cppunit/extensions/TestFactoryRegistry.h>

BOOL CMy_TestsApp::InitInstance()
{
    ....

    // declare a test runner, fill it with our registered tests and run them
    CppUnit::MfcUi::TestRunner runner;

    runner.addTest( CppUnit::TestFactoryRegistry::getRegistry().makeTest() );

    runner.run();    

    return TRUE;
}

This is simpler isn't it? Just define a "runner" instance, and add all registered tests. Tests are registered through CPPUNIT_TEST_SUITE_REGISTRATION macro call inside our CPP file. Once tests are registered and added to runner, we can show the dialogs with run method.

Now, we're ready to run our test cases. Just compile your new project and run it from Visual Studio. You'll see MFC based dialog as above. Just click on browse and you'll see this dialog:

Just select one test (green node), or select parent blue node to run all registered tests.

 

 

posted on 2005-12-28 09:03 夢(mèng)在天涯 閱讀(3610) 評(píng)論(5)  編輯 收藏 引用 所屬分類: CPlusPlus

評(píng)論

# re: 用cppunit進(jìn)行單元測(cè)試 2010-06-09 18:05 KarinRios21

Thanks for a kind of the hottest knowledge referring to this post ! You have to found your <a href="http://www.primethesis.com">buy dissertation</a> service, I guess. Just because lots of <a href="http://www.primethesis.com">thesis writing service</a> do that and you can finish really good thesis paper likewise.   回復(fù)  更多評(píng)論   

# re: 用cppunit進(jìn)行單元測(cè)試 2010-06-15 03:27 essays online

Good post.I adore perceive it. Any person in the world is willing to become unique, but doesn’t know how to do that. But thousands of people serch for custom writing.   回復(fù)  更多評(píng)論   

# WTY 2010-07-13 14:24 cosplay

Cosplay Costumes Cosplay Wigs Movie TV Cosplay School Uniform Uniform Cosplay Cosplay Accessories . cosplay costumes cosplay wigs cosplay Professional cosplay costumes store - best choice to buy cosplay costumes online, 100% hand made to fit your body. naruto cosplay, Naruto costumes supply in stock and custom lace front wigs, full lace wigs, lace wigs, human hair wigs, remy lace front wigs, cheap wigs, cheap, buy, celebrity full lace wigs lace wigs lace wigs sale lace front wigs this is a professional online lace wigs store. Happy shopping for human wigs,full lace wigs,Front Wigs, party wigs.  回復(fù)  更多評(píng)論   

# re: 用cppunit進(jìn)行單元測(cè)試 2010-07-24 07:45 literature essays paper

Everyone at high school will read through your good idea close to this topic to create the high quality essays or even literature essays paper.   回復(fù)  更多評(píng)論   

# re: 用cppunit進(jìn)行單元測(cè)試 2011-11-15 17:14 Research Papers

Amazing job done with the marvelous effort.  回復(fù)  更多評(píng)論   

# re: 用cppunit進(jìn)行單元測(cè)試 2012-01-13 18:04 graphic design

I read this post through translator.  回復(fù)  更多評(píng)論   

公告

EMail:itech001#126.com

導(dǎo)航

統(tǒng)計(jì)

  • 隨筆 - 461
  • 文章 - 4
  • 評(píng)論 - 746
  • 引用 - 0

常用鏈接

隨筆分類

隨筆檔案

收藏夾

Blogs

c#(csharp)

C++(cpp)

Enlish

Forums(bbs)

My self

Often go

Useful Webs

Xml/Uml/html

搜索

  •  

積分與排名

  • 積分 - 1814982
  • 排名 - 5

最新評(píng)論

閱讀排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
      <noscript id="pjuwb"></noscript>
            <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
              <dd id="pjuwb"></dd>
              <abbr id="pjuwb"></abbr>
              最新国产乱人伦偷精品免费网站 | 欧美丝袜第一区| 久久福利资源站| 国产精品老牛| 欧美激情成人在线视频| 国产一级一区二区| 亚洲精品国精品久久99热一 | 一区二区三区日韩| 国产农村妇女精品| 亚洲淫片在线视频| 欧美一区二区三区免费在线看| 欧美在线国产| 久久久水蜜桃| 欧美视频在线观看免费网址| 亚洲国产欧美一区| 国产色婷婷国产综合在线理论片a| 久久综合九色综合欧美就去吻| 欧美精品一区二区三区四区| 香蕉久久夜色精品国产| 国产精品美女久久久久久免费| 欧美福利一区| 亚洲欧洲日本专区| 欧美日韩一区二区视频在线| 麻豆91精品| 亚洲国产高清aⅴ视频| 欧美/亚洲一区| 99视频超级精品| 欧美专区第一页| 在线观看福利一区| 欧美激情二区三区| 亚洲四色影视在线观看| 久久爱www久久做| 欧美网站大全在线观看| 亚洲午夜精品| 蜜桃伊人久久| 国产亚洲一区精品| 噜噜噜在线观看免费视频日韩| 久久久国产精品一区二区三区| 欧美日韩国产综合久久| 欧美成人午夜| 亚洲一区在线看| 欧美另类视频| 午夜亚洲视频| 亚洲精品护士| 久久人人97超碰国产公开结果 | 久久国产精品黑丝| 欧美韩国日本一区| 中文久久乱码一区二区| 久久字幕精品一区| 一区二区三区日韩在线观看| 欧美激情麻豆| 亚洲一区二区在线看| 亚洲影视九九影院在线观看| 国产麻豆一精品一av一免费| 蜜桃av综合| 香蕉久久夜色精品| 久久精品成人欧美大片古装| 亚洲国产精品一区制服丝袜 | 久久精品亚洲| 久久久久久九九九九| 亚洲精品免费一区二区三区| 国产模特精品视频久久久久| 欧美激情精品久久久久久变态| 亚洲高清资源| 欧美中文字幕在线观看| aa成人免费视频| 精品69视频一区二区三区 | 欧美一区日韩一区| 亚洲乱码视频| 亚洲电影免费在线观看| 国产日韩欧美精品综合| 欧美日韩亚洲一区| 欧美成人午夜免费视在线看片| 亚洲国产成人在线| 99精品视频免费观看| 欧美伦理在线观看| 久久夜色精品| 久久精彩视频| 午夜精品久久久久久久蜜桃app| 久久久99爱| 亚洲中字黄色| 亚洲午夜精品网| 国产精品一区二区你懂得 | 欧美亚洲综合在线| 日韩网站免费观看| 亚洲精品国精品久久99热| 欧美视频一区二区在线观看| 免费久久99精品国产自| 亚洲精品免费在线播放| 美女被久久久| 免费成人在线视频网站| 久久综合99re88久久爱| 一区二区激情视频| 国产女精品视频网站免费 | 久久爱91午夜羞羞| 亚洲欧美日韩精品在线| 亚洲免费影视第一页| 亚洲香蕉视频| 亚洲伊人色欲综合网| 亚洲欧美成人一区二区三区| 亚洲欧美精品伊人久久| 午夜在线视频观看日韩17c| 在线看欧美日韩| 伊人一区二区三区久久精品| 精东粉嫩av免费一区二区三区| 欧美日韩亚洲系列| 欧美视频在线观看视频极品| 国产精品成人v| 亚洲精品专区| 噜噜噜在线观看免费视频日韩| 亚洲激情成人| 91久久黄色| 99精品国产福利在线观看免费| 国产日韩精品综合网站| 国产日韩欧美在线| 欧美精品一区二区视频 | 亚洲国产精品va在线观看黑人| 亚洲少妇自拍| 亚洲欧美日韩区| 久久精精品视频| 蜜桃视频一区| 亚洲人体1000| 欧美11—12娇小xxxx| 欧美激情一区二区三级高清视频| 欧美在线观看一区| 久久久亚洲成人| 欧美激情视频在线播放| 久久免费视频网| 欧美成人激情在线| 日韩小视频在线观看| 午夜精品视频在线观看| 久久综合久久综合九色| 午夜精彩国产免费不卡不顿大片| 欧美高清在线一区二区| 亚洲日本va午夜在线影院| 亚洲网站在线| 久久亚洲一区二区三区四区| 欧美日韩国产美女| 国内精品久久久久影院 日本资源| 国产精品美女久久福利网站| 欧美男人的天堂| 国产人成一区二区三区影院| 亚洲国内欧美| 欧美一区二区福利在线| 欧美大片在线观看一区| 亚洲视频精选| 欧美暴力喷水在线| 欧美福利专区| 国产日韩一区二区三区在线| 亚洲日韩欧美视频一区| 久久av资源网| 亚洲裸体视频| 久久一二三国产| 国产精品中文字幕欧美| 国产精品入口福利| 亚洲国产裸拍裸体视频在线观看乱了中文 | 国内免费精品永久在线视频| 最新成人在线| 久久成人人人人精品欧| 亚洲久久一区二区| 久久综合五月天婷婷伊人| 国产精品一区久久久| 一区二区三区www| 亚洲夫妻自拍| 久久永久免费| 国内自拍视频一区二区三区| 亚洲欧美激情视频| 午夜久久福利| 亚洲日本成人女熟在线观看| 久久久久一区| 国产一区二区久久久| 性久久久久久久久久久久| 91久久夜色精品国产九色| 亚洲精品综合在线| 久久久国产精品一区| 欧美激情亚洲另类| 一区二区自拍| 久久九九有精品国产23| 亚洲欧美日韩另类精品一区二区三区| 羞羞答答国产精品www一本| 欧美视频亚洲视频| 中文欧美字幕免费| 亚洲日本va午夜在线电影| 免费亚洲婷婷| 亚洲国产精品一区二区久| 红杏aⅴ成人免费视频| 亚洲激情电影中文字幕| 六十路精品视频| 久久精品国产96久久久香蕉| 国产欧美日韩精品丝袜高跟鞋| 狠狠色丁香久久综合频道| 性视频1819p久久| 欧美国产日韩二区| 久久午夜电影| 亚洲国产精品黑人久久久| 欧美3dxxxxhd| 久久亚洲私人国产精品va媚药| 欧美理论电影网| 亚洲美女视频在线观看| 久久av红桃一区二区小说|