5

NHibernate 2.1.2.4000でIInterceptorを試してみると、次のテストコードがあります。

public class TestingNHibernateInterceptors
{
    [Fact]
    public void can_intercept_delete_for_audit_log()
    {
        FullyConfigureDb();
        Session(s => s.Linq<Person>().Any().ShouldBe(false));
    }
    ISessionFactory _sessions;
    void Session(Action<ISession> @do)
    {
        using (var s = _sessions.OpenSession())
        {
            @do(s);
            s.Flush();
        }
    }
    void FullyConfigureDb()
    {
        var cfg = CreateConfig();
        _sessions = cfg.BuildSessionFactory();
        BuildSchema(cfg);
    }
    Configuration CreateConfig()
    {
        return Fluently.Configure()
            .Database(new SQLiteConfiguration().InMemory())
            .Mappings(x => x.FluentMappings.Add<PersonMap>())
            .BuildConfiguration()
            .SetProperty("proxyfactory.factory_class", "NHibernate.ByteCode.Castle.ProxyFactoryFactory, NHibernate.ByteCode.Castle")
            .SetProperty("show_sql", "true");
    }
    void BuildSchema(Configuration config)
    {
        var se = new NHibernate.Tool.hbm2ddl.SchemaExport(config);
        se.Execute(false, true, false, _sessions.OpenSession().Connection, null);
    }
    public class Person
    {
        public virtual Guid Id { get; private set; }
        public virtual string Name { get; set; }
    }
    public class PersonMap : ClassMap<Person>
    {
        public PersonMap()
        {
            Id(x => x.Id);
            Map(x => x.Name);
        }
    }
    public class AuditInterceptor : EmptyInterceptor, IInterceptor
    {
        public override void OnDelete(object entity, object id, object[] state, string[] propertyNames, NHibernate.Type.IType[] types)
        {
            base.OnDelete(entity, id, state, propertyNames, types);
        }
    }
}

でも。私はメッセージを受け取り続けます:

失敗:NHibernate.ADOException:クエリを実行できませんでした[SELECT count(*)as y0_ FROM "Person" this_] [SQL:SELECT count(*)as y0_ FROM "Person" this_]----System.Data.SQLite。 SQLiteException:SQLiteエラー

スキーマのエクスポートが機能しているようです-テーブルが作成されないのはなぜですか?

これはメモリ内のsqlliteの使用と関係があると思いますが、問題が何であるかはわかりません。何か案は?

4

1 に答える 1

3

そこにいた、それをした、あまりにも怪我をした;-)

セッションが解放されると、データベースは基本的に削除されます。スキーマの構築時とテストの実行時に異なるセッションを使用すると、テストの実行時にスキーマが存在しなくなります。

非常に明確な説明については、Justinのこの投稿を参照してください。

于 2011-01-26T11:36:04.553 に答える