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

            ShouldNotDownloadUrlSecured(configuration, amazonStorageService);
        }
        public void Should_Upload_Object()
        {
            var configuration = MockConfiguration();
            var amazonStorageService = new AmazonS3StorageService(configuration);

            ShouldUploadObject(configuration, amazonStorageService);
        }
        public void Should_Download_Url_Unsecured()
        {
            var configuration = MockConfiguration();
            var amazonStorageService = new AmazonS3StorageService(configuration);

            ShouldDownloadUrlUnsecured(configuration, amazonStorageService);
        }
        public void Should_Fail_Timeout()
        {
            var configuration = MockConfiguration(true);
            var amazonStorageService = new AmazonS3StorageService(configuration);
            amazonStorageService.Timeout = 1;

            ShouldUploadObject(configuration, amazonStorageService, false);
        }
        public void Should_Download_Url_Secured()
        {
            Assert.Ignore("TODO: Fix when possible.");

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

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

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

            ShouldCopyObject(configuration, amazonStorageService);
        }
        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);
        }