CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
PdbContentTests.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.IO;
4using System.Linq;
5using System.Text;
6using System.Threading.Tasks;
7#if MSTEST
8using Microsoft.VisualStudio.TestTools.UnitTesting;
9#endif
10using UnitDriven;
11
13{
14 [TestClass]
16 {
17 private bool BufferContainsData(byte[] buffer, byte[] data)
18 {
19 for (int i = 0; i <= (buffer.Length - data.Length); i++)
20 {
21 if (buffer[i] == data[0])
22 {
23 int j;
24 for (j = 1; j < data.Length && buffer[i + j] == data[j]; j++) ;
25 if (j == data.Length)
26 {
27 return true;
28 }
29 }
30 }
31 return false;
32 }
33
39 [TestMethod]
40 [Ignore]
41 public void SearchPdbForString()
42 {
43 byte[] searchBytes = Encoding.UTF8.GetBytes("https://raw.githubusercontent.com");
44
45 var symbolFiles = Directory.GetFiles("..\\..\\..\\..\\Bin\\Release", "*.pdb", SearchOption.AllDirectories);
46 foreach (var path in symbolFiles)
47 {
48 byte[] fileData = File.ReadAllBytes(path);
49 Assert.IsTrue(BufferContainsData(fileData, searchBytes), $"{path} doesn't contain Source Link information!");
50 }
51 }
52 }
53}