mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 03:12:04 +01:00
- FIX: Deleting satellite channels from an SCM file did not work correctly - Improved SCM file format detection - Samsung E/F-Series: channels in the favorite lists now use their prog# instead of all being put at #1 - fixed LG unit tests - fixed Samsung tests
134 lines
6.1 KiB
C#
134 lines
6.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using ChanSort.Loader.Samsung;
|
|
|
|
namespace Test.Loader
|
|
{
|
|
[TestClass]
|
|
public class SamsungTest : LoaderTestBase
|
|
{
|
|
#region InitExpectedSamsungData()
|
|
private Dictionary<string, ExpectedData> InitExpectedSamsungData()
|
|
{
|
|
var expected = new[]
|
|
{
|
|
new ExpectedData(@"catmater_B\Clone.scm", 31, 272, 0, 0, 0) ,
|
|
new ExpectedData(@"easy2003_B\easy2003_B.scm", 0, 0, 1225, 0, 0) ,
|
|
//new ExpectedData(@"_Manu_C\channel_list_LE40C650_1001.scm", 0, 9, 0, 0, 0)
|
|
};
|
|
|
|
var dict = new Dictionary<string, ExpectedData>(StringComparer.InvariantCultureIgnoreCase);
|
|
foreach (var entry in expected)
|
|
dict[entry.File] = entry;
|
|
return dict;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region TestSamsungScmLoader()
|
|
[TestMethod]
|
|
[DeploymentItem("ChanSort.Loader.Samsung\\ChanSort.Loader.Samsung.ini")]
|
|
public void TestSamsungScmLoader()
|
|
{
|
|
var expectedData = this.InitExpectedSamsungData();
|
|
ScmSerializerPlugin plugin = new ScmSerializerPlugin();
|
|
|
|
StringBuilder errors = new StringBuilder();
|
|
var list = this.FindAllFiles("TestFiles_Samsung", "*.scm");
|
|
var models = new Dictionary<string, string>();
|
|
foreach (var file in list)
|
|
{
|
|
Debug.Print("Testing " + file);
|
|
try
|
|
{
|
|
var serializer = plugin.CreateSerializer(file) as ScmSerializer;
|
|
Assert.IsNotNull(serializer, "No Serializer for " + file);
|
|
|
|
serializer.Load();
|
|
|
|
var fileName = Path.GetFileName(file) ?? "";
|
|
var model = this.GetSamsungModel(file);
|
|
var analogAirList = serializer.DataRoot.GetChannelList(ChanSort.Api.SignalSource.AnalogT | ChanSort.Api.SignalSource.Tv);
|
|
var analogCableList = serializer.DataRoot.GetChannelList(ChanSort.Api.SignalSource.AnalogC | ChanSort.Api.SignalSource.Tv);
|
|
var digitalAirList = serializer.DataRoot.GetChannelList(ChanSort.Api.SignalSource.DvbT | ChanSort.Api.SignalSource.Tv);
|
|
var digitalCableList = serializer.DataRoot.GetChannelList(ChanSort.Api.SignalSource.DvbC | ChanSort.Api.SignalSource.Tv);
|
|
var satChannelList = serializer.DataRoot.GetChannelList(ChanSort.Api.SignalSource.DvbS | ChanSort.Api.SignalSource.Tv);
|
|
var hdChannelList = serializer.DataRoot.GetChannelList(ChanSort.Api.SignalSource.DvbS|ChanSort.Api.SignalSource.AstraHdPlus | ChanSort.Api.SignalSource.Tv);
|
|
string key = serializer.Series +
|
|
"\t" + model +
|
|
"\t" + serializer.AnalogChannelLength +
|
|
"\t" + (analogAirList != null && analogAirList.Count > 0) +
|
|
"\t" + (analogCableList != null && analogCableList.Count > 0) +
|
|
"\t" + serializer.DigitalChannelLength +
|
|
"\t" + (digitalAirList != null && digitalAirList.Count > 0) +
|
|
"\t" + (digitalCableList != null && digitalCableList.Count > 0) +
|
|
"\t" + serializer.SatChannelLength +
|
|
"\t" + (satChannelList != null && satChannelList.Count > 0) +
|
|
"\t" + serializer.HdPlusChannelLength +
|
|
"\t" + (hdChannelList != null && hdChannelList.Count > 0) +
|
|
"\t" + serializer.SatDatabaseVersion;
|
|
string relPath = Path.GetFileName(Path.GetDirectoryName(file)) + "\\" + fileName;
|
|
models[key] = serializer.Series +
|
|
"\t" + model +
|
|
"\t" + serializer.AnalogChannelLength +
|
|
"\t" + serializer.DigitalChannelLength +
|
|
"\t" + serializer.SatChannelLength +
|
|
"\t" + serializer.HdPlusChannelLength +
|
|
"\t" + serializer.SatDatabaseVersion +
|
|
"\t" + (analogAirList == null ? 0 : analogAirList.Count) +
|
|
"\t" + (analogCableList == null ? 0 : analogCableList.Count) +
|
|
"\t" + (digitalAirList == null ? 0 : digitalAirList.Count) +
|
|
"\t" + (digitalCableList == null ? 0 : digitalCableList.Count) +
|
|
"\t" + (satChannelList == null ? 0 : satChannelList.Count) +
|
|
"\t" + (hdChannelList == null ? 0 : hdChannelList.Count) +
|
|
"\t" + relPath;
|
|
|
|
Assert.IsFalse(serializer.DataRoot.IsEmpty, "No channels loaded from " + file);
|
|
|
|
ExpectedData exp;
|
|
key = Path.GetFileName(Path.GetDirectoryName(file)) + "\\" + Path.GetFileName(file);
|
|
if (expectedData.TryGetValue(key, out exp))
|
|
{
|
|
var analogTv = serializer.DataRoot.GetChannelList(ChanSort.Api.SignalSource.AnalogC | ChanSort.Api.SignalSource.TvAndRadio);
|
|
var dtvTv = serializer.DataRoot.GetChannelList(ChanSort.Api.SignalSource.DvbC | ChanSort.Api.SignalSource.TvAndRadio);
|
|
var satTv = serializer.DataRoot.GetChannelList(ChanSort.Api.SignalSource.DvbS | ChanSort.Api.SignalSource.TvAndRadio);
|
|
expectedData.Remove(key);
|
|
if (exp.AnalogChannels != 0 || analogTv != null)
|
|
Assert.AreEqual(exp.AnalogChannels, analogTv.Channels.Count, file + ": analog");
|
|
if (exp.DtvChannels != 0 || dtvTv != null)
|
|
Assert.AreEqual(exp.DtvChannels, dtvTv.Channels.Count, file + ": DTV");
|
|
if (exp.SatChannels != 0 || satTv != null)
|
|
Assert.AreEqual(exp.SatChannels, satTv.Channels.Count, file + ": Sat");
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
errors.AppendLine();
|
|
errors.AppendLine();
|
|
errors.AppendLine(file);
|
|
errors.AppendLine(ex.ToString());
|
|
}
|
|
}
|
|
|
|
foreach (var model in models.OrderBy(e => e.Key))
|
|
Debug.WriteLine(model.Value);
|
|
|
|
if (expectedData.Count > 0)
|
|
Assert.Fail("Some files were not tested: " + expectedData.Keys.Aggregate((prev, cur) => prev + "," + cur));
|
|
Assert.AreEqual("", errors.ToString());
|
|
}
|
|
|
|
private string GetSamsungModel(string filePath)
|
|
{
|
|
string fileName = Path.GetFileNameWithoutExtension(filePath) ?? "";
|
|
return fileName.StartsWith("channel_list_") ? fileName.Substring(13, fileName.IndexOf('_', 14) - 13) : fileName;
|
|
}
|
|
#endregion
|
|
}
|
|
}
|