Files
quantconnect--lean/Tests/Engine/DataFeeds/Transport/RemoteFileSubscriptionStreamReaderTests.cs
Martin Molinero c226914322 Value types thread safety changes
- Refactor ZipDataCacheProvider to avoid value types thread issues, it
  will now use a timer. Add missing dispose calls.
- Synchronizer won't share the `SubscriptionFrontierTimeProvider`
  instance since it's not thread safe and shouldn't be called
- Fix BacktestingResultHandler `_daysProcessed` thread safety
- Fixing `RealTimeScheduleEventService` thread safety
2020-05-01 16:58:29 -03:00

116 lines
4.6 KiB
C#

/*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
using System.Collections.Generic;
using System.IO;
using NUnit.Framework;
using QuantConnect.Lean.Engine.DataFeeds;
using QuantConnect.Lean.Engine.DataFeeds.Transport;
using QuantConnect.Util;
namespace QuantConnect.Tests.Engine.DataFeeds.Transport
{
[TestFixture]
public class RemoteFileSubscriptionStreamReaderTests
{
[SetUp]
public void SetUp()
{
RemoteFileSubscriptionStreamReader.SetDownloadProvider(new TestDownloadProvider());
TestDownloadProvider.DownloadCount = 0;
// create cache directory if not existing
if (!Directory.Exists(Globals.Cache))
{
Directory.CreateDirectory(Globals.Cache);
}
else
{
// clean old files out of the cache
Directory.Delete(Globals.Cache, true);
Directory.CreateDirectory(Globals.Cache);
}
}
[TestCase(true)]
[TestCase(false)]
public void SingleEntryDataCacheProviderEphemeralDataIsRespected(bool isDataEphemeral)
{
var remoteReader = new RemoteFileSubscriptionStreamReader(
new SingleEntryDataCacheProvider(new DefaultDataProvider(), isDataEphemeral: isDataEphemeral),
@"https://www.quantconnect.com/api/v2/proxy/quandl/api/v3/datasets/BCHARTS/BITSTAMPUSD.csv?order=asc&api_key=WyAazVXnq7ATy_fefTqm",
Globals.Cache,
null);
Assert.IsFalse(remoteReader.EndOfStream);
Assert.AreEqual(1, TestDownloadProvider.DownloadCount);
var remoteReader2 = new RemoteFileSubscriptionStreamReader(
new SingleEntryDataCacheProvider(new DefaultDataProvider(), isDataEphemeral: isDataEphemeral),
@"https://www.quantconnect.com/api/v2/proxy/quandl/api/v3/datasets/BCHARTS/BITSTAMPUSD.csv?order=asc&api_key=WyAazVXnq7ATy_fefTqm",
Globals.Cache,
null);
Assert.IsFalse(remoteReader.EndOfStream);
Assert.AreEqual(isDataEphemeral ? 2 : 1, TestDownloadProvider.DownloadCount);
remoteReader.Dispose();
remoteReader2.Dispose();
}
[TestCase(true)]
[TestCase(false)]
public void ZipDataCacheProviderEphemeralDataIsRespected(bool isDataEphemeral)
{
var cacheProvider = new ZipDataCacheProvider(new DefaultDataProvider(), isDataEphemeral: isDataEphemeral);
var remoteReader = new RemoteFileSubscriptionStreamReader(
cacheProvider,
@"https://www.quantconnect.com/api/v2/proxy/quandl/api/v3/datasets/BCHARTS/BITSTAMPUSD.csv?order=asc&api_key=WyAazVXnq7ATy_fefTqm",
Globals.Cache,
null);
Assert.IsFalse(remoteReader.EndOfStream);
Assert.AreEqual(1, TestDownloadProvider.DownloadCount);
var remoteReader2 = new RemoteFileSubscriptionStreamReader(
cacheProvider,
@"https://www.quantconnect.com/api/v2/proxy/quandl/api/v3/datasets/BCHARTS/BITSTAMPUSD.csv?order=asc&api_key=WyAazVXnq7ATy_fefTqm",
Globals.Cache,
null);
Assert.IsFalse(remoteReader.EndOfStream);
Assert.AreEqual(isDataEphemeral ? 2 : 1, TestDownloadProvider.DownloadCount);
remoteReader.Dispose();
remoteReader2.Dispose();
cacheProvider.DisposeSafely();
}
private class TestDownloadProvider : Api.Api
{
public static int DownloadCount { get; set; }
static TestDownloadProvider()
{
DownloadCount = 0;
}
public override string Download(string address, IEnumerable<KeyValuePair<string, string>> headers, string userName, string password)
{
DownloadCount++;
return base.Download(address, headers, userName, password);
}
}
}
}