Exemple #1
0
        public void categorize_changes_inserts_and_deletions()
        {
            var logger = new RecordingLogger();

            theSession.Logger = logger;

            var target1 = new Target();
            var target2 = new Target();
            var target3 = new Target();

            var newDoc1 = new Target {
                Id = Guid.Empty
            };
            var newDoc2 = new Target {
                Id = Guid.Empty
            };

            theSession.Store(target1, target2, target3);
            theSession.Insert(newDoc1, newDoc2);

            var id1 = Guid.NewGuid();
            var id2 = Guid.NewGuid();

            theSession.Delete <Target>(id1);
            theSession.Delete <Target>(id2);

            theSession.PendingChanges.UpdatesFor <Target>()
            .ShouldHaveTheSameElementsAs(target1, target2, target3);

            theSession.PendingChanges.InsertsFor <Target>()
            .ShouldHaveTheSameElementsAs(newDoc1, newDoc2);

            theSession.ShouldHaveDeleteFor(new Target {
                Id = id1
            });
            theSession.ShouldHaveDeleteFor(new Target {
                Id = id2
            });


            SpecificationExtensions.ShouldBeNull(logger.LastCommit);
            theSession.SaveChanges();

            // Everything should be cleared out
            theSession.PendingChanges.Updates().Any().ShouldBeFalse();
            theSession.PendingChanges.Inserts().Any().ShouldBeFalse();
            theSession.PendingChanges.Deletions().Any().ShouldBeFalse();

            logger.LastCommit.Updated.ShouldHaveTheSameElementsAs(target1, target2, target3);
            logger.LastCommit.Inserted.ShouldHaveTheSameElementsAs(newDoc1, newDoc2);

            logger.LastCommit.Deleted.OfType <Deletion>().Select(x => (Guid)x.Id).ShouldHaveTheSameElementsAs(id1, id2);

            theSession.Store(new Target());
            theSession.SaveChanges();

            logger.Commits.Count().ShouldBe(2);
            logger.LastCommit.Updated.Count().ShouldBe(1);
        }
Exemple #2
0
        public async Task records_on_SaveChangesAsync()
        {
            var logger = new RecordingLogger();

            theSession.Logger = logger;

            theSession.Store(Target.Random());

            await theSession.SaveChangesAsync().ConfigureAwait(false);

            logger.LastSession.ShouldBe(theSession);
        }
Exemple #3
0
        public void records_on_SaveChanges()
        {
            var logger = new RecordingLogger();

            theSession.Logger = logger;

            theSession.Store(Target.Random());

            theSession.SaveChanges();

            logger.LastSession.ShouldBe(theSession);
        }