我是依赖注入模式的新手,我在从容器中获取类的新实例时遇到问题。在tinyioc中解析它只是保持返回相同的实例而不是新的实例。现在为代码
public abstract class HObjectBase : Object
{
private string _name = String.Empty;
public string Name
{
get
{
return this._name;
}
set
{
if (this._name == string.Empty && value.Length > 0 && value != String.Empty)
this._name = value;
else if (value.Length < 1 && value == String.Empty)
throw new FieldAccessException("Objects names cannot be blank");
else
throw new FieldAccessException("Once the internal name of an object has been set it cannot be changed");
}
}
private Guid _id = new Guid();
public Guid Id
{
get
{
return this._id;
}
set
{
if (this._id == new Guid())
this._id = value;
else
throw new FieldAccessException("Once the internal id of an object has been set it cannot be changed");
}
}
private HObjectBase _parent = null;
public HObjectBase Parent
{
get
{
return this._parent;
}
set
{
if (this._parent == null)
this._parent = value;
else
throw new FieldAccessException("Once the parent of an object has been set it cannot be changed");
}
}
}
public abstract class HZoneBase : HObjectBase
{
public new HObjectBase Parent
{
get
{
return base.Parent;
}
set
{
if (value == null || value.GetType() == typeof(HZoneBase))
{
base.Parent = value;
}
else
{
throw new FieldAccessException("Zones may only have other zones as parents");
}
}
}
private IHMetaDataStore _store;
public HZoneBase(IHMetaDataStore store)
{
this._store = store;
}
public void Save()
{
this._store.SaveZone(this);
}
}
派生类目前是假人,但现在是
public class HZone : HZoneBase
{
public HZone(IHMetaDataStore store)
: base(store)
{
}
}
现在,因为这是一个外部库,我有一个面向访问的类 一切
public class Hadrian
{
private TinyIoCContainer _container;
public Hadrian(IHMetaDataStore store)
{
this._container = new TinyIoCContainer();
this._container.Register(store);
this._container.AutoRegister();
}
public HZoneBase NewZone()
{
return _container.Resolve<HZoneBase>();
}
public HZoneBase GetZone(Guid id)
{
var metadataStore = this._container.Resolve<IHMetaDataStore>();
return metadataStore.GetZone(id);
}
public List<HZoneBase> ListRootZones()
{
var metadataStore = this._container.Resolve<IHMetaDataStore>();
return metadataStore.ListRootZones();
}
}
但是测试失败了,因为Hadrian类上的GetNewZone()方法不断返回相同的实例。
测试代码
[Fact]
public void ListZones()
{
Hadrian instance = new Hadrian(new MemoryMetaDataStore());
Guid[] guids = { Guid.NewGuid(), Guid.NewGuid(), Guid.NewGuid() };
int cnt = 0;
foreach (Guid guid in guids)
{
HZone zone = (HZone)instance.NewZone();
zone.Id = guids[cnt];
zone.Name = "Testing" + cnt.ToString();
zone.Parent = null;
zone.Save();
cnt++;
}
cnt = 0;
foreach (HZone zone in instance.ListRootZones())
{
Assert.Equal(zone.Id, guids[cnt]);
Assert.Equal(zone.Name, "Testing" + cnt.ToString());
Assert.Equal(zone.Parent, null);
}
}
我知道这可能是一些简单的事情,我对模式缺失了但是我不确定,任何帮助都会受到赞赏。
答案 0 :(得分:5)
首先,请始终将代码简化为证明问题的绝对必要条件,但要提供足够的代码才能实际运行;我不得不猜测MemoryMetaDataStore
做了什么,并自己实现它来运行代码。
另外,请说哪里和 的内容失败,直接指出其他问题。我花了几分钟时间弄清楚我得到的例外是你的问题,而你甚至没有得到断言。
也就是说,container.Resolve<HZoneBase>()
将始终返回相同的实例,因为这就是TinyIoC中的自动注册工作方式 - 一旦解析了抽象,就会为后续调用返回相同的实例。
要更改此设置,请将以下行添加到Hadrian
构造函数:
this._container.Register<HZoneBase, HZone>().AsMultiInstance();
这将告诉容器为HZoneBase
的每个解析请求创建一个新实例。
另外,Bassetassen关于Assert部分的答案是正确的。
一般来说,如果你想学习DI,你应该阅读Mark Seemann的优秀书籍“.NET中的依赖注入” - 不是很容易阅读,因为整个主题本身就很复杂,但它不仅仅值得,而且会让它你比自己学习它要快几年。
答案 1 :(得分:1)
在断言阶段,您没有递增cnt
。您还使用实际值作为断言中的预期值。这将是令人困惑的,因为当它实际上是返回的实际值时会说出某些内容。
断言部分应为:
cnt = 0;
foreach (HZone zone in instance.ListRootZones())
{
Assert.Equal(guids[cnt], zone.Id);
Assert.Equal("Testing" + cnt.ToString(), zone.Name);
Assert.Equal(null, zone.Parent);
cnt++;
}