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)
13519정성태1/10/20242184닷넷: 2198. C# - Reflection을 이용한 ClientWebSocket의 Ping 호출파일 다운로드1
13518정성태1/9/20242434닷넷: 2197. C# - ClientWebSocket의 Ping, Pong 처리
13517정성태1/8/20242261스크립트: 63. Python - 공개 패키지를 이용한 위성 이미지 생성 (pystac_client, odc.stac)
13516정성태1/7/20242378닷넷: 2196. IIS - AppPool의 "Disable Overlapped Recycle" 옵션의 부작용
13515정성태1/6/20242681닷넷: 2195. async 메서드 내에서 C# 7의 discard 구문 활용 사례 [1]
13514정성태1/5/20242354개발 환경 구성: 702. IIS - AppPool의 "Disable Overlapped Recycle" 옵션
13513정성태1/5/20242273닷넷: 2194. C# - WebActivatorEx / System.Web의 PreApplicationStartMethod 특성
13512정성태1/4/20242208개발 환경 구성: 701. IIS - w3wp.exe 프로세스의 ASP.NET 런타임을 항상 Warmup 모드로 유지하는 preload Enabled 설정
13511정성태1/4/20242224닷넷: 2193. C# - ASP.NET Web Application + OpenAPI(Swashbuckle) 스펙 제공
13510정성태1/3/20242144닷넷: 2192. C# - 특정 실행 파일이 있는지 확인하는 방법 (Linux)
13509정성태1/3/20242218오류 유형: 887. .NET Core 2 이하의 프로젝트에서 System.Runtime.CompilerServices.Unsafe doesn't support netcoreapp2.0.
13508정성태1/3/20242283오류 유형: 886. ORA-28000: the account is locked
13507정성태1/2/20242946닷넷: 2191. C# - IPGlobalProperties를 이용해 netstat처럼 사용 중인 Socket 목록 구하는 방법파일 다운로드1
13506정성태12/29/20232515닷넷: 2190. C# - 닷넷 코어/5+에서 달라지는 System.Text.Encoding 지원
13505정성태12/27/20233059닷넷: 2189. C# - WebSocket 클라이언트를 닷넷으로 구현하는 예제 (System.Net.WebSockets)파일 다운로드1
13504정성태12/27/20232646닷넷: 2188. C# - ASP.NET Core SignalR로 구현하는 채팅 서비스 예제파일 다운로드1
13503정성태12/27/20232526Linux: 67. WSL 환경 + mlocate(locate) 도구의 /mnt 디렉터리 검색 문제
13502정성태12/26/20232599닷넷: 2187. C# - 다른 프로세스의 환경변수 읽는 예제파일 다운로드1
13501정성태12/25/20232344개발 환경 구성: 700. WSL + uwsgi - IPv6로 바인딩하는 방법
13500정성태12/24/20232459디버깅 기술: 194. Windbg - x64 가상 주소를 물리 주소로 변환
13498정성태12/23/20233134닷넷: 2186. 한국투자증권 KIS Developers OpenAPI의 C# 래퍼 버전 - eFriendOpenAPI NuGet 패키지
13497정성태12/22/20232530오류 유형: 885. Visual Studiio - error : Could not connect to the remote system. Please verify your connection settings, and that your machine is on the network and reachable.
13496정성태12/21/20232574Linux: 66. 리눅스 - 실행 중인 프로세스 내부의 환경변수 설정을 구하는 방법 (gdb)
13495정성태12/20/20232480Linux: 65. clang++로 공유 라이브러리의 -static 옵션 빌드가 가능할까요?
13494정성태12/20/20232647Linux: 64. Linux 응용 프로그램의 (C++) so 의존성 줄이기(ReleaseMinDependency) - 두 번째 이야기
13493정성태12/19/20232859닷넷: 2185. C# - object를 QueryString으로 직렬화하는 방법
1  2  3  4  [5]  6  7  8  9  10  11  12  13  14  15  ...