-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMongoDbAggregateTests.cs
59 lines (51 loc) · 1.86 KB
/
MongoDbAggregateTests.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
using NUnit.Framework;
using MongoDB.Driver;
using MongoDB.Bson;
using System.Threading.Tasks;
namespace YourNamespace.Tests
{
[TestFixture]
public class MongoDbAggregateTests
{
private IMongoClient _client;
private IMongoDatabase _database;
private IMongoCollection<BsonDocument> _collection;
[OneTimeSetUp]
public void OneTimeSetUp()
{
// Connect to the MongoDB test database
var connectionString = "mongodb://localhost:27017"; // Replace with your test DB connection string
_client = new MongoClient(connectionString);
_database = _client.GetDatabase("TestDatabase");
_collection = _database.GetCollection<BsonDocument>("TestCollection");
}
[SetUp]
public async Task SetUp()
{
// Clean up the collection before each test
await _collection.DeleteManyAsync(new BsonDocument());
// Insert test data
var documents = new[]
{
new BsonDocument { { "Category", "Books" }, { "Price", 10 } },
new BsonDocument { { "Category", "Books" }, { "Price", 15 } },
new BsonDocument { { "Category", "Electronics" }, { "Price", 100 } },
new BsonDocument { { "Category", "Electronics" }, { "Price", 150 } },
};
await _collection.InsertManyAsync(documents);
}
[TearDown]
public async Task TearDown()
{
// Optional: Clean up after each test
await _collection.DeleteManyAsync(new BsonDocument());
}
[OneTimeTearDown]
public void OneTimeTearDown()
{
// Optional: Drop the test database after all tests are done
_client.DropDatabase("TestDatabase");
}
// ... Test methods go here ...
}
}