3

我已经阅读了很多关于如何模拟 RavenDb 的问题。有一个常见的答案:“不要”

这让我陷入了一个奇怪的境地。我模拟接口最强烈的原因之一是测试我的代码对错误的反应。

如果您无法模拟可能导致错误的对象,则注入错误可能非常复杂。

我在这里想错了吗????

//lg

4

2 回答 2

8

为什么要模拟以模拟错误?创建一个内存数据库(使用EmbaddedDocumentStore),只做错误,不需要模拟它。

于 2012-04-17T06:16:12.090 回答
1

我不知道你是否知道,但RavenDB有很好的单元测试助手。

您唯一需要做的就是实现 RavenTestBase,如下所示:

[TestFixture]
public class RavenDummyTests : RavenTestBase
{
    private IDocumentStore _documentStore;


    [SetUp]
    public void Setup()
    {
        _documentStore = NewDocumentStore();
    }

    [TestFixtureTearDown]
    public void TestFixtureTearDown()
    {
        _documentStore.Dispose();
    }

    [Test]
    public void Search_And_Where_Result_In_An_And()
    {
        using (var db = _documentStore.OpenSession())
        {
            db.Store(_oscar);
            db.Store(_max);
            db.Store(_tiger);
            db.SaveChanges();
        }

        WaitForIndexing(_documentStore); // <== very helpful

        using (var db = _documentStore.OpenSession())
        {
            var query = db.Query<Cat>().Search(cat => cat.Color, "gray").Where(cat => cat.Name == "max");
            var list = query.ToList();

            Assert.IsEmpty(list);
            Assert.AreEqual("Color:(gray) AND (Name:max)", query.ToString());
        }
    }}
于 2015-04-17T15:59:57.020 回答