forked from ravendb/ravendb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFailingProjection.cs
65 lines (56 loc) · 2.03 KB
/
FailingProjection.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
using System.Linq;
using Raven.Client.Document;
using Raven.Client.Indexes;
using Raven.Tests.Common;
using Xunit;
namespace Raven.Tests.MailingList
{
public class FailingProjection : RavenTest
{
public class MyClass
{
public string Prop1 { get; set; }
public string Prop2 { get; set; }
public int Index { get; set; }
}
[Fact]
public void TestFailingProjection()
{
using (var store = NewRemoteDocumentStore())
{
using (var session = store.OpenSession())
{
session.Store(new MyClass { Index = 1, Prop1 = "prop1", Prop2 = "prop2" });
session.Store(new MyClass { Index = 2, Prop1 = "prop1", Prop2 = "prop2" });
session.Store(new MyClass { Index = 3, Prop1 = "prop1", Prop2 = "prop2" });
session.SaveChanges();
}
using (var session = store.OpenSession())
{
store.DatabaseCommands
.PutIndex("MyClass/ByIndex",
new IndexDefinitionBuilder<MyClass>()
{
Map = docs => from doc in docs select new { Index = doc.Index }
}, true);
WaitForIndexing(store);
var query = session.Query<MyClass>("MyClass/ByIndex")
.Select(x => new MyClass
{
Index = x.Index,
Prop1 = x.Prop1
});
var enumerator = session.Advanced.Stream(query);
int count = 0;
while (enumerator.MoveNext())
{
Assert.IsType<MyClass>(enumerator.Current.Document);
Assert.Null(enumerator.Current.Document.Prop2);
count++;
}
Assert.Equal(3, count);
}
}
}
}
}