mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
28 lines
917 B
C#
28 lines
917 B
C#
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using BililiveRecorder.Flv.Xml;
|
|
|
|
namespace BililiveRecorder.Flv.Tests
|
|
{
|
|
public static class SampleFileLoader
|
|
{
|
|
public static string GetFullPath(string fileName)
|
|
{
|
|
var stackTrace = new StackTrace();
|
|
var frames = stackTrace.GetFrames();
|
|
var attr = frames.Select(x => x!.GetMethod()!.GetCustomAttribute<SampleFileTestDataAttribute>()).First(x => x is not null);
|
|
var fullPath = Path.Combine(attr!.FullPath, fileName);
|
|
return fullPath;
|
|
}
|
|
|
|
public static XmlFlvFile LoadXmlFlv(string fileName)
|
|
{
|
|
var fullPath = GetFullPath(fileName);
|
|
using var s = File.Open(fullPath, FileMode.Open, FileAccess.Read, FileShare.Read);
|
|
return (XmlFlvFile)XmlFlvFile.Serializer.Deserialize(s)!;
|
|
}
|
|
}
|
|
}
|