Beispiel #1
0
        public void Test_StorageProxy_Ignite_RemoveStreamFromPersistentStore_Immutable_NonSpatial_NotExisting()
        {
            var proxy = new StorageProxy_Ignite(StorageMutability.Immutable);

            var projectUid = Guid.NewGuid();
            var streamName = "StreamToDelete";

            proxy.RemoveStreamFromPersistentStore(projectUid, FileSystemStreamType.Designs, streamName).Should().Be(FileSystemErrorStatus.OK);
        }
Beispiel #2
0
        public void Test_StorageProxy_Ignite_RemoveStreamFromPersistentStore_Immutable_NonSpatial_Existing()
        {
            var proxy = new StorageProxy_Ignite(StorageMutability.Immutable);

            var projectUid = Guid.NewGuid();
            var streamName = "StreamToDelete";

            proxy.WriteStreamToPersistentStore(projectUid, streamName, FileSystemStreamType.Designs, new MemoryStream(Consts.TREX_DEFAULT_MEMORY_STREAM_CAPACITY_ON_CREATION), null);
            proxy.RemoveStreamFromPersistentStore(projectUid, FileSystemStreamType.Designs, streamName).Should().Be(FileSystemErrorStatus.OK);
        }