Sto creando un repository che espone IQueryable. Qual è il modo migliore per deriderlo per i miei test unitari?Come faccio a fingere IQueryable <T>
Dal momento che sto usando RhinoMocks per il resto dei miei oggetti mock, ho cercato di fare quanto segue:
IQueryable<MyObject> QueryObject =
MockRepository.GenerateStub<IQueryable<MyObject>>();
Questo non funziona anche se così ho provato a fare questo:
IQueryable<MyObject> QueryObject =
(new List<MyObject> { new MyObject() }).AsQueryable();
C'è un modo migliore per farlo o avere altri framework di simulazione che supportano IQueryable in?
mia interfaccia repository si presenta così:
public interface IRepository<T> where T : TableServiceEntity
{
IQueryable<T> Table { get; }
void Attach(T existingItem);
void Delete(T itemToDelete);
void Insert(T newItem);
T Load(string partitionKey, string rowKey);
IEnumerable<T> Load(string partitionKey);
IEnumerable<T> Query(IQueryable<T> query);
IEnumerable<T> Last(int count);
T Last();
void Update(T item);
}
Ecco il metodo che voglio prova:
public Post LoadPost(int year, int month, int day, string slug)
{
var query = from p in _blogRepository.Table
where
p.PartitionKey == Key.Partition(year, month, day)
&& p.Slug == slug
select p;
var posts = _blogRepository.Query(query.Take(1));
return posts.First();
}
allora ecco la prova come ce l'ho in questo momento che metterà alla prova LoadPost .
[Fact]
public void LoadWillRetrieveByPartitionKeyAndRowKeyWhenUsingUriFormat()
{
Repository
.Stub(x => x.Query(Arg<IQueryable<Post>>.Is.Anything))
.Return(new List<Post> {_post});
var result = Service.LoadPost(
_post.Year(),
_post.Month(),
_post.Day(),
_post.Slug);
Assert.NotNull(result);
}
Il codice è tratto dal mio progetto AzureBlog.
Potresti incollare il test? – Grzenio