public void Should_Download_Url_Secured()
        {
            var configuration        = MockConfiguration(true);
            var amazonStorageService = new AmazonS3StorageService(configuration);

            ShouldDownloadUrl(configuration, amazonStorageService);
        }
        public void Should_Copy_Object()
        {
            var configuration        = MockConfiguration();
            var amazonStorageService = new AmazonS3StorageService(configuration);

            ShouldCopyObject(configuration, amazonStorageService);
        }
예제 #3
0
        public void Should_Download_Url_Secured()
        {
            Assert.Ignore("TODO: Fix when possible.");

            var configuration        = MockConfiguration(true);
            var amazonStorageService = new AmazonS3StorageService(configuration);

            ShouldDownloadUrl(configuration, amazonStorageService);
        }
예제 #4
0
        public void Should_Copy_Object()
        {
            Assert.Ignore("TODO: Fix when possible.");

            var configuration        = MockConfiguration();
            var amazonStorageService = new AmazonS3StorageService(configuration);

            ShouldCopyObject(configuration, amazonStorageService);
        }
예제 #5
0
        public void Should_Fail_Timeout()
        {
            Assert.Ignore("TODO: Fix when possible.");

            var configuration        = MockConfiguration(true);
            var amazonStorageService = new AmazonS3StorageService(configuration);

            amazonStorageService.Timeout = 1;

            ShouldUploadObject(configuration, amazonStorageService, false);
        }