Files
duplicati/Duplicati/UnitTest/RandomErrorBackend.cs
T

155 lines
5.2 KiB
C#
Raw Normal View History

2024-02-28 15:45:30 +01:00
// Copyright (C) 2024, The Duplicati Team
// https://duplicati.com, hello@duplicati.com
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
2018-05-27 13:27:24 -07:00
using Duplicati.Library.Interface;
using System;
2018-05-27 13:27:24 -07:00
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
2015-04-10 22:29:52 +02:00
namespace Duplicati.UnitTest
{
public class RandomErrorBackend : IBackend, IStreamingBackend
2018-05-27 13:27:24 -07:00
{
static RandomErrorBackend() { WrappedBackend = "file"; }
private static readonly Random random = new Random(42);
2018-05-27 13:27:24 -07:00
public static string WrappedBackend { get; set; }
private IStreamingBackend m_backend;
2015-04-10 22:29:52 +02:00
public RandomErrorBackend()
{
2018-05-27 13:27:24 -07:00
}
2020-02-17 12:38:58 -08:00
// ReSharper disable once UnusedMember.Global
2018-05-27 13:27:24 -07:00
public RandomErrorBackend(string url, Dictionary<string, string> options)
{
var u = new Library.Utility.Uri(url).SetScheme(WrappedBackend).ToString();
m_backend = (IStreamingBackend)Library.DynamicLoader.BackendLoader.GetBackend(u, options);
}
private void ThrowErrorRandom()
{
if (random.NextDouble() > 0.90)
throw new Exception("Random upload failure");
}
#region IStreamingBackend implementation
2019-03-17 18:20:14 -05:00
public async Task PutAsync(string remotename, Stream stream, CancellationToken cancelToken)
2018-05-27 13:27:24 -07:00
{
var uploadError = random.NextDouble() > 0.9;
2018-10-06 13:30:13 -07:00
using (var f = new Library.Utility.ProgressReportingStream(stream, x => { if (uploadError && stream.Position > stream.Length / 2) throw new Exception("Random upload failure"); }))
2019-03-17 18:20:14 -05:00
await m_backend.PutAsync(remotename, f, cancelToken);
2018-05-27 13:27:24 -07:00
ThrowErrorRandom();
}
public void Get(string remotename, Stream stream)
{
ThrowErrorRandom();
m_backend.Get(remotename, stream);
ThrowErrorRandom();
}
#endregion
#region IBackend implementation
public IEnumerable<IFileEntry> List()
{
return m_backend.List();
}
2019-03-17 18:20:14 -05:00
public async Task PutAsync(string remotename, string filename, CancellationToken cancelToken)
2018-05-27 13:27:24 -07:00
{
ThrowErrorRandom();
2019-03-17 18:20:14 -05:00
await m_backend.PutAsync(remotename, filename, cancelToken);
2018-05-27 13:27:24 -07:00
ThrowErrorRandom();
}
public void Get(string remotename, string filename)
{
ThrowErrorRandom();
m_backend.Get(remotename, filename);
ThrowErrorRandom();
}
public void Delete(string remotename)
{
ThrowErrorRandom();
m_backend.Delete(remotename);
ThrowErrorRandom();
}
public void Test()
{
m_backend.Test();
}
public void CreateFolder()
{
m_backend.CreateFolder();
}
public string[] DNSName
{
get
{
return m_backend.DNSName;
}
2018-05-27 13:27:24 -07:00
}
public string DisplayName
{
get
{
return "Random Error Backend";
}
}
public string ProtocolKey
{
get
{
return "randomerror";
}
}
public IList<ICommandLineArgument> SupportedCommands
{
get
{
if (m_backend == null)
try { return Duplicati.Library.DynamicLoader.BackendLoader.GetSupportedCommands(WrappedBackend + "://"); }
catch { }
return m_backend.SupportedCommands;
}
}
public string Description
{
get
{
return "A testing backend that randomly fails";
}
}
#endregion
#region IDisposable implementation
public void Dispose()
{
if (m_backend != null)
try { m_backend.Dispose(); }
finally { m_backend = null; }
}
#endregion
}
2015-04-10 22:29:52 +02:00
}