public void should_not_throw_a_ConcurrencyException()
        {
            CloudStorageMinio minio1 = new CloudStorageMinio()
            {
                Description = "Test 1",
                Notes       = "Some notes",
                Endpoint    = "localhost:5000",
                AccessKey   = "1234",
                SecretKey   = "super-secret",
                UseSSL      = false
            };

            using (var session = theStore.LightweightSession())
            {
                session.Insert(minio1);
                session.SaveChanges();
            }

            using (var session = theStore.LightweightSession())
            {
                session.Store(minio1, minio1.Version);

                session.SaveChanges();
            }
        }
Beispiel #2
0
        public void should_Throw_ConcurrencyException()
        {
            CloudStorageMinio minio1 = new CloudStorageMinio()
            {
                Description = "Test 1",
                Notes       = "Some notes",
                Endpoint    = "localhost:5000",
                AccessKey   = "1234",
                SecretKey   = "super-secret",
                UseSSL      = false
            };

            using (var session = theStore.LightweightSession())
            {
                session.Insert(minio1);
                session.SaveChanges();
            }

            using (var session = theStore.LightweightSession())
            {
                var discardedResult = session.Query <CloudStorageMinio>().SingleOrDefault(p => p.Id == minio1.Id);

                // Because I have loaded the record above, all exceptions go away - even when I still expect them

                CloudStorageMinio minio2 = new CloudStorageMinio()
                {
                    Id          = minio1.Id,
                    Version     = Guid.NewGuid(),
                    Description = "Something else altogether",
                    Notes       = "Some other notes",
                    Endpoint    = "localhost:9000",
                    AccessKey   = "9985",
                    SecretKey   = "password1234",
                    UseSSL      = true
                };

                session.Store(minio2, minio2.Version);

                // It throws ConcurrencyException because there is only one
                // exception
                Exception <ConcurrencyException> .ShouldBeThrownBy(() =>
                {
                    session.SaveChanges();
                });
            }
        }