blob: 0dbf9a83ee27b879e700e9dfffc609d98a1e9351 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Tango.CSV;
using Tango.DispenserAnalyzer.UI.Models;
using System.Windows.Controls;
using System.Windows.Media;
using System.IO;
namespace Tango.DispenserAnalyzer.UI.Analysis
{
public class AnalysisService
{
public static dynamic GetAnalyzer(String fileName)
{
string filename = Path.GetFileNameWithoutExtension(fileName);
var analyzerTypes = typeof(AnalysisService).Assembly.GetTypes().Where(x => typeof(IBaseAnalyzer).IsAssignableFrom(x)).ToList();
var analyzerType = analyzerTypes.FirstOrDefault(x => filename.StartsWith(x.GetCustomAttribute<AnalyzerAttribute>().Name, StringComparison.OrdinalIgnoreCase) );
if(analyzerType == null)
{//in case name of test is not first word
analyzerType = analyzerTypes.FirstOrDefault(x => filename.IndexOf(x.GetCustomAttribute<AnalyzerAttribute>().Name, StringComparison.OrdinalIgnoreCase) >= 0);
}
return (analyzerType != null) ? Activator.CreateInstance(analyzerType) : null;
}
public static string GetTestName(String fileName)
{
var analyzerTypes = typeof(AnalysisService).Assembly.GetTypes().Where(x => typeof(IBaseAnalyzer).IsAssignableFrom(x)).ToList();
var analyzerType = analyzerTypes.FirstOrDefault(x => fileName.IndexOf(x.GetCustomAttribute<AnalyzerAttribute>().Name, StringComparison.OrdinalIgnoreCase) >= 0);
return analyzerType.GetCustomAttribute<AnalyzerAttribute>().Name;
}
}
}
|