|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- using System;
- using FluentAssertions;
- using MongoDB.Bson;
- using MongoDB.Driver;
- using Xunit;
-
- namespace DotNetCore.CAP.MongoDB.Test
- {
- public class MongoDBTest
- {
- private MongoClient _client;
-
- public MongoDBTest()
- {
- _client = new MongoClient(ConnectionUtil.ConnectionString);
- }
-
- [Fact]
- public void MongoDB_Connection_Test()
- {
- var names = _client.ListDatabaseNames();
- names.ToList().Should().NotBeNullOrEmpty();
- }
-
- [Fact]
- public void Transaction_Test()
- {
- var document = new BsonDocument
- {
- { "name", "MongoDB" },
- { "type", "Database" },
- { "count", 1 },
- { "info", new BsonDocument
- {
- { "x", 203 },
- { "y", 102 }
- }}
- };
- var db = _client.GetDatabase("test");
- var collection1 = db.GetCollection<BsonDocument>("test1");
- var collection2 = db.GetCollection<BsonDocument>("test2");
- using (var sesstion = _client.StartSession())
- {
- sesstion.StartTransaction();
- collection1.InsertOne(document);
- collection2.InsertOne(document);
- sesstion.CommitTransaction();
- }
- var filter = new BsonDocument("name", "MongoDB");
- collection1.CountDocuments(filter).Should().BeGreaterThan(0);
- collection2.CountDocuments(filter).Should().BeGreaterThan(0);
- }
-
- [Fact]
- public void Transaction_Rollback_Test()
- {
- var document = new BsonDocument
- {
- {"name", "MongoDB"},
- {"date", DateTimeOffset.Now.ToString()}
- };
- var db = _client.GetDatabase("test");
-
- var collection = db.GetCollection<BsonDocument>("test3");
- var collection4 = db.GetCollection<BsonDocument>("test4");
-
- using (var session = _client.StartSession())
- {
- session.IsInTransaction.Should().BeFalse();
- session.StartTransaction();
- session.IsInTransaction.Should().BeTrue();
- collection.InsertOne(session, document);
- collection4.InsertOne(session, new BsonDocument { { "name", "MongoDB" } });
-
- session.AbortTransaction();
- }
- var filter = new BsonDocument("name", "MongoDB");
- collection.CountDocuments(filter).Should().Be(0);
- collection4.CountDocuments(filter).Should().Be(0);
- }
- }
- }
|