forked from ravendb/ravendb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIndexMetadata.cs
41 lines (37 loc) · 1.18 KB
/
IndexMetadata.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
using System.Linq;
using Raven.Client.Document;
using Raven.Client.Indexes;
using Raven.Tests.Common;
using Xunit;
namespace Raven.Tests.MailingList
{
public class IndexMetadata : RavenTest
{
public class Users_DeleteStatus : AbstractMultiMapIndexCreationTask
{
public Users_DeleteStatus()
{
AddMap<User>(users => from user in users
select new
{
Deleted = MetadataFor(user)["Deleted"]
});
}
}
[Fact]
public void WillGenerateProperIndex()
{
var usersDeleteStatus = new Users_DeleteStatus {Conventions = new DocumentConvention()};
var indexDefinition = usersDeleteStatus.CreateIndexDefinition();
Assert.Contains("Deleted = user[\"@metadata\"][\"Deleted\"]", indexDefinition.Map);
}
[Fact]
public void CanCreateIndex()
{
using(var store = NewDocumentStore())
{
new Users_DeleteStatus().Execute(store);
}
}
}
}