如何使用 RSpec 测试 ThinkingSphinx
我在模型中有一个类方法,它调用 Thinking_sphinx 的 search() 方法。我需要检查这个类方法。
我想在我的 rspec 测试用例中启动、索引或停止 sphinx。我正在尝试这段代码。
before(:all) do
ThinkingSphinx::Test.start
end
after(:all) do
ThinkingSphinx::Test.stop
end
在我触发搜索查询之前但在触发搜索查询之后,每个测试用例中的这段代码
ThinkingSphinx::Test.index
都会给我空结果,尽管测试数据库中存在精确匹配。
如果您将 rspec 与thinking_sphinx 一起使用,请通过代码示例指导我
I have a class method in a model that calls thinking_sphinx's search() method. I need to check this class method.
I want to start, index or stop sphinx in my rspec test cases. I am trying with this piece of code.
before(:all) do
ThinkingSphinx::Test.start
end
after(:all) do
ThinkingSphinx::Test.stop
end
and with this code in each test case before I fire the search query
ThinkingSphinx::Test.index
but still after I fire the search query, it gives me empty results though exact matches are there in the test db.
Please guide me with code examples if you are using rspec with thinking_sphinx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 David 的帖子,我们最终得到以下解决方案:
它将指定的表切换到 :truncation 策略,然后将它们切换回 :trasaction 策略。
Following David post, we end up with following solution:
It switch specified tables to :truncation strategy, and after that switch them back to :trasaction strategy.
这是由于交易固定装置。
虽然 ActiveRecord 可以在单个事务中运行其所有操作,但 Sphinx 无权访问该操作,因此索引不会包含事务的更改。
您必须禁用您的交易装置。
在您的 rspec_helper.rb 中
全局禁用。
请参阅使用 RSpec 2 关闭某一规范的事务装置
This is due to transactional fixtures.
While ActiveRecord can run all its operations within a single transaction, Sphinx doesn’t have access to that, and so indexing will not include your transaction’s changes.
You have to disable your transactional fixtures.
In your rspec_helper.rb put
to disable globally.
See Turn off transactional fixtures for one spec with RSpec 2