亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? auth.test

?? sqlite庫
?? TEST
?? 第 1 頁 / 共 4 頁
字號:
# 2003 April 4## The author disclaims copyright to this source code.  In place of# a legal notice, here is a blessing:##    May you do good and not evil.#    May you find forgiveness for yourself and forgive others.#    May you share freely, never taking more than you give.##***********************************************************************# This file implements regression tests for SQLite library.  The# focus of this script is testing the ATTACH and DETACH commands# and related functionality.## $Id: auth.test,v 1.34 2006/01/31 14:28:46 drh Exp $#set testdir [file dirname $argv0]source $testdir/tester.tcl# disable this test if the SQLITE_OMIT_AUTHORIZATION macro is# defined during compilation.if {[catch {db auth {}} msg]} {  finish_test  return}rename proc proc_realproc_real proc {name arguments script} {  proc_real $name $arguments $script  if {$name=="auth"} {    db authorizer ::auth  }}do_test auth-1.1.1 {  db close  set ::DB [sqlite3 db test.db]  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_INSERT" && $arg1=="sqlite_master"} {      return SQLITE_DENY    }    return SQLITE_OK  }  db authorizer ::auth  catchsql {CREATE TABLE t1(a,b,c)}} {1 {not authorized}}do_test auth-1.1.2 {  db errorcode} {23}do_test auth-1.1.3 {  db authorizer} {::auth}do_test auth-1.1.4 {  # Ticket #896.  catchsql {    SELECT x;  }} {1 {no such column: x}}do_test auth-1.2 {  execsql {SELECT name FROM sqlite_master}} {}do_test auth-1.3.1 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_CREATE_TABLE"} {      set ::authargs [list $arg1 $arg2 $arg3 $arg4]      return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {CREATE TABLE t1(a,b,c)}} {1 {not authorized}}do_test auth-1.3.2 {  db errorcode} {23}do_test auth-1.3.3 {  set ::authargs} {t1 {} main {}}do_test auth-1.4 {  execsql {SELECT name FROM sqlite_master}} {}ifcapable tempdb {  do_test auth-1.5 {    proc auth {code arg1 arg2 arg3 arg4} {      if {$code=="SQLITE_INSERT" && $arg1=="sqlite_temp_master"} {        return SQLITE_DENY      }      return SQLITE_OK    }    catchsql {CREATE TEMP TABLE t1(a,b,c)}  } {1 {not authorized}}  do_test auth-1.6 {    execsql {SELECT name FROM sqlite_temp_master}  } {}  do_test auth-1.7.1 {    proc auth {code arg1 arg2 arg3 arg4} {      if {$code=="SQLITE_CREATE_TEMP_TABLE"} {        set ::authargs [list $arg1 $arg2 $arg3 $arg4]        return SQLITE_DENY      }      return SQLITE_OK    }    catchsql {CREATE TEMP TABLE t1(a,b,c)}  } {1 {not authorized}}  do_test auth-1.7.2 {     set ::authargs  } {t1 {} temp {}}  do_test auth-1.8 {    execsql {SELECT name FROM sqlite_temp_master}  } {}}do_test auth-1.9 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_INSERT" && $arg1=="sqlite_master"} {      return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {CREATE TABLE t1(a,b,c)}} {0 {}}do_test auth-1.10 {  execsql {SELECT name FROM sqlite_master}} {}do_test auth-1.11 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_CREATE_TABLE"} {      set ::authargs [list $arg1 $arg2 $arg3 $arg4]      return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {CREATE TABLE t1(a,b,c)}} {0 {}}do_test auth-1.12 {  execsql {SELECT name FROM sqlite_master}} {}ifcapable tempdb {  do_test auth-1.13 {    proc auth {code arg1 arg2 arg3 arg4} {      if {$code=="SQLITE_INSERT" && $arg1=="sqlite_temp_master"} {        return SQLITE_IGNORE      }      return SQLITE_OK    }    catchsql {CREATE TEMP TABLE t1(a,b,c)}  } {0 {}}  do_test auth-1.14 {    execsql {SELECT name FROM sqlite_temp_master}  } {}  do_test auth-1.15 {    proc auth {code arg1 arg2 arg3 arg4} {      if {$code=="SQLITE_CREATE_TEMP_TABLE"} {        set ::authargs [list $arg1 $arg2 $arg3 $arg4]        return SQLITE_IGNORE      }      return SQLITE_OK    }    catchsql {CREATE TEMP TABLE t1(a,b,c)}  } {0 {}}  do_test auth-1.16 {    execsql {SELECT name FROM sqlite_temp_master}  } {}    do_test auth-1.17 {    proc auth {code arg1 arg2 arg3 arg4} {      if {$code=="SQLITE_CREATE_TABLE"} {        set ::authargs [list $arg1 $arg2 $arg3 $arg4]        return SQLITE_DENY      }      return SQLITE_OK    }    catchsql {CREATE TEMP TABLE t1(a,b,c)}  } {0 {}}  do_test auth-1.18 {    execsql {SELECT name FROM sqlite_temp_master}  } {t1}}do_test auth-1.19.1 {  set ::authargs {}  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_CREATE_TEMP_TABLE"} {      set ::authargs [list $arg1 $arg2 $arg3 $arg4]      return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {CREATE TABLE t2(a,b,c)}} {0 {}}do_test auth-1.19.2 {  set ::authargs} {}do_test auth-1.20 {  execsql {SELECT name FROM sqlite_master}} {t2}do_test auth-1.21.1 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_DROP_TABLE"} {      set ::authargs [list $arg1 $arg2 $arg3 $arg4]      return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {DROP TABLE t2}} {1 {not authorized}}do_test auth-1.21.2 {  set ::authargs} {t2 {} main {}}do_test auth-1.22 {  execsql {SELECT name FROM sqlite_master}} {t2}do_test auth-1.23.1 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_DROP_TABLE"} {      set ::authargs [list $arg1 $arg2 $arg3 $arg4]      return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {DROP TABLE t2}} {0 {}}do_test auth-1.23.2 {  set ::authargs} {t2 {} main {}}do_test auth-1.24 {  execsql {SELECT name FROM sqlite_master}} {t2}ifcapable tempdb {  do_test auth-1.25 {    proc auth {code arg1 arg2 arg3 arg4} {      if {$code=="SQLITE_DROP_TEMP_TABLE"} {        set ::authargs [list $arg1 $arg2 $arg3 $arg4]        return SQLITE_DENY      }      return SQLITE_OK    }    catchsql {DROP TABLE t1}  } {1 {not authorized}}  do_test auth-1.26 {    execsql {SELECT name FROM sqlite_temp_master}  } {t1}  do_test auth-1.27 {    proc auth {code arg1 arg2 arg3 arg4} {      if {$code=="SQLITE_DROP_TEMP_TABLE"} {        set ::authargs [list $arg1 $arg2 $arg3 $arg4]        return SQLITE_IGNORE      }      return SQLITE_OK    }    catchsql {DROP TABLE t1}  } {0 {}}  do_test auth-1.28 {    execsql {SELECT name FROM sqlite_temp_master}  } {t1}}do_test auth-1.29 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_INSERT" && $arg1=="t2"} {      return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {INSERT INTO t2 VALUES(1,2,3)}} {1 {not authorized}}do_test auth-1.30 {  execsql {SELECT * FROM t2}} {}do_test auth-1.31 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_INSERT" && $arg1=="t2"} {      return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {INSERT INTO t2 VALUES(1,2,3)}} {0 {}}do_test auth-1.32 {  execsql {SELECT * FROM t2}} {}do_test auth-1.33 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_INSERT" && $arg1=="t1"} {      return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {INSERT INTO t2 VALUES(1,2,3)}} {0 {}}do_test auth-1.34 {  execsql {SELECT * FROM t2}} {1 2 3}do_test auth-1.35.1 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_READ" && $arg1=="t2" && $arg2=="b"} {      return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {SELECT * FROM t2}} {1 {access to t2.b is prohibited}}do_test auth-1.35.2 {  execsql {ATTACH DATABASE 'test.db' AS two}  catchsql {SELECT * FROM two.t2}} {1 {access to two.t2.b is prohibited}}execsql {DETACH DATABASE two}do_test auth-1.36 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_READ" && $arg1=="t2" && $arg2=="b"} {      return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {SELECT * FROM t2}} {0 {1 {} 3}}do_test auth-1.37 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_READ" && $arg1=="t2" && $arg2=="b"} {      return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {SELECT * FROM t2 WHERE b=2}} {0 {}}do_test auth-1.38 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_READ" && $arg1=="t2" && $arg2=="a"} {      return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {SELECT * FROM t2 WHERE b=2}} {0 {{} 2 3}}do_test auth-1.39 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_READ" && $arg1=="t2" && $arg2=="b"} {      return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {SELECT * FROM t2 WHERE b IS NULL}} {0 {1 {} 3}}do_test auth-1.40 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_READ" && $arg1=="t2" && $arg2=="b"} {      return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {SELECT a,c FROM t2 WHERE b IS NULL}} {1 {access to t2.b is prohibited}}  do_test auth-1.41 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_UPDATE" && $arg1=="t2" && $arg2=="b"} {      return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {UPDATE t2 SET a=11}} {0 {}}do_test auth-1.42 {  execsql {SELECT * FROM t2}} {11 2 3}do_test auth-1.43 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_UPDATE" && $arg1=="t2" && $arg2=="b"} {      return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {UPDATE t2 SET b=22, c=33}} {1 {not authorized}}do_test auth-1.44 {  execsql {SELECT * FROM t2}} {11 2 3}do_test auth-1.45 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_UPDATE" && $arg1=="t2" && $arg2=="b"} {      return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {UPDATE t2 SET b=22, c=33}} {0 {}}do_test auth-1.46 {  execsql {SELECT * FROM t2}} {11 2 33}do_test auth-1.47 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_DELETE" && $arg1=="t2"} {      return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {DELETE FROM t2 WHERE a=11}} {1 {not authorized}}do_test auth-1.48 {  execsql {SELECT * FROM t2}} {11 2 33}do_test auth-1.49 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_DELETE" && $arg1=="t2"} {      return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {DELETE FROM t2 WHERE a=11}} {0 {}}do_test auth-1.50 {  execsql {SELECT * FROM t2}} {11 2 33}do_test auth-1.51 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_SELECT"} {      return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {SELECT * FROM t2}} {1 {not authorized}}do_test auth-1.52 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_SELECT"} {      return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {SELECT * FROM t2}} {0 {}}do_test auth-1.53 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_SELECT"} {      return SQLITE_OK    }    return SQLITE_OK  }  catchsql {SELECT * FROM t2}} {0 {11 2 33}}# Update for version 3: There used to be a handful of test here that# tested the authorisation callback with the COPY command. The following# test makes the same database modifications as they used to.do_test auth-1.54 {  execsql {INSERT INTO t2 VALUES(7, 8, 9);}} {}do_test auth-1.55 {  execsql {SELECT * FROM t2}} {11 2 33 7 8 9}do_test auth-1.63 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_DELETE" && $arg1=="sqlite_master"} {       return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {DROP TABLE t2}} {1 {not authorized}}do_test auth-1.64 {  execsql {SELECT name FROM sqlite_master}} {t2}do_test auth-1.65 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_DELETE" && $arg1=="t2"} {       return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {DROP TABLE t2}} {1 {not authorized}}do_test auth-1.66 {  execsql {SELECT name FROM sqlite_master}} {t2}ifcapable tempdb {  do_test auth-1.67 {    proc auth {code arg1 arg2 arg3 arg4} {      if {$code=="SQLITE_DELETE" && $arg1=="sqlite_temp_master"} {         return SQLITE_DENY      }      return SQLITE_OK    }    catchsql {DROP TABLE t1}  } {1 {not authorized}}  do_test auth-1.68 {    execsql {SELECT name FROM sqlite_temp_master}  } {t1}  do_test auth-1.69 {    proc auth {code arg1 arg2 arg3 arg4} {      if {$code=="SQLITE_DELETE" && $arg1=="t1"} {         return SQLITE_DENY      }      return SQLITE_OK    }    catchsql {DROP TABLE t1}  } {1 {not authorized}}  do_test auth-1.70 {    execsql {SELECT name FROM sqlite_temp_master}  } {t1}}do_test auth-1.71 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_DELETE" && $arg1=="sqlite_master"} {       return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {DROP TABLE t2}} {0 {}}do_test auth-1.72 {  execsql {SELECT name FROM sqlite_master}} {t2}do_test auth-1.73 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_DELETE" && $arg1=="t2"} {       return SQLITE_IGNORE    }    return SQLITE_OK  }  catchsql {DROP TABLE t2}} {0 {}}do_test auth-1.74 {  execsql {SELECT name FROM sqlite_master}} {t2}ifcapable tempdb {  do_test auth-1.75 {    proc auth {code arg1 arg2 arg3 arg4} {      if {$code=="SQLITE_DELETE" && $arg1=="sqlite_temp_master"} {         return SQLITE_IGNORE      }      return SQLITE_OK    }    catchsql {DROP TABLE t1}  } {0 {}}  do_test auth-1.76 {    execsql {SELECT name FROM sqlite_temp_master}  } {t1}  do_test auth-1.77 {    proc auth {code arg1 arg2 arg3 arg4} {      if {$code=="SQLITE_DELETE" && $arg1=="t1"} {         return SQLITE_IGNORE      }      return SQLITE_OK    }    catchsql {DROP TABLE t1}  } {0 {}}  do_test auth-1.78 {    execsql {SELECT name FROM sqlite_temp_master}  } {t1}}# Test cases auth-1.79 to auth-1.124 test creating and dropping views.# Omit these if the library was compiled with views omitted.ifcapable view {do_test auth-1.79 {  proc auth {code arg1 arg2 arg3 arg4} {    if {$code=="SQLITE_CREATE_VIEW"} {      set ::authargs [list $arg1 $arg2 $arg3 $arg4]       return SQLITE_DENY    }    return SQLITE_OK  }  catchsql {CREATE VIEW v1 AS SELECT a+1,b+1 FROM t2}} {1 {not authorized}}do_test auth-1.80 {  set ::authargs

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日产国产精品| 国产欧美久久久精品影院| 国产精品456露脸| 亚洲一区二区三区四区在线观看 | www久久精品| 在线观看日韩高清av| 国产91综合一区在线观看| 亚洲va天堂va国产va久| 国产精品日韩成人| 久久综合色播五月| 7777精品伊人久久久大香线蕉完整版 | 久久精品一区二区三区不卡| 欧美午夜电影网| 99久久精品免费看国产免费软件| 久久精品国产99久久6| 亚洲成人动漫av| 亚洲男人的天堂网| 国产色产综合产在线视频| 日韩精品一区二区三区视频| 欧美日韩精品专区| 色婷婷狠狠综合| 色综合天天综合狠狠| 国产成人免费9x9x人网站视频| 青青草97国产精品免费观看| 亚洲综合视频网| 亚洲精品欧美激情| 亚洲三级理论片| 亚洲欧洲精品一区二区三区| 国产欧美精品一区二区色综合朱莉 | 精品一区中文字幕| 美女爽到高潮91| 久久精品国产网站| 精品制服美女久久| 极品美女销魂一区二区三区免费| 久久99久久久欧美国产| 蜜桃av一区二区| 国产一区二区三区免费| 国产精品中文字幕日韩精品| 国产中文字幕精品| 国产乱人伦精品一区二区在线观看| 精品亚洲免费视频| 国产在线播放一区二区三区| 国内精品写真在线观看| 国产在线国偷精品免费看| 国产成人丝袜美腿| www.日韩大片| 日本高清不卡视频| 欧美日韩免费观看一区三区| 欧美精品乱人伦久久久久久| 欧美日韩激情一区二区| 欧美一区二区三区四区五区 | 在线不卡一区二区| 欧美一个色资源| 久久久99精品久久| 国产精品拍天天在线| 亚洲色图欧洲色图| 午夜视频在线观看一区二区三区| 免费在线视频一区| 国产精品一区二区在线观看网站| 成人免费看的视频| 欧美亚洲国产bt| 日韩一区国产二区欧美三区| 久久美女高清视频| 亚洲色图欧美偷拍| 日本不卡1234视频| 99这里只有精品| 3d动漫精品啪啪| 欧美国产97人人爽人人喊| 亚洲一区二区三区四区在线| 老司机精品视频在线| 成人激情视频网站| 欧美精品一二三| 久久九九国产精品| 亚洲成av人片一区二区三区| 久久99精品久久久久久国产越南| 大桥未久av一区二区三区中文| 欧美在线看片a免费观看| 欧美电视剧在线看免费| 国产精品毛片久久久久久久| 首页亚洲欧美制服丝腿| 国产成人午夜精品影院观看视频| 欧美在线影院一区二区| 精品国产人成亚洲区| 亚洲欧美色一区| 精品一区中文字幕| 在线免费观看日本一区| 精品少妇一区二区三区日产乱码| 国产精品久久久久aaaa| 久久国产精品区| 在线免费亚洲电影| 国产欧美日韩另类视频免费观看| 婷婷综合另类小说色区| 春色校园综合激情亚洲| 欧美一区二区三区在线观看 | 成人一区二区三区中文字幕| 4438x亚洲最大成人网| 中文字幕亚洲欧美在线不卡| 免费高清在线一区| 欧美午夜精品久久久| 国产日韩欧美电影| 全国精品久久少妇| 在线亚洲精品福利网址导航| 中文无字幕一区二区三区| 日本欧美一区二区在线观看| 色嗨嗨av一区二区三区| 欧美韩国一区二区| 国产在线不卡一区| 日韩一区二区免费在线电影 | 国产凹凸在线观看一区二区| 91精品国产一区二区三区香蕉 | 国产伦精品一区二区三区免费 | 久久久久久久久久久久电影| 日韩精品亚洲一区| 欧美亚一区二区| 亚洲精品中文在线| av不卡免费电影| 国产精品久久看| 国产一区二区福利| 久久一二三国产| 精品一区二区在线看| 在线观看91av| 亚洲第一狼人社区| 欧美日韩国产123区| 亚洲国产综合色| 欧美中文一区二区三区| 亚洲精品成人少妇| 欧美综合在线视频| 亚洲国产一区二区a毛片| 日本大香伊一区二区三区| 亚洲人成网站在线| 91久久线看在观草草青青| 亚洲精品菠萝久久久久久久| 91麻豆高清视频| 亚洲黄色av一区| 欧美色视频在线观看| 亚洲18女电影在线观看| 欧美日韩精品一区二区三区蜜桃| 亚洲国产一区二区三区| 欧美区一区二区三区| 日韩黄色在线观看| 日韩精品影音先锋| 国产原创一区二区| 国产精品久久久久影院色老大| 成人免费电影视频| 亚洲男人的天堂网| 色婷婷综合激情| 亚洲成人av中文| 日韩欧美一二区| 国产高清亚洲一区| 亚洲日本一区二区| 欧美系列亚洲系列| 免费高清不卡av| 欧美韩国日本一区| 色婷婷亚洲综合| 天天色天天爱天天射综合| 欧美mv日韩mv国产| 成人h动漫精品一区二| 亚洲老司机在线| 精品日韩一区二区| 国模大尺度一区二区三区| 欧美激情一区二区三区在线| 91香蕉视频在线| 日韩综合一区二区| 久久精品日韩一区二区三区| 99久久精品国产一区二区三区| 亚洲小说春色综合另类电影| 91精品国产一区二区三区蜜臀 | 91尤物视频在线观看| 亚洲一区二区三区激情| 精品欧美久久久| 99视频国产精品| 日本午夜精品一区二区三区电影| 久久影音资源网| 色8久久人人97超碰香蕉987| 日日夜夜一区二区| 中文字幕在线观看一区| 欧美日韩一区精品| 国产成人av资源| 亚洲国产三级在线| 国产亚洲综合在线| 91麻豆精品国产91久久久使用方法| 国产成人免费9x9x人网站视频| 亚洲成国产人片在线观看| 国产日韩精品视频一区| 欧美日韩久久久久久| 成人午夜又粗又硬又大| 日韩高清一级片| 自拍偷拍亚洲欧美日韩| 精品久久国产字幕高潮| 欧美在线综合视频| 成人av电影在线观看| 美女国产一区二区三区| 亚洲人成精品久久久久久| 久久久青草青青国产亚洲免观| 欧美日韩中文一区| 99视频精品免费视频| 国产麻豆精品视频| 奇米色777欧美一区二区| 亚洲精品国产第一综合99久久| 久久夜色精品国产噜噜av|