Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 2개 있습니다.)
Visual Studio 2010 - Code Coverage 결과를 외부 XML 파일로 출력하는 명령행 도구 제작

Visual Studio 2010에서 Code Coverage를 수행하면 다음과 같이 내부 "Code Coverage Results" 윈도우에서 그 결과를 확인해 볼 수 있는데요.

how_to_export_code_coverage_result_1.png

위와 같은 결과물은 로컬 상에 "[파일명].coverage"라는 이름으로 저장되어 있긴 한데, 애석하게도 바이너리 형식이라서 임의로 활용하는 것이 쉽지 않습니다. 물론, 위의 화면 자체에서 제공되는 "Export Results" 버튼을 이용해서 곧바로 XML 파일로 변환해서 보관하는 것이 가능하지만, 자동화된 빌드 시스템에서 코드 커버리지 결과도 함께 연동하고 싶을 때는 이렇게 UI를 통해서 하는 것은 전혀 도움이 되지 않습니다.

즉, "명령행"에서 빌드 및 테스트 수행 결과로 생성된 .coverage 파일을 "Export Results"와 동일한 형식의 XML로 변환하는 것이 해결 과제입니다.




다행히, Visual Studio는 ".coverage" 파일을 코드로 다룰 수 있도록 허용해 주고 있는데요. 이에 관해서는 다음의 글에서 설명해 주고 있습니다.

Is it possible to programmatically access code coverage data? 
; http://www.go4answers.com/Example/possible-programmatically-access-code-4285.aspx

위의 글에서는 "Visual Studio 2008"로 되어 있지만, 여기서는 "Visual Studio 2010"을 기준으로 설명합니다.

1. 새 프로젝트를 생성하고, "Microsoft.VisualStudio.Coverage.Analysis.dll"을 참조.


Microsoft.VisualStudio.Coverage.Analysis.dll 파일은 기본적으로 참조 대화상자에 나오지 않기 때문에, "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies" 경로로 직접 찾아들어가야 합니다.

2. "Microsoft.VisualStudio.Coverage.Symbols.dll" 파일 추가

Microsoft.VisualStudio.Coverage.Analysis.dll 파일과 동일한 폴더("C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies")에 있는 "Microsoft.VisualStudio.Coverage.Symbols.dll" 파일을 추가합니다. "참조"가 아니라 그냥 파일 추가를 하고 속성 창에서 다음과 같이 설정을 해줍니다.

how_to_export_code_coverage_result_2.png

Build Action: None
Copy to Output Directory: Copy if newer


3. 코드 추가


Visual Studio 2010에서는 "Is it possible to programmatically access code coverage data?" 글에서 설명하고 있는 개체 모델이 다소 변경이 되었습니다. 따라서 다음과 같은 식으로 코딩을 해주어야 합니다.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

using Microsoft.VisualStudio.Coverage.Analysis;
using System.IO;

namespace CodeCoverageExporter
{
    class Program
    {
        static void Main(string[] args)
        {
            if (args.Length != 4)
            {
                Console.WriteLine("[example]");
                Console.WriteLine("\tCodeCoverageExporter.exe [exepath] [sympath] [coveragefilepath] [outputfilepath]");
                return;
            }

            string binaryPath = args[0];
            string symPath = args[1];
            string coverageFilePath = args[2];
            string outputPath = args[3];

            List symPaths = new List();
            List binaryPaths = new List();
            symPaths.Add(symPath);
            binaryPaths.Add(binaryPath);

            CoverageInfo coverageInfo = CoverageInfo.CreateFromFile(
                coverageFilePath, binaryPaths, symPaths);

            string exportFilePath = Path.Combine(Environment.CurrentDirectory, outputPath);

            CoverageDS data = coverageInfo.BuildDataSet();
            data.WriteXml(exportFilePath);
            // 또는 결과 XML 파일을 VS IDE에서 읽어들여야 한다면 아래와 같이 실행.
            // data.WriteXml(exportFilePath, System.Data.XmlWriteMode.WriteSchema);
        }
    }
}

[exepath]와 [sympath]는 보통 단위 테스트 했을 때 나오는 "TestResults"의 "Out" 폴더인데요. 예를 들면 다음과 같이 "*.instr.pdb" 파일들이 놓인 경로를 가리켜야 합니다.

how_to_export_code_coverage_result_3.png

[coveragefilepath]는 코드 커버리지 결과를 담고 있는 "[파일명].coverage"의 경로입니다. 이 파일은 단위 테스트 했을 때 보통 "TestResults"의 "In" 폴더에 "data.coverage"라는 이름으로 놓이게 됩니다.

how_to_export_code_coverage_result_4.png

마지막으로 [outputfilepath]는 새로 출력될 XML 파일의 경로를 적어주면 됩니다.

이제 빌드하고, 적절한 테스트 환경을 구성해서 실행해 보면 "Visual Studio 2010"의 "Code Coverage Results" 화면에서 "Export Results" 했을 때와 동일한 형식의 xml 파일이 생성되는 것을 확인할 수 있습니다.

첨부된 압축 파일은 위의 소스 코드를 포함한 프로젝트입니다.




참고로, "Is it possible to programmatically access code coverage data?" 글에서도 나오고 있지만, 만약 다음과 같은 오류가 발생한다면,

Unhandled Exception: Microsoft.VisualStudio.Coverage.Analysis.CoverageAnalysisException: Unable to load DLL 'Microsoft.VisualStudio.Coverage.Symbols.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) ---> System.DllNotFoundException: Unable to load DLL 'Microsoft.VisualStudio.Coverage.Symbols.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
at Microsoft.VisualStudio.Coverage.Analysis.Vsp.SymbolInterop.CreateSession()
at Microsoft.VisualStudio.Coverage.Analysis.Vsp.VspSymbolReader..ctor(StringsymbolSearchPath, String expectedPath, String actualPath, UInt32 imageSize, MissingFileCallback callback)
at Microsoft.VisualStudio.Coverage.Analysis.Vsp.VspSymbolReaderFactory.CreateReader()
at Microsoft.VisualStudio.Coverage.Analysis.CoverageInfo.BuildDataSet(Boolean summaryOnly, IEnumerable`1 tests, IEnumerable`1 modules)
--- End of inner exception stack trace ---
at Microsoft.VisualStudio.Coverage.Analysis.CoverageInfo.BuildDataSet(Boolean summaryOnly, IEnumerable`1 tests, IEnumerable`1 modules)
at Microsoft.VisualStudio.Coverage.Analysis.CoverageInfo.BuildDataSet()
at CodeCoverageExporter.Program.Main(String[] args) in D:\...\Program.cs:line 37


원인은, "Microsoft.VisualStudio.Coverage.Symbols.dll" 파일을 실행 파일과 동일한 폴더에 놓지 않아서 발생하는 것입니다.



[이 토픽에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 6/28/2023]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2010-09-08 10시44분
Developer Tool Manager (1.0.1.12) 버전에 추가했습니다. ^^ (Visual Studio 탭 - CodeCoverageExporter)
; http://www.sysnet.pe.kr/Default.aspx?mode=2&sub=0&detail=1&wid=-

kevin25

1  2  3  4  5  [6]  7  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13493정성태12/19/20232851닷넷: 2185. C# - object를 QueryString으로 직렬화하는 방법
13492정성태12/19/20232487개발 환경 구성: 699. WSL에 nopCommerce 예제 구성
13491정성태12/19/20232312Linux: 63. 리눅스 - 다중 그룹 또는 사용자를 리소스에 권한 부여
13490정성태12/19/20232446개발 환경 구성: 698. Golang - GLIBC 의존을 없애는 정적 빌드 방법
13489정성태12/19/20232218개발 환경 구성: 697. GoLand에서 ldflags 지정 방법
13488정성태12/18/20232201오류 유형: 884. HTTP 500.0 - 명령행에서 실행한 ASP.NET Core 응용 프로그램을 실행하는 방법
13487정성태12/16/20232488개발 환경 구성: 696. C# - 리눅스용 AOT 빌드를 docker에서 수행 [1]
13486정성태12/15/20232300개발 환경 구성: 695. Nuget config 파일에 값 설정/삭제 방법
13485정성태12/15/20232172오류 유형: 883. dotnet build/restore - error : Root element is missing
13484정성태12/14/20232286개발 환경 구성: 694. Windows 디렉터리 경로를 WSL의 /mnt 포맷으로 구하는 방법
13483정성태12/14/20232407닷넷: 2184. C# - 하나의 resource 파일을 여러 프로그램에서 (AOT 시에도) 사용하는 방법파일 다운로드1
13482정성태12/13/20233109닷넷: 2183. C# - eFriend Expert OCX 예제를 .NET Core/5+ Console App에서 사용하는 방법 [2]파일 다운로드1
13481정성태12/13/20232416개발 환경 구성: 693. msbuild - .NET Core/5+ 프로젝트에서 resgen을 이용한 리소스 파일 생성 방법파일 다운로드1
13480정성태12/12/20232822개발 환경 구성: 692. Windows WSL 2 + Chrome 웹 브라우저 설치
13479정성태12/11/20232464개발 환경 구성: 691. WSL 2 (Ubuntu) + nginx 환경 설정
13477정성태12/8/20232721닷넷: 2182. C# - .NET 7부터 추가된 Int128, UInt128 [1]파일 다운로드1
13476정성태12/8/20232469닷넷: 2181. C# - .NET 8 JsonStringEnumConverter의 AOT를 위한 개선파일 다운로드1
13475정성태12/7/20232528닷넷: 2180. .NET 8 - 함수 포인터에 대한 Reflection 정보 조회파일 다운로드1
13474정성태12/6/20232339개발 환경 구성: 690. 닷넷 코어/5+ 버전의 ilasm/ildasm 실행 파일 구하는 방법 - 두 번째 이야기
13473정성태12/5/20232624닷넷: 2179. C# - 값 형식(Blittable)을 메모리 복사를 이용해 바이트 배열로 직렬화/역직렬화파일 다운로드1
13472정성태12/4/20232285C/C++: 164. Visual C++ - InterlockedCompareExchange128 사용 방법
13471정성태12/4/20232418Copilot - To enable GitHub Copilot, authorize this extension using GitHub's device flow
13470정성태12/2/20232752닷넷: 2178. C# - .NET 8부터 COM Interop에 대한 자동 소스 코드 생성 도입파일 다운로드1
13469정성태12/1/20232570닷넷: 2177. C# - (Interop DLL 없이) CoClass를 이용한 COM 개체 생성 방법파일 다운로드1
13468정성태12/1/20232409닷넷: 2176. C# - .NET Core/5+부터 달라진 RCW(Runtime Callable Wrapper) 대응 방식파일 다운로드1
13467정성태11/30/20232547오류 유형: 882. C# - Unhandled exception. System.Runtime.InteropServices.COMException (0x800080A5)파일 다운로드1
1  2  3  4  5  [6]  7  8  9  10  11  12  13  14  15  ...