The main problem with fixtures, for me, has always been how unfun they are. They literally suck the fun out of anything they’re around. You throw them in your test/ directory, then suddenly testing is, like, work. But it’s not work, dammit. This is Ruby, dammit.
So, keep them fun. Write your fixtures in Ruby.
Step 1: FixtureScenarios
Tom Preston-Werner has this FixtureScenarios plugin. The project home page explains:
This plugin allows you to create ‘scenarios’ which are collections of fixtures and ruby files that represent a context against which you can run tests.
Pretty cool. Instead of just test/fixtures, you can have (for instance), test/fixtures/users and test/fixtures/beta. Then, in your test class, you call scenario :users in place of the normal fixtures :users, :posts, :images call. This will pull all the YAML files from test/fixtures/users into your test database. When you need a completely separate set of fixtures for another feature, it’s as easy as scenario :beta.
Scenarios can also be nested. You can create a test/fixtures/users/banned directory filled with YAMLy files and call it with scenario :banned. This’ll pull in both the test/fixtures/users fixtures and all the test/fixtures/users/banned fixtures. It will also, by default, pull in all the test/fixtures fixtures.
The real beauty of this is when you load up your code six months down the road, recently returned from your jaunt up Everest, and need to add a feature. Fast! Just add a new scenario—forget about worrying on your old tests, they won’t be affected.
This plugin is also great when BDDin’ with test/spec or RSpec. You can have separate contexts in one spec file, all using different fixture scenarios as needed. Maybe you want to assert hardcore pagination behavior—you can load up 10,000 records! But only for that one scenario, leaving your other scenarios sane.
Grabbit:
$ script/plugin install \ http://fixture-scenarios.googlecode.com/svn/trunk/fixture_scenarios
Step 2: FixtureScenarioBuilder
Okay, like I said, we need to write our fixtures in Ruby.
By default, FixtureScenarios will load any Ruby files it finds in your fixture directories. Cool, but not really sufficient. We need transactional fixtures, we need the database cleared out after test runs, we need a clean database when tests start. We really need all the cool features YAML fixtures offer.
And we can get them, with FixtureScenarioBuilder. This is an add-on to Tom’s FixtureScenarios plugin. AKA you need FixtureScenarios for it to work.
Grabbit:
$ script/plugin install \ svn://errtheblog.com/svn/plugins/fixture_scenarios_builder
Step 3: scenarios.rb
After you’ve installed the plugin, create a scenarios.rb file and place it in your test/fixtures directory. It is in this file you build your fixture scenarios. In Ruby.
Like this:
scenario :blog do %w( Tom Chris Kevin ).each_with_index do |user, index| User.create! :name => user, :banned => index.odd? end end
As soon as I run a test, test/fixtures/blog will get created with a users.yml file inside it. It’ll look like this:
chris: name: Chris id: "2" banned: "1" updated_at: 2007-05-09 09:08:04 created_at: 2007-05-09 09:08:04 kevin: name: Kevin id: "3" banned: "0" updated_at: 2007-05-09 09:08:04 created_at: 2007-05-09 09:08:04 tom: name: Tom id: "1" banned: "0" updated_at: 2007-05-09 09:08:04 created_at: 2007-05-09 09:08:04
Notice we’ve got intelligent fixture names. FixtureScenarioBuilder did its best to guess these by trying name, username, then title. If it can’t figure out a name, it falls back to stories_001 or whatever.
As for quick, iterative, agile development: whenever you modify scenarios.rb, your YAML fixtures will get re-built. Any errors in your scenarios.rb file will be clearly surfaced when building.
FixtureScenarioBuilder also supports nesting fixtures:
scenario :blog do %w( Tom Chris ).each do |user| User.create! :name => user end end scenario :banned_users => :blog do User.create! :name => 'Kevin', :banned => true end
As you may guess, this creates test/fixtures/blog and test/fixtures/blog/banned_users. Rake-like and tasty.
Ruby fixtures are super because you can easily throw around associations, forget about those updated_at & created_at fields, easily refactor fixtures after making sweeping schema changes, and don’t need to worry about join tables.
I’ve been doing fixtures this way for a few months now and really dig. FixtureScenarios and FixtureScenarioBuilder are like a one-two knock out punch of… uh… test data.
Step 4: Real Life And All
For a more complex example, check out this scenarios.rb file. It uses nesting, multiple scenarios, and all sorts of Ruby goodness (for a code review site, ya heard).
You can get a lot of this stuff by ERBing your YAML files, but really, that sucks. I like having my habtm join tables generated for me, I am comfortable defining associations and whatnot in Ruby. It’s how I think.
These days, many people are hacking their database or mocking to get around the fixture pain. Other fixture solutions are the fixture references plugin, this patch, and QuickFix. I’m sure there are countless others. Got a good solution? Leave a comment, plz.
Step 5: Get Out of Here
For further explanation, check out the README. Browse the code. Find a bug. Etc.
This lil’ plugin is fairly new, so any bugs and all suggestions are appreciated.
Thanks, and goodnight.
Gonna have to check this out sooner rather than later. Your opening paragraph sums up exactly how I feel about fixtures. With a flat fixturespace every fixture results in hand-wringing while I try to think up bulletproof names and minimize the number of fixtures used. Then later when I’m adding new tests I have to wade through all the old fixtures to find what I need.
Ultimately I think mocking is the way to go for large apps with comprehensive test suites, but this is a very happy middle ground that makes standard Rails fixtures much much more useful.
We used to use fixture scenarios last fall(Tom gave me a peak at RubyConf) and we actually moved away from it after a while. I think we were most likely misusing them in unit tests. Our test scenarios devolved into things like “Billing Run Scenario” where coworkeres would add data to the scenario rather than address underlying code issues. This is obviously wrong, but shit happens. This also led to people under testing their models since they felt they had good coverage. “Well if I didn’t break the build with my modifications, I’m ok right?” So I guess if you’re going to use scenarios, use them responsibly and sparingly. My personal belief is that if you’re really testing first, scenarios are considerably less appealing than they first seem. No disrespect to Tom though, it does what it was intended to very well. :)
I definitely dig the ruby generation of fixtures you demo above. Just make those datetime’s output in .to_s :db so the oracle folk can use them too. ;)
Nice article as always.
Sweet. The idea is great, I’ll have to check it out :) Oh, and by the way, the title doesn’t compile…
The fundamental problem with fixtures, in my mind, isn’t so much how much they suck to maintain or even the fact they it prevents “true” unit testing. The problem is that they are just too damn slow, and anyone project that gets to be of a decent size will suffer as the amount of fixtures grow.
I’m sure scenarios can help that by loading just what you need for the context, but for now I lean towards more and more Mocha from the start to keep tests running fast.
Chris, you rock as usual! Fixtures are dead, long live fixtures!!!
The tools look nice and I think I’ll give them a try, although I never felt tired and stuff with fixtures.
To me, if the fixtures are so complicated that you have to resort to some tools to build them, you probably overdoing them. Maybe you should for some ways of refactoring your code to make the fixtures simpler? This is just my gut feeling, I don’t have anything specific on my mind :)
I also fail to see how this scenario thing is much better than creating the necessary objects in your setup() or before() method?
@szeryf Mostly I think he’s talking about annoying things like habtm/hmt relationships which really are just nose grinding and aren’t fun. They’re fine if you’re only testing one habtm relationship, but that’s not how my sites run so I’m uncomfortable doing that. I want a scenario with 100k entries (and one that I can use to quick test when I’m developing).
Preach it, Chuck!
Here is a solution I like: Fixin’ Fixtures with Factory
I’ve used an alternative solution to Dan Manges’ Factory approach for a few weeks now: http://pastie.caboo.se/84188
Usage is exemplified at: http://pastie.caboo.se/84190
I don’t like the use of
eval. I’ll look into making Object.send work.I’m attempting to incorporate all this fixture fixin’ goodness into my project. I would report my issues in plugin bugs but the fixturescenariobuilder isn’t listed there yet. I have two issues. 1. I have a custom validation for a model. This custom validation instantiates a related temporary object, captures its validation errors, and then appends them to the original objects validation errors. Even though the temporary instantion is in a rescue block, fixturescenariobuilder barfs. I work around this by temporarily disabling the validation which brings me to my second problem. 2. The custom validation is also in the super class of the class I’m trying to instantiate in 1. Single table inheritance here. I do not create a table for the derived class and this causes the fixturescenariobuilder to barf. Thoughts? Need more info?
The second issue has been resolved by educating myself on testing Single Table Inheritance (STI), (http://blog.headlondon.com/archives/testing-single-table-inheritance-models-in-ruby-on-rails/) and (http://wiki.rubyonrails.org/rails/pages/SingleTableInheritance).
I’m just curious how to use with the latest rspec. I tried something alow the line:
describe SomeClass do scenario :valid_state ...
This seems to be calling the wrong scenario method. And throws a exception like this:
/lib/scenario_builder.rb:8:in `scenario’: undefined method `scenario’
Anyone has any idea how to fix this?
The plugin is pretty useful… but there is something that does not convince me, and is that the only way it sets a fixture name is via the FixtureScenarioBuilder , I always use fixtures names like…
============== [in client_markets.yaml]
nestle_cada: id: 2 number: 23304 client_id: 1 # Nestle market_id: 2 # Cada
[in bill_client_markets.yaml]
bcm_first_quarter_january_2013_nestle_cada: id: 10 number: 10 amount: 114.31 bill_client_id: 8 # first_quarter_january_2013 of Nestle client_market_id: 2 # Nestle providing Cada a Service
This way a keep a story of the different parts I want to test, something like “hey the case where nestle_cada is in january 2013 is faling, can you check that?”
Is there any way to set the fixture name before a Mode.create!() ?
How do you deal with models with callbacks or observers then? I don’t want things getting mailed out or anything like that.
Do you all not realize that folder-based fixtures already exist?
./test/fixtures/load_test/people.yml
fixtures “load_test/people”, :companies, :companies_people
No? I have used this extensively.
I don’t want things getting mailed out or anything like that.
Hi. Just wondering, how do you use it (builder) with fixtures under SVN? The fact that the builder removes the directory (with the fixtures) when rebuilding an updated scenario which is under SVN already causes problems for me. Thanks.
Hi. Just realized that I’m an idiot – those directories should be added to the SVN ignore list cause they’re generated and that’s why should not be under version control, sorry :)
This is really neat, but I’m having some trouble. In the scenarios.rb file, say we have a :users scenario, and then a :posts scenario, which has :users as a parent. And we’d like to create some posts in the :posts scenario that reference users that were created in the :users scenario. As far as I can tell, we can’t do that, because the database is cleared out after the execution of each scenario.
Ideally, I think, the data created by parent scenarios would be available in the child scenarios. And, to stay consistent with the FixtureScenarios plugin, the fixtures in the root directory would be available to all scenarios.
Michael
Hi, thanks for the interesting article. This might become very useful in our dev team since soon we will be dealing with a huge variety of potential scenarios, which all need to be covered, and the scenario plugin makes it possible to group them in a way that makes them more readable and understandable.
But: I’ve encountered some difficulties with the Builder. Since we are using foreign keys in our DB, the “delete_tables” method call when preparing to build the fixtures on line 53 in scenario_builder.rb makes the whole thing blackout with a foreign key constraint MySQL failure message. Maybe there is another way to wipe the contents of the test DB tables without doing it “table by table”? I thought of maybe trying rake db:test:clone_structure for this, since you get a vanilla DB with that one, too, but it might slow down things more than anything.
Greetings, Christoph
Is RSpec intented to work? I’ve got the following error
vendor/plugins/fixture_scenarios_builder/lib/scenario_builder.rb:8:in `scenario’: undefined method `scenario’ for # (NoMethodError)
Greetings Sebastian
Thanks for this great plugin. A few points:
Peter – I think scenarios are easier because you just specify the folder and it loads all the fixtures rather than explicitly specifying them.
Eugene – Yes you are right but it brings up an interesting annoyance in that you have to remember to always svn:ignore new scenario folders.
I have a couple of requests. I think the plugins should be merged. If you didn’t want the ruby generation then it doesn’t need to be used but I think they are useful as a single package. This would allow my second request (I suspect): Have a separate scenarios/ folder under test/. This would allow it to be svn:ignored and then you wouldn’t have to ignore every new folder.
Thanks again for another great ‘err’!
One other thing. If you have a yml for a model in test/fixtures/ and you create a scenario that includes the same model the yml created by the scenario won’t be seen by the tests. I think this is because it gets overwritten by the yml loader as it deletes the table data before each test, right?
Me Again! One issue I just had was that a country_id attribute was not getting set in the fixtures by the generator. I eventually traced it back to the initializer. It was setting the country something like Country.find(‘GB’). In fact I’m not even sure why. Probably histerical reasons! Anyway. I guess the countries fixture wasn’t loaded yet as I got nothing in the generated YML. Altering this to a hardcoded ID (Yea I know) fixed the problem. Now time to find why on earth it’s doing that in the first place.
Eivind Uggedal (and other fans of the factory): You might want to look at FixtureReplacement plugin, found on rubyforge:
http://replacefixtures.rubyforge.org/
I couldn’t get that to work with RSpec and the Rails 2.0 preview, but I did throw this into my spec_helper file so I could get just a little of the functionality:
None of the ruby goodness or the nesting, but a quick fix until all of those plugins mature a bit.
Scratch that – the example above only works for fixtures named the same as the parent directory.
Are people still using this. It seems Toms plugin is not being maintained either. Rails 2 fixes some of the issues but doesn’t address the scenario idea properly unless I’ve misread. Are there now better alternatives?
Eivind Uggedal (and other fans of the factory): You might want to look at FixtureReplacement plugin, found on rubyforge: http://www.come-in-china.com
The best article, thanks to the author. good jokes, funny jokes
Cruise Critics Lower Back Tattoos Victorias Secret Victorias Secret Womens Clothing Victorias Secret Bra Victorias Secret Swim Wear Victorias Secret Thong Victorias Secret Credit Card Victorias Secret Angel Credit Card
Victorias Secret Online Catalog Victorias Secret Coupon Code Victorias Secret Coupon Victorias Secret Pink Victorias Secret Lingerie Victorias Secret Angels Victorias secret promotion code Victorias Secret Commercial Victorias Secret Store Location and Outlets Victorias Secret Products Victorias Secret History Victorias Secret Sale Victorias Secret Models Victorias Secret Fashion Show
Audrina Patridge Fashion Layered Hairstyles Layered Hair Styles Layered Hairstyle Calvin Klein Calvin Klein Fragrance Calvin Klein Underwear Calvin Klein Cologne Calvin Klein Bra Calvin Klein Boxer Calvin Klein Bikini
Calvin Klein 365 Calvin Klein Perfume Calvin Klein Jeans Calvin Klein Briefs Calvin Klein Dresses Calvin Klein Men Calvin Klein Lingerie Calvin Klein Clothing Calvin Klein Models Lower Back Tattoos Victorias Secret
Tattoos Celtic Tattoos Lower Back Tattoos Dragon Tattoos Skull Tattoos Heart Tattoos Butterfly Tattoos Chinese Tattoos Layered Hair Styles Layered Hairstyles Emo Hairstyles Medium Hairstyles Bang Hairstyle Prom Hairstyle Hair Coloring Heart Lower Back Tattoos
sikiş porno sex video izle iyi porno uzun porno yeni pornolar porno seyret sex seyret porno filmler sex izleyin sex izle porno sex erotik porn video türk porno canlı porno porno izle porno porno film sex filmleri porn video porno film sex seyret porno video seyret orgazm porno seks izle erotik video sex videolar yetişkin video sex video izle porno video izle bedava porno 18 video seks porno sıcak izle yetişkin film sikiş seyret sex amatör videolar teen video erotik videolar yetişkin video yetişkin videolar pornolar porno video teen kızlık bozma sikiş sikiş video seks türban sex sex erotik seks izle sıcak ateşli
modern abstract art sofa manufacturer гранит 净水器 混合机 过滤机 DHL快递 保险箱 法兰 法兰标准 牛皮癣 皮肤病 北京快递公司 北京国际快递 传世私服 传奇世界私服 天龙八部私服 天龙私服 网络电话 免费网络电话 假发 补发 织发 植发 上海搬家公司 上海搬场公司 大众搬家 大众搬场 张家界旅游 香港旅游 深圳旅行社 打包机 收缩机 萎缩性胃炎 neoprene laptop bags SEO优化 SEO优化 计量泵 胃炎 胃病 冷水机 冰水机 工业冷水机 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 油罐车 北京办证 办证 北京特价机票 北京打折计票 北京国际机票 北京机票预定 北京飞机票 北京订机票 北京机票查询 血糖仪 血糖仪 银杏 水培花卉 企业宣传片 空分设备 机电设备安装 代孕 代孕网 代孕 代孕 代孕 试管婴儿 代孕 电话交换机 程控交换机 集团电话 集装袋 混合机混合机 混合机捏合机 捏合机 捏合机导热油炉 导热油炉 导热油炉 反应釜 反应釜 反应釜 回流焊 波峰焊 spherical roller bearing 搬运车 搬运车 电动搬运车 油桶搬运车 堆高车 电动堆高车 半电动堆高车 堆垛车 高空作业平台车 电动叉车 平衡重叉车 前移叉车 电瓶叉车 苗木价格 苗木信息 标牌制作 深圳标牌 儿童摄影 北京儿童摄影 防静电鞋 淘宝刷信誉 威海凤凰湖 威海海景房 大庆密封件 打标机 淘宝刷信誉 TESOL/TEFL国际英语教师证书 英语教师进修及培训 韩国饰品批发 代写论文 代写论文 代写论文 代写代发 论文代写 电源模块 模块电源 X架 超薄灯箱> 易拉宝 展柜制作 代理服务器 游戏加速器 网络加速器 网通加速器 电信加速器 电信网通转换器 电信网通加速器 网通电信互转 网通电信互通 网络游戏加速器 美国VPN代理 美国独享VPN 美国独享IP pvc ceiling panel Spherical roller bearings 天龙八部私服 SEO优化 安全鞋 劳保鞋 防砸鞋 电绝缘鞋 上海安全鞋 上海劳保鞋 江苏劳保鞋 服装软件 服装管理软件 进销存软件 进销存管理软件 服装管理系统 服装进销存软件 进销存系统 进销存管理系统 免费进销存软件 吉林中医 东北特产 打包机 dhl 阳痿 阴茎短小 阴茎增大 早泄 前列腺炎 阴茎增粗 阴茎延长 国际机票 上海国际机票 国际打折机票 国际特价机票 CRM 客户管理软件 客户关系管理 免费客户管理软件 客户管理软件下载 客户信息管理系统 销售管理系统 销售管理 CRM系统 CRM软件 客户关系管理系统 客户关系管理软件 客户管理 客户管理系统 营销管理系统 客户资源管理 销售管理软件 客户资料管理软件 客户资源管理软件 客户信息管理软件 客户资料管理 客户资源管理 客户信息管理 客户资料管理系统 客户资源管理系统 客户管理软件免费版 砂磨机 砂磨机 砂磨机 卧式砂磨机 卧式砂磨机 卧式砂磨机 三辊研磨机 三辊研磨机 三辊研磨机 混合机 混合机 混合机 锥形混合机 锥形混合机 锥形混合机 行星动力混合机 行星动力混合机 行星动力混合机 无重力混合机 无重力混合机 无重力混合机 干粉砂浆设备 干粉砂浆设备 干粉砂浆设备 捏合机 捏合机 捏合机 导热油炉 导热油炉 导热油炉 反应釜 反应釜 反应釜 搪玻璃反应釜 搪玻璃反应釜 搪玻璃反应釜 乳化机 涂料设备 干混砂浆设备 无重力混合机 胶体磨 涂料成套设备 双螺旋混合机 北京婚庆 北京婚庆公司 400电话 办证 呼吸机 制氧机 亚都 亚都加湿器 亚都净化器 亚都装修卫士 饰品批发 小饰品批发 韩国饰品 韩国饰品批发 premature ejaculation penis enlargement 破碎机 制砂机 球磨机 雷蒙磨 雷蒙磨粉机 鄂式破碎机 鄂式破碎机 免烧砖机 加气混凝土设备 反击式破碎机 选矿设备 安利产品 马来西亚留学 网站优化 网站推广 衬布 代写论文 代写论文 代写论文 论文代写 代写论文 代写硕士论文 代写毕业论文 磁力泵 离心泵 化工泵 隔膜泵 螺杆泵 潜水泵 油泵 耐腐蚀泵 泵 水泵 拖链 防护罩 排屑机 塑料拖链 钢铝拖链 水泵 磁力泵 隔膜泵 离心泵 液下泵 自吸泵 多级泵 排污泵 螺杆泵 油泵 化工泵 电动隔膜泵 气动隔膜泵 自吸式磁力泵 氟塑料磁力泵 管道离心泵 导热油泵 深井泵 潜水泵 污水泵 潜水排污泵 深圳装饰 深圳装饰公司 深圳装修公司 特价机票 打折机票 国际机票 机票 新风换气机 换气机 立式新风换气机 风机箱 新风系统 能量回收机 搅拌机 混合机 乳化机 分散机 毛刷 毛刷辊 工业毛刷 刷子 钢丝刷 涂层测厚仪 硬度计 兆欧表 激光测距仪 测振仪 转速表 温湿度计 风速仪 超声波测厚仪 粗糙度仪 噪音计 红外测温仪 万用表 硬度计 万用表 美容院 美容加盟 澳洲留学 澳大利亚留学 什么是法兰 电烤箱 酒店预定 北京酒店预定 北京酒店 离心机 nail equipment nail products nail product nail uv lamp nail uv lamp nail uv lamps uv nail lamp nail brush nail file nail tool nail tip nail gel curing uv lamps lights 万用表 风速仪 红外测温仪 噪音计
情趣用品,情趣用品,情趣用品,情趣用品,情趣用品,情趣,情趣,情趣,情趣,情人歡愉用品,情惑用品性哥,情人用品性哥,情趣用品,AIO交友愛情館,情人歡愉用品,美女視訊,情色交友,情人用品性哥,視訊交友,辣妹視訊,美女交友,性愛,嘟嘟成人網,按摩棒,震動按摩棒,微調按摩棒,情趣按摩棒,逼真按摩棒,G點,跳蛋,跳蛋,跳蛋,性感內衣,飛機杯,充氣娃娃,情趣娃娃,角色扮演,性感睡衣,後庭區,SM,潤滑液,情趣禮物,威而柔,香水,精油,芳香精油,自慰,自慰套,性感吊帶襪,情趣用品加盟,情人節禮物,情人節,吊帶襪,辣妹視訊,美女交友,情色交友,成人交友,視訊聊天室,美女視訊,視訊美女,情色視訊,免費視訊聊天,視訊交友,視訊聊天,AIO交友愛情館,嘟嘟成人網,成人貼圖,成人網站,AIO交友愛情館,情色,情色貼圖,情色文學,情色交友,色情聊天室,色情小說,七夕情人節,色情,A片,A片下載,免費A片,免費A片下載,情色視訊,情色電影,色情網站,辣妹視訊,視訊聊天室,情色視訊,免費視訊聊天,視訊聊天,美女視訊,視訊美女,美女交友,美女,情色交友,成人交友,自拍,本土自拍,情人視訊網,視訊交友90739,生日禮物,情色論壇,正妹牆,正妹,成人網站,A片,免費A片,A片下載,免費A片下載,AV女優,成人影片,色情A片,成人論壇,情趣,免費成人影片,成人電影,成人影城,愛情公寓,色情影片,保險套
Thanks so much for this! This is exactly what I was looking for
mirc mırc mırç mirç mirc indir mirc yükle mirc yukle türkçe mirc mirc indir mirc islami sohbet kelebek kelebek script kelebek sohbet kelebek mirc chat çet cet çet odaları sohbet kanalları sohbet odaları kameralı sohbet kameralı chat sohbet eğlence mirc sohbet odaları sevgili arkadaş arkadaş bul arkaraş ara oto araba şarkı sözleri astroloji ikinci el telefon gazete gazeteler günlük gazeteler marifetname bedava domain ücretsiz domain benimurl parça kontör parça kontör radyo dinle bedava blog ücretsiz blog
Victorias Secret Victoria’s Secret Fashion show Victorias Secret Pink Victorias Secret Model Victorias Secret Credit Card Victorias Secret Coupon Code Victorias Secret Lingerie Victorias Secret Fashion Show 2005 Victorias Secret Fashion Show 2006 Victorias Secret Bra Victorias Secret Catalog Victorias Secret Pantie Victorias Secret Online Coupon Victorias Secret Fashion Show 2007 Victorias Secret Girl Free Shipping Victorias Secret Victorias Secret Home Victorias Secret Christmas Victoria’S Secret Pink Dog Victorias Secret Music Victorias Secret Semi Annual Sale Victorias Secret Jobs Victorias Secret Free Shipping Code Victorias Secret Shoes Victorias Secret Thong Victorias Secret Commercial Victorias Secret Promotional Code Victorias Secret Love Spell Victorias Secret Boots Victorias Secret Employment Victorias Secret Reviews Victorias Secret Jeans Victorias Secret Brasil Victorias Secret Bag
情人用品,情人用品性哥,情 人用品,情趣用品,視訊交友,視訊美女,視訊美女,視訊交友網,視訊聊天室,視訊聊天室,視訊 交友網,免費視訊聊天,辣妹視訊,辣妹視訊,情人視訊網
徵信社,案件討論,男女專區,法律諮詢,相關新聞,情趣用品,情趣用品,情趣精品,情趣用品,情趣用品,情趣用品,情趣用品,威而柔,自慰套,自慰套,SM,充氣娃娃,充氣娃娃,潤滑液,飛機杯,按摩棒,跳蛋,性感睡衣
威而柔,自慰套,自慰套,SM,充氣娃娃,充氣娃娃,潤滑液,飛機杯,按摩棒,跳蛋,性感睡衣,視訊交友90739,情人視訊網,情色交友,視訊交友,辣妹視訊,美女視訊,aio交友愛情館,情色論壇,成人論壇,免費視訊聊天,辣妹視訊,視訊交友網,美女視訊,視訊交友,成人視訊,情趣用品,成人聊天室,情趣,情趣,視訊聊天室,視訊聊天,視訊聊天室,情色視訊,情人視訊網,免費視訊聊天室,aio交友愛情館,色情遊戲,寄情築園小遊戲,情色文學,一葉情貼圖片區
Chime in.